|
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
3 z- i! _! @ ^5 R; @change level without Rebirth
8 T) H5 R$ I+ _* Y* r8 E8 C
6 I; v" Y6 I! D8 eNow, let us begin.
. L5 z( E1 U- r" A4 A$ R) Y4 W3 Y
Requirements:/ g8 Z2 Z0 q; ?- P) W* c+ F
Source ^" o5 H9 _& J& R( l* I! B
Notepad / Editor
" d2 p) S* @( L# _) q/ h$ j9 G3 @- b/ t' H3 y0 _
/ / Tips by Sedrika
+ ]" R# ^6 n0 N8 Q6 }7 {9 \3 @. |& q) Z
It is up to you how you do it ^ ^: U! z- u. e! R' } q
/ Q) _* R [: n$ lGo into your source folder and open the definejob.h
1 e6 C1 W' |* G! I* lSearch there for:
8 W; k( v2 u$ p3 P
# @* u2 Z# a) n1 {3 Y5 [. K#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå. i" H( _. l7 U5 t9 D- B
#define MAX_LEGEND_LEVEL 1293 V* i% S) C$ q% x X
#define MAX_MONSTER_LEVEL 160. N5 Z; A8 H( l8 {1 i: c c! Z% }; G
#else // 15Â÷ è÷¾î·Î ·1o§è®àå
" D4 ^) |; n) F' c#define MAX_LEGEND_LEVEL 1210 G+ _/ I% N& x# s1 a' R- e* e
#endif // 15Â÷ è÷¾î·Î ·1o§è®àå
. @3 {' l9 J: G1 Z% ]5 ^0 @
2 i+ o0 |$ w* [4 _; X+ o& Q4 v" z, J; I3 A
Red: Player Max. Level0 e# G! K3 i( s1 ^3 j( N
Green: Monster Max. Level# [; u( {5 f' E( G# M! T+ u. a2 V
1 q7 @; L- ~- Z, L: Q
These changes as simple as you want.
4 B. C8 {# M- ^
4 U t6 }( ?6 `- pThen you have to just recompile the World Server Files + and make your clientin the Definejob.h the same changes as in the source.% J& m7 k9 U' |' L& E' ~
0 a+ ^3 l/ }* w# W
Part 1 of blocking CE
1 m/ ~/ Y+ f: |3 M% K8 q. }- Y$ o6 ]; ]& Y( e" g
In this tutorial I will show you how to change the Head of Mark flyff.% h. t: @- J M7 q
The current Head Mark is well known, 5E, which results as a string ('^').
; ~$ d5 k& t+ R$ j
. q* a- y4 T. `For this we go to the World (Project) and looking at the Buffer.h after thistext& x* n! W" n5 w8 Y" E, j# O
Quote:: B/ v( i H2 u$ U3 y# i
# Define HEADER MARK '^' / / Normal messageheader3 Q* m( d- S8 u/ F7 U
# Define SYSHEADERMARK '%' / / System message header
) W! ~! I) }8 o) h: `What the Sysheadmark is looking for is not even the top 5E.# x# K2 t0 G& x L, f
Change this and it makes the CE Not work on server.- L; w, a* s3 T" [0 {0 R
% |0 |' \3 m' x2 NThen Tom's anti-hack is no longer useful.
4 D6 r/ h7 s0 n9 c* m6 U( `/ B+ x$ [6 W* z! I& E
LG Sedrika
Part 2 of blocking CE
]1 K9 }3 W. p8 T3 Q4 @
9 x2 a9 s/ R9 YIn 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.
% d1 t( o2 P& z3 q/ C! MWhat does this have an advantage?
) H- R# r Z# o+ QThe editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself
* a D- x2 y w' D3 @% z0 I, ` w) y3 w: t1 E$ P4 S% F9 y+ b$ W
# |7 N0 B1 `5 P; tFirst you need to get open source even know how you do it, is left with you, andyou do the project on the Neuz.0 S# c3 b. v6 U$ v0 Y6 a/ p
~) m3 l% W+ e- |( D
Then search for the following content in HwOption.cpp
# V7 ^$ V. H2 L; _
; z% d0 M0 f) L& t' u: l" m5 B+ I& ~& f) }, {( e R: I9 i, f
if (scan.Token == _T ("ip")), D. k( ?% ~1 s* q
{
i4 \3 l# R4 p8 J* S" Z/ F2 j% L/ }scan.GetTokenEx ();
" W6 L( G9 p; c% Q( l7 c bstrcpy (m_IPAddress scan.Token);9 x- a5 F- F V* p& b# W: J
}9 Y0 R; [, W, I' p
and turn it into this:
& ^+ o" }% k5 p! sQuote:
5 {0 s! U) M9 zif (scan.Token == _T ("ip"))1 Y7 w% |- p4 W0 b# ~) k) I
{& U: R, g/ |4 O5 J
/ / Scan.GetTokenEx ();. p6 N3 G' F6 p/ o
/ / Strcpy (m_IPAddress, scan.Token);3 B5 i6 C8 ~! i5 n; N0 W) d
}
7 L# S' n2 Z$ {+ x- F( WAnd you created the solution.0 [0 N1 b1 I% x& {5 F( A+ J
, i i2 Q3 L( `! \8 n: y' w) y
" v, s* z* f% k7 D* J; o
Then read the Neuz not the IP from the INI anymore. even if put in it
/ C; @5 v6 v' ?
' ]5 y6 {% T! ~; W8 ~1 O8 L
Max skill's ! U" b* r1 D: g% ~* L
' h3 T3 d+ s& Q; E$ t0 JAll know that, 14 Max buffs, you get all the RM Assist Skills + Skills fromBuffpang and no more space for the YJ, Knight, Ranger etc ) U) E) u& b! t, W
$ @% I ?8 C0 G& ?* ]
With the TUT can provide the remedy it, l$ k' s0 \0 T" T) s& H
@4 H0 o2 d; @, v1 \
# 1 opens the file SkillInfluence.h
) H, t# q% l1 A$ ?. S# 2 Search
8 B( k% [0 Z" h1 t8 J7 g, rCode:$ _8 G. ]7 [' Y
1 _/ L4 X0 b# v# U+ M& H
# Define MAX_SKILLBUFF_COUNT 14
, j. P* d; M0 m8 e* ^, v1 b. N% ]% R/ s1 K
# 3 Change the 14 to your number (eg 21) and save it from
% x/ }2 V2 q: S/ `# 4 compilation and ready
7 f: B% d. B+ g# f. W/ c8 y+ ^5 z3 l% {0 g& O; _3 R9 i, u9 `7 D, g; k
* D' ?4 R" L: _- ^7 G9 `
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:" i3 B! ?# g, {( T3 R
. d: f( S7 u# R" f
dennisdra1 X1 i, W" }* s
.Crasy
8 c! [1 j/ k( b! J% b3 j0 i" m+ v©ross8 j$ u( \* S& U/ n6 s" \
Sedrika
- j# g! M0 ~+ j4 Y2 ?/ }
. Y! j" D5 M7 }' g( Y2 {9 leverything 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! & n) O9 o: z9 f( N' N* o6 ?
5 V( q- O- Q2 M. ^$ N8 sP.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less
" E: k1 N, l2 m: ?# \9 j6 Z3 o; d4 X5 I( w- _
4 o8 x# e, p, x7 o
Update 1: how to turn off "Profiler" in worldserver.exe : b6 X" J5 }- a$ X+ T- \
0 K% R# V% e9 N+ X' f. V1 ]1 n' }* I% K/ G! I3 A3 D3 |
in VersionCommon.h of Worldserver Solution4 H; d+ a" [" _! k0 B1 y: c* v, |
Look for! _! n1 C6 f+ Q, n! W( i
# s1 E$ F9 R( J+ `) z#define __PROFILE_RUN
8 G) W( u) v% b9 ^* N( R8 ]) `* A) N- z4 V. g
comment it or simply5 d q6 B4 e2 R& M, z$ s
4 |8 ]1 c4 V$ p) w' o* ~) D5 Z% N//#define __PROFILE_RUN , q% _" H/ X: W! t* v/ o% F
8 a7 A: U. u/ t) G1 ?. i9 \
: a! b& h8 Z! y: @* S( i' pcredits 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投寄。谢谢。我添加更多的很快如果你有病加太
' T7 ~7 `& p* J- N |