|
Okay iwas going through the elitepvpers forums and i found alot of source guides imgoing to post the good ones here. translated the best i could. I take no creditat all on these how to change max level + l4 T5 D5 d$ c) L0 H S8 p
change level without Rebirth( x7 \6 r. r& _! O
$ V3 j3 b; }/ L* z' INow, let us begin.
! R2 t& ~8 a6 J# m
& S( O# T! |# v6 b3 s2 vRequirements:( x; Z* Q% X* S, V- D1 }$ x" y' i
Source
$ _/ b: v" h% P& |( q C( |Notepad / Editor3 D0 i8 e2 o# _" S, W
- E' R" O& N" v. t/ / Tips by Sedrika' o4 R9 H; x$ i' @2 B" [0 P8 {
! z7 a6 g3 `4 y u) E! e- |
It is up to you how you do it ^ ^: u: X. G a. Y( u. Z3 ^9 w
# l! ^/ n5 Y( K. x
Go into your source folder and open the definejob.h
9 r) Z$ r0 M% |$ |0 Q1 } oSearch there for:! P0 c) R9 a4 o1 y- j
* ]& Y* f+ s* Q" p! h9 v" _: J. i. R6 o#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå$ r9 A S) K+ r7 E1 Z' F2 D2 m
#define MAX_LEGEND_LEVEL 1296 {* G, L" y1 {+ e7 F. }
#define MAX_MONSTER_LEVEL 160
) d8 v) w5 g, `#else // 15Â÷ è÷¾î·Î ·1o§è®àå9 J' H, P# }& c
#define MAX_LEGEND_LEVEL 121
, f9 c0 J$ H6 A: w! `. ? A! f#endif // 15Â÷ è÷¾î·Î ·1o§è®àå
# n9 Z+ [1 c; H! c
8 o( t1 U! C& a# ~6 {9 u3 A+ ?' k0 a; r
Red: Player Max. Level8 s: M' _4 ? r6 g: ?" w$ \
Green: Monster Max. Level
! i5 u7 v% d, }% b# p% o ]
4 V* H* ~9 n4 @+ _8 D: KThese changes as simple as you want." Q b% B# _2 p7 z8 i- ~6 E
0 o1 }% {1 W1 d7 ^1 g8 {Then you have to just recompile the World Server Files + and make your clientin the Definejob.h the same changes as in the source.
8 l8 J' x ?- a) _4 j- @ q+ s8 W9 O2 _3 N1 ?
Part 1 of blocking CE
& @6 z" r7 U( y+ n3 Q5 ~" ]
}- N3 C6 P# f% k; \/ Q7 |# ]In this tutorial I will show you how to change the Head of Mark flyff.
5 ~+ a6 p: Y$ VThe current Head Mark is well known, 5E, which results as a string ('^').
' y b; d) Y) I7 Z5 }# ~2 I8 h! V& |- r5 ^9 [7 v7 i
For this we go to the World (Project) and looking at the Buffer.h after thistext
+ a3 {0 y7 m# {, G& Q- Z3 kQuote:
4 l( S# D' o9 x+ ~# Define HEADER MARK '^' / / Normal messageheader' |, V( y) E' S. i8 Z' r7 [% z: u
# Define SYSHEADERMARK '%' / / System message header' h+ d7 l& V5 F* c: b
What the Sysheadmark is looking for is not even the top 5E.
' ]$ K$ l5 N& x$ uChange this and it makes the CE Not work on server./ p- j8 M9 R6 R* y: u6 S( t
+ \/ G \" L/ Q2 c+ V; [& z) ~
Then Tom's anti-hack is no longer useful.
7 n3 | S9 o) Z/ R$ m% x
- t5 M: `/ F+ @LG Sedrika
Part 2 of blocking CE
/ }3 _) r% G! p+ \
2 \* n. V3 _1 w; ?) IIn this small text-based tutorial, I want you for a quick time to explain howto rewrite the source so that the IP address does not reading from theNeuz.ini. 8 ?5 s4 Y2 T3 K' N4 U3 G
What does this have an advantage?) B! ^# X2 j4 T+ b6 E
The editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself 7 V9 r# o. |3 f8 a+ Z; o& T+ h' u
; e1 k4 F. l/ j h% @5 Z7 O: `2 S" k. d( N* ?) f$ ~" } P1 {3 s$ |5 t
First you need to get open source even know how you do it, is left with you, andyou do the project on the Neuz.6 B9 R/ Y' g+ K/ {7 G# U
5 W" T8 X2 w" W" j' R# X: P1 u1 Z pThen search for the following content in HwOption.cpp 5 Z2 W9 a4 e p, p. m; P2 W7 e
4 U/ Y3 A! Z# D8 _
* ~) p8 B* W$ c9 a/ l
if (scan.Token == _T ("ip"))7 F/ s/ u4 o2 h% M2 e, p) o: O5 j
{: Y4 q$ o. G. C( i' ~
scan.GetTokenEx ();. O+ |' d; {! h) \
strcpy (m_IPAddress scan.Token);2 C: e( L. x9 |( F; p
}, A( Z( |7 R3 J5 @7 C
and turn it into this:1 R; l( C: `7 f) E
Quote:
3 z/ z b% {" T" Nif (scan.Token == _T ("ip"))
1 `2 |! ?! p) }7 M{7 s# c9 u1 N' ]
/ / Scan.GetTokenEx ();/ `, C5 ^1 A v9 t3 U+ Z
/ / Strcpy (m_IPAddress, scan.Token);# r5 a- D4 W" `
}
* @8 b) g$ A3 H; Y: k1 TAnd you created the solution.
; Y' ]) \9 Y- J+ Z9 Q* u# C" A6 ^) U R6 n; q3 Y
! p) u8 a- z5 [$ z5 K) A$ eThen read the Neuz not the IP from the INI anymore. even if put in it" J; |* b7 X8 @% e) j$ f
5 l, ^2 r6 A* f( z2 C
Max skill's
: f/ c; C" i# y6 j/ q, t
. A8 w5 N" ?- N- W4 r: c: d3 A- wAll know that, 14 Max buffs, you get all the RM Assist Skills + Skills fromBuffpang and no more space for the YJ, Knight, Ranger etc / C, r5 ~0 ~& P8 |4 Y
3 f! G" ^# A0 w8 {0 X# X' t
With the TUT can provide the remedy it
' U; o& T+ u" y5 F4 o. p/ c5 ?% D6 O/ J/ d$ X; Y: G
# 1 opens the file SkillInfluence.h6 ?1 _* T2 e! A: T) v5 `
# 2 Search. H* G" S# [3 N l- V( a% I
Code:% F/ b$ M5 J% Z+ [; S4 @
. e9 K3 `8 x" G3 z# Define MAX_SKILLBUFF_COUNT 14; _9 b% o- z% ?- S2 c; J, V4 m
+ q$ S- ]6 z' x, R
# 3 Change the 14 to your number (eg 21) and save it from3 X/ ~4 H4 _: a" N( [1 Z- [+ K( i
# 4 compilation and ready+ N: @6 m! X. ~$ m! [" h1 I. G
9 ~1 ^" w8 M0 D! s- ^7 ~' E, ^7 M! p3 C+ C+ f' k1 L
I put the 4 major ones i found and translated correctly and can followcorrectly I did you Google translate i have done all of these. i got to do theneuz i.p one still and i am done. i will post where it is in the source tho. Ido not take credit to this at all. this is made by:! D! C% e1 D+ c; Q3 s, X5 w
/ S4 {9 x2 f& k0 W: N
dennisdra
* P/ {, ]- _, n5 ~4 _& U6 e.Crasy
+ r- M) z, y. q+ Z4 i©ross
$ ~$ H8 b! S; j. T' zSedrika
: {2 R4 p% ~8 f7 o
' Y" q) E( P$ p# W, }, a2 u Ieverything there was German. I hope you enjoy this and these guides aren't hardto follow at all! i will post more here as i get them translated right. Enjoy!
4 S* v. `# w+ q) L1 k1 Y) w7 A, ?% s6 @. t5 U! }8 C3 a
P.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less" t) _2 I0 ?7 N6 y! N' F* A
; D; D. [& U4 m" h; q
1 A. ] H( n$ G9 RUpdate 1:
how to turn off "Profiler" in worldserver.exe ) [. B! O+ p3 t- z* ^
6 n5 m& C/ N/ K" U) w
+ c! ^# I( Q$ fin VersionCommon.h of Worldserver Solution
, b) N6 }$ T. P" }Look for6 D, A- H8 M l, u3 j, F: b
. D/ \1 ^: u; i" K/ {#define __PROFILE_RUN
7 ~2 k, }# B1 s) Y9 [
9 j. j. s" r; V2 a0 y" U4 Fcomment it or simply
7 { D, Z( \8 D* w. Y& e2 _
+ v/ |+ |4 ^+ e. G% ~; ]- N/ B//#define __PROFILE_RUN ; W7 [7 m1 c$ {/ \
. s1 ?; r2 J9 ]9 q
4 `" A1 P$ s5 X) h5 c7 E& Ycredits to bryle000 for posting that. thanks. ill add more soon if you got anyill add them too 好,我是通过elitepvpers论坛,我发现很多导游我去邮局好呢。翻译最好的我可以。我没有信用在所有这些 如何更改水平 更改水平没有重生 现在,让我们开始。 要求: 源 记事本/编辑 //提示sedrika 这是你怎么做^^ 进入你的源文件夹,打开definejob.h 搜索的: #如果__ver>=15 //// 15Â÷è÷¾î·Î·1o§è®àå__hero129_ver15 #定义max_legend_level129 #定义max_monster_level160 #其他/ /15Â÷è÷¾î·Î·1o§è®àå #定义max_legend_level121 #有// 15Â÷è÷¾î·Î·1o§è®àå 红色:球员最高水平 绿色:怪物最高水平 这些变化,只要你想。 然后你只能重新编译世界服务器文件+和使您的客户在definejob.h同样的变化与源。 1部分阻断行政长官 在本教程中我将告诉你如何改变头标飞飞。 目前的头标记是众所周知的,灵活的,这结果为一个字符串('^')。 为此我们去世界(项目)和看buffer.h后,这个文本 报价: #定义标题标记的^' //正常消息头 sysheadermark#定义“%”//系统消息头 什么sysheadmark寻找甚至不是顶级类。 改变这一状况,使行政长官不上服务器。 然后他反黑客不再有用。 sedrikaLG 2部分阻断行政长官 在这个小的文本教程,我希望你快时间解释如何重写源使地址不从阅读这neuz。 这是什么有好处? 编辑需要的数据包从我加入,如果不是,那么什么?现在想你 首先你需要获得开放源码甚至不知道你如何做到这一点,留给你,和你做项目的neuz。 然后搜索以下内容hwoption.cpp 如果(scan.token==_t(“知识产权”)) { scan.gettokenex(); strcpy(m_ipaddress扫描标记。); } 并把它变成这样: 报价: 如果(scan.token==_t(“知识产权”)) { //scan.gettokenex(); //strcpy(m_ipaddress,扫描标记。); } 和你创造的解决方案。 阅读neuz没有知识产权的问题了。即使放在这 最大的 大家都知道,14最大魔法,你得到的所有室协助技能+技能buffpang没有更多空间的勇俊,游侠骑士,等 与学院可以提供补救 #1打开文件skillinfluence.h #2搜索 代码: #定义max_skillbuff_count14 #3换14的号码(如21)和保存从 #4汇编和准备 我把4个主要的发现和翻译正确,并可以按照正确的我你谷歌翻译这些我都做了。我要做一个neuz知识产权仍然和我做。我会在那里后,它是在源寿。我不采取信贷这所有。这是由: dennisdra 疯狂的行为。 ©罗斯 sedrika 那里的一切是德国。我希望你享受,这些指南并不难理解在所有!我将发布更多的在这里我得到他们的翻译权。享受! 注:这是指没有服务器应该能够使用行政长官因为它非常简单的停止。花5分钟甚至更少 更新1: 如何关闭“探查”worldserver.exe 在versioncommon.h的worldserver溶液 寻找 #定义__profile_run 评论或者 //#定义__profile_run 学分bryle000投寄。谢谢。我添加更多的很快如果你有病加太 8 E% T1 x+ g/ l) O% K ]- a
|