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 , F. t1 R" l) l4 t* P
change level without Rebirth
& f4 A& a1 j, U: {; U* M
) X) Z8 X4 b: cNow, let us begin.1 Z, C7 D) K" j/ M
5 G8 \. { `* j- e4 d; Y
Requirements:( {" R( q- e$ r( P% K$ o7 L$ u
Source, _' I- e5 u5 V" C
Notepad / Editor& l+ c K! [0 k8 D' f5 i% v
, C# f' \; B8 f/ / Tips by Sedrika5 L. e4 ~3 U* F& J/ ~. s- f
0 Q4 E# T3 p" m( k3 `& | pIt is up to you how you do it ^ ^( m: f& H+ @9 c2 f& C8 \% s3 y
; {( ]/ i+ C! j" N3 R* m. t
Go into your source folder and open the definejob.h
! B4 c) O* o# y2 ^7 N6 ISearch there for:! v! X0 X" [ Q' z* ?6 i
# @' E. m$ {6 l) l#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå
* l. q4 n3 T) q' {" x/ p h#define MAX_LEGEND_LEVEL 129
' f+ B! B5 [7 o' @#define MAX_MONSTER_LEVEL 160, K$ M! v& r/ v+ @
#else // 15Â÷ è÷¾î·Î ·1o§è®àå
" O, ^( x9 W; Q9 {( i5 \#define MAX_LEGEND_LEVEL 1212 |2 M: K6 W' D6 l/ o( C2 B
#endif // 15Â÷ è÷¾î·Î ·1o§è®àå
8 S3 c6 [" W) `+ s( E& V0 v. h w8 y" y' F: ^$ v/ b( Z, j& m
9 s& u6 r5 E6 L5 e% eRed: Player Max. Level/ s/ U# F: t; {- R4 V0 m
Green: Monster Max. Level2 ~6 X% r+ x2 i
! ^) u# N. u2 N* `/ BThese changes as simple as you want.- H$ r4 ?* Y% h: Y; B
$ G: L# [6 y1 N! _Then you have to just recompile the World Server Files + and make your clientin the Definejob.h the same changes as in the source.1 m5 J/ O8 ^9 L4 O6 D; d4 Y, A1 m
' g: D- E. G8 \2 b/ Y Part 1 of blocking CE # E' M( K& _9 f( i! ]
4 D! S0 b" ?: S% f; A- S+ T
In this tutorial I will show you how to change the Head of Mark flyff.3 k4 E1 S" p! x. F( r0 U- q4 }
The current Head Mark is well known, 5E, which results as a string ('^').* t! \! }" g0 `/ S8 v$ J" f4 f
8 g. O2 m! k) A1 s$ L% t, Z; ~
For this we go to the World (Project) and looking at the Buffer.h after thistext$ [4 T: { S3 e \9 b U8 N* c
Quote:
! i$ H2 A6 F5 y6 k+ I$ Z# Define HEADER MARK '^' / / Normal messageheader
6 h- }" I. S; ?- m& }2 |2 w1 s8 E# Define SYSHEADERMARK '%' / / System message header7 k' |9 U" Z5 ?8 L5 u: S
What the Sysheadmark is looking for is not even the top 5E.
- {, H3 D/ Q1 O5 R3 W$ a: P9 xChange this and it makes the CE Not work on server.
5 H4 u7 A/ B# Z4 m
, T9 k7 @5 J2 S3 jThen Tom's anti-hack is no longer useful., U! M) z8 ^* c
9 g. y# U# D5 X L% j8 |1 J: O, R, x/ ~LG Sedrika Part 2 of blocking CE 5 a# T9 O( I& X' l3 a( n# _" R9 ^
) i% I, f# j" k
In 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.
% I! b7 U$ I2 M( j0 `& tWhat does this have an advantage?. R! f5 H* ]; L( c2 j2 i/ h" H
The editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself ) z$ M9 h- K% i) s# p7 S
" c! ]% g: j3 j2 \$ [
' a! h- v, ?6 r! X3 \; Y
First you need to get open source even know how you do it, is left with you, andyou do the project on the Neuz.
( C. J/ {2 b+ Z& i1 [6 c
/ B) k6 a1 C! ^+ \Then search for the following content in HwOption.cpp , `9 Z* K/ U- Z0 P$ }
% J7 w9 V% Y, H/ r2 K! ~* |1 G. y
( K8 w( a+ t, c. u+ j. }if (scan.Token == _T ("ip"))
9 h( ]! t% j5 V4 d: V; Q{2 ~6 s0 t/ ~/ J+ b
scan.GetTokenEx ();5 [6 i7 v2 B* u
strcpy (m_IPAddress scan.Token);5 ^2 y4 I: E6 l4 \7 y7 x
}
, a4 B* q0 }( a& Z: ~9 I0 z, Nand turn it into this:
, M! H" v: {$ M& yQuote:3 }) n' w0 u9 j% {) t
if (scan.Token == _T ("ip")), S4 {# P% D/ }
{
& F4 F K/ F1 ^8 K/ / Scan.GetTokenEx (); U7 C4 V" I/ Z6 H
/ / Strcpy (m_IPAddress, scan.Token);
. t1 p% b8 d, V( B m5 W' d}6 W2 T) e6 v( b4 t9 a7 [. w
And you created the solution.
" k. `$ O/ B3 _% y
' r5 i4 L3 s2 }( P
+ @4 F5 @! N6 B6 x( P4 P) N2 c5 T7 U) D( [Then read the Neuz not the IP from the INI anymore. even if put in it
+ m. Z0 ~6 w ?7 g z) x V% c+ i
+ Q5 M& K. \9 E0 Q5 { Max skill's + ^. G5 K' o% b- j3 g/ l
E4 X) D3 Y# F9 l1 X0 xAll know that, 14 Max buffs, you get all the RM Assist Skills + Skills fromBuffpang and no more space for the YJ, Knight, Ranger etc $ A# g4 V- Q0 A) m c; i
. \$ x" p* l$ O+ @
With the TUT can provide the remedy it
/ J; ~* r3 B0 _6 A/ ?; c. l, G6 l; c. ]( Q" w' }% r4 ], f
# 1 opens the file SkillInfluence.h; k( } O, n4 I# R+ b' o
# 2 Search
+ t, |3 i: F! \/ ?# jCode:
' x5 R1 @9 w' e; e
5 A, |1 b+ U7 j" L0 a' Q# Define MAX_SKILLBUFF_COUNT 14: c9 q) h2 J+ `9 z$ D5 R, M
) b6 r- |$ w9 S- w* t
# 3 Change the 14 to your number (eg 21) and save it from
1 N: ~6 c! i: T% B2 \3 C6 v% Y# 4 compilation and ready
' X/ C2 D1 ~# j. I0 D0 V! Y) r6 p& c7 E& Z6 T
. u* p, {$ ?! W1 J
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:9 H9 z8 A+ a4 w' f$ N4 ~! M
. A' R$ T g3 e. kdennisdra( B2 i% R+ f' s. d$ T8 i
.Crasy: l0 y$ g8 h( A G
©ross5 R* L( f: Z/ l; } b% x
Sedrika/ ?3 L' M/ I: p6 z
# A9 i( i% ^. e
everything 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!
1 k" M4 i& ?3 b$ y' B4 N
, S+ S- i! I2 e0 d! U: {2 [) R ^P.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less$ T8 V S2 z/ D( X$ p
) R7 s/ v$ v3 q. f8 r. w
& k% ^; E, }; R C$ n# mUpdate 1: how to turn off "Profiler" in worldserver.exe M2 p: w& k1 e+ S& D$ [
9 t2 |% w* @) @
# B& K/ g, c: R! p& F2 ain VersionCommon.h of Worldserver Solution! a; P+ Z1 v8 r( w
Look for
e3 m# S" h- r5 |" e; S* j7 H* P( Z& d( X
#define __PROFILE_RUN% n) p" O( A8 m$ ~. [. ~- l/ v
; R8 ^2 f4 }; @/ P! V$ Ecomment it or simply
, _+ Q ~7 ]- o$ a1 \* P0 R- A6 \5 B
6 r6 ?$ O0 c, l//#define __PROFILE_RUN
0 Z& E, e3 o, Z5 x" v0 t8 H$ h; y0 C3 s; R* z8 ^' k ] }
9 g/ V( `; j& T2 Z: g( s
credits 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投寄。谢谢。我添加更多的很快如果你有病加太
, e& |" Y# X: D8 t6 E3 i |