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
$ s/ R$ \' A; T X2 ^& M- ?4 f% Rchange level without Rebirth
+ s& m+ [2 j$ {5 W- E$ K5 i4 p1 U( W6 D5 j$ Y( w% E
Now, let us begin.
. l6 [. U3 H4 Z" |: k# q0 x, R& g6 c4 l7 J: Z
Requirements:% t7 K9 s9 g7 F+ g' A7 o
Source
$ X" n+ Y* G9 T) o) D, jNotepad / Editor. d( L, Z4 O7 y1 y
$ E5 F* }# q. C/ / Tips by Sedrika
4 V/ ^8 s2 h# Y5 X+ i4 B6 X3 ^) |6 ^2 G& X1 k, T4 s* b% @. S5 \' h
It is up to you how you do it ^ ^
/ S- b: i6 ?2 d2 R& Z! v
: C/ `% I7 O) @8 @* f' N3 bGo into your source folder and open the definejob.h& E$ X9 T6 \/ }" p- _" y
Search there for:
7 n1 i% w, F5 k; `) Z$ e
0 P( m9 Q# p( Z#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå5 q# ^' V! [8 D6 {; I' b9 o W
#define MAX_LEGEND_LEVEL 129% A' \2 ^# F; |5 S- A. u
#define MAX_MONSTER_LEVEL 1600 b3 A' D ^! }6 L
#else // 15Â÷ è÷¾î·Î ·1o§è®àå7 T5 Y! r2 X% J% V6 c
#define MAX_LEGEND_LEVEL 1217 Z/ ^- `) N; X: ]) ~& P/ x+ z+ U
#endif // 15Â÷ è÷¾î·Î ·1o§è®àå 7 d8 A7 I' z( R0 i" ?& ?
, A* A( N# @; j. g4 T
) r2 E, n6 F) A2 t8 ^* l2 ~Red: Player Max. Level
* k# }8 R. x0 X% ~Green: Monster Max. Level0 l! r5 u3 N+ q( Q( f9 y* \& N
+ u9 S4 ?; N! p4 Y+ `7 Z* ^
These changes as simple as you want.
m3 R# ?* e* M p. a9 r9 Q T8 Q/ B; ^2 c7 L& S2 o
Then you have to just recompile the World Server Files + and make your clientin the Definejob.h the same changes as in the source.% @7 ]) V! o0 b0 O& u8 [
& z! G o4 j- V* D, M- r# M1 b3 w
Part 1 of blocking CE 7 e1 `/ |; i' c6 y+ M% z
. p3 w1 f. z0 w& J* z8 ~
In this tutorial I will show you how to change the Head of Mark flyff.1 C1 A# \* _9 J6 v& O, Z6 @. f
The current Head Mark is well known, 5E, which results as a string ('^').* J, j( P: r5 \, H! ^# l
- ]1 E, l* ^. kFor this we go to the World (Project) and looking at the Buffer.h after thistext4 K* w' @& Q1 q. T
Quote:
Z5 ~' V! U# i5 o; m9 C9 S1 h+ D# Define HEADER MARK '^' / / Normal messageheader
! E9 R6 k$ ]: z, u/ J3 ?0 e# Define SYSHEADERMARK '%' / / System message header; P9 p4 s5 B( C3 J! U( D3 M! S2 n
What the Sysheadmark is looking for is not even the top 5E.
4 e Z( A" B( f$ |1 `3 gChange this and it makes the CE Not work on server.) v1 X3 ^ M3 n
9 e x8 a) S2 V+ z: Z+ t. f% |& N
Then Tom's anti-hack is no longer useful.- V# e: G9 H, e9 S1 k8 }
. E8 H' q3 D7 G& j
LG Sedrika Part 2 of blocking CE
1 e2 @) a! E2 w5 s
; F2 o2 L2 B4 {/ B% X' CIn 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.
. ?+ c1 B2 z% z) I6 {What does this have an advantage?
# X& H3 N! j3 c3 x- ]/ OThe editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself
* M7 _$ ?; ^2 Q a" e; z$ q* |) H9 z" J
: M3 Y7 K9 b, ]. @8 D; _1 }$ k2 e
First you need to get open source even know how you do it, is left with you, andyou do the project on the Neuz.5 j; l- C4 e$ v# v0 _' e
2 T# r x+ u$ W7 a* s' ~ K+ ^
Then search for the following content in HwOption.cpp
; B. P/ V2 d0 I: d) l {4 H+ J5 J# K! R$ F( t, B. V
& u7 U1 x" H/ N; |0 I1 q
if (scan.Token == _T ("ip"))
, x0 G+ i* v3 H$ Q{
' j$ W: H: G6 r- y6 Tscan.GetTokenEx ();. x- T- O! f4 F6 z9 |+ _- J& G
strcpy (m_IPAddress scan.Token);
8 h0 P( N" {3 n, v, D4 l" L}* x' X! Z4 }1 z. G y
and turn it into this:
% a2 V- p( g9 ?) rQuote:
' c* m3 ^; p* j8 S0 aif (scan.Token == _T ("ip"))
" b; P8 Y2 f) w) r' B4 E5 c{+ K) a4 E5 K O
/ / Scan.GetTokenEx ();& l4 Y" T+ ]1 V2 I
/ / Strcpy (m_IPAddress, scan.Token);. M/ t) \+ b4 [8 t& R
}
5 b1 i: N6 ]7 s$ c( A5 U; S& M4 @3 sAnd you created the solution.
1 i, k/ L4 H+ o. P+ u1 p1 g+ L
% D# u4 P% s) x* L! G" [! N. \! \
; b& V- D( P, y$ XThen read the Neuz not the IP from the INI anymore. even if put in it( B \# V n+ u
4 P) J, J7 w4 G& M6 b [+ H5 f( e C
Max skill's - h# d4 ^$ @' k
8 m9 V8 d% g) E z+ v8 @1 L
All know that, 14 Max buffs, you get all the RM Assist Skills + Skills fromBuffpang and no more space for the YJ, Knight, Ranger etc % l: W! G0 D% `; p
7 ]3 W- ?+ U) A. g( E, [; h
With the TUT can provide the remedy it4 u* d3 f) a, o' y4 G7 Z; h7 j
5 V8 X3 o: g- ~/ @3 t* ?4 `8 X' X* m# 1 opens the file SkillInfluence.h( O% b! g C; {* c$ ]& p
# 2 Search# K# \) D$ d; |. N3 Z3 f$ _# c
Code:! }: Q3 o; x: i
/ W' V& v% C# `# Define MAX_SKILLBUFF_COUNT 14/ B( e2 c3 g" r! B, }) e
6 ~% K- e7 @1 G: J% v2 V/ P# 3 Change the 14 to your number (eg 21) and save it from
9 r4 }4 m1 D, E: t# 4 compilation and ready
% c3 D3 l: g/ a5 H( U
5 b6 {1 l' @- f5 z M
: L- S( a" @' i9 ?( g( q2 \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:6 e) @! i* J( c9 ]( A6 O, U
5 O2 S! s% _1 `4 @2 C# kdennisdra
+ f! y9 v+ f# [. |.Crasy
' R- _1 _. @" Y! M$ R, v©ross
0 n9 w/ [) E4 w' N# NSedrika
/ P2 w* {0 L/ M) n. U' p) {) I1 O# _: t0 s6 L# m
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 O; o4 z+ ~) X- f
$ V8 I1 i, z9 U& K4 H5 j9 [6 b9 l
P.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less
' r/ H* B5 N& S: l* X- q/ X& @0 Z2 {
+ O m. d, j% S$ ~5 Z$ T$ m/ i4 `
. U) d. C: _! XUpdate 1: how to turn off "Profiler" in worldserver.exe 2 r: @+ U4 F( Q& r* H6 k
9 T; A4 S$ o8 g( Q* C6 W6 V7 K+ `
in VersionCommon.h of Worldserver Solution
+ N8 H, s: J6 @Look for
8 B. [ s7 [! z2 E/ ~2 V
6 A: H0 S! o. f1 A#define __PROFILE_RUN
6 k1 g! N8 I0 W+ k+ Z% N3 }( g
. K: `0 e" D* b5 [# ocomment it or simply
9 ~" z* y8 t, q# |
/ U$ W/ v# P D- k/ F% J) D6 c//#define __PROFILE_RUN
* K0 \+ e3 W. D# J" Y; L& j, y
4 R! L8 h' ?* u0 b" R* a6 [# y8 Z1 r1 Q3 w
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投寄。谢谢。我添加更多的很快如果你有病加太
3 S& o3 W2 r$ L0 O: \0 ] |