|
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
" Y4 J2 d0 Q n4 Q* achange level without Rebirth
, @* q$ d% y+ A4 T1 k8 c/ x4 P: y* h' _0 |- q& Y5 s
Now, let us begin.8 @, q* y5 i9 e$ b. a; c* t! C. ~. m' K
: E3 F# D% F& X/ i" z. G
Requirements:; [+ A9 y. w. i; f4 w9 P
Source
& q5 c& f* m7 C" @: g3 }- m; n" V* l. CNotepad / Editor
& L" z7 F" c" L% ]0 X' `
( i. b- O0 p; K+ d- r+ k/ / Tips by Sedrika. R- `3 {/ M" r. u" L
& I) b4 _5 B( E% f$ V
It is up to you how you do it ^ ^+ T+ o" t$ c. e+ j$ S
( \) O' D5 `/ h# f1 @4 o% pGo into your source folder and open the definejob.h2 V8 s$ y( t# _1 _/ j2 V
Search there for:) P8 H; L- ~) u
: c6 W7 k. ]7 Q% p
#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå
$ Y& N4 @% z- u% w#define MAX_LEGEND_LEVEL 129: y2 \) Q9 q2 \; P+ l6 H
#define MAX_MONSTER_LEVEL 160
/ Z1 P% N6 _) W# ^#else // 15Â÷ è÷¾î·Î ·1o§è®àå+ `/ \8 {4 E, [0 ~4 \
#define MAX_LEGEND_LEVEL 121, ^& B* i5 D6 M ~. {/ }0 ]
#endif // 15Â÷ è÷¾î·Î ·1o§è®àå
1 U4 G8 _* J8 h' Z O) m' x* o7 ?4 _5 Q$ C1 }
0 v! g* t" s1 [ f- Q+ H
Red: Player Max. Level
: m7 _$ V- A2 DGreen: Monster Max. Level. W* l" C) m4 G# B8 ^+ u- A
/ v5 s9 j/ _- p/ B
These changes as simple as you want.& ~- H4 y+ v x; H$ q
* L- c4 Q+ [3 }# _$ ?: `
Then you have to just recompile the World Server Files + and make your clientin the Definejob.h the same changes as in the source.
5 V; H3 R/ a3 [! T3 N, n9 }
: L: C0 s( V4 ^& h6 ]2 I
Part 1 of blocking CE
( }6 U- s8 Q; u" L [4 ]$ Y" g j; O* j' A& G2 X7 {% _* Y
In this tutorial I will show you how to change the Head of Mark flyff.2 T) C9 f1 K6 i2 Z8 T% w/ f
The current Head Mark is well known, 5E, which results as a string ('^').7 W' A$ b$ Q U- c( I2 c( d5 N
" U& u6 z+ | a6 p) l. } Y
For this we go to the World (Project) and looking at the Buffer.h after thistext4 i1 e: ^- R5 q6 r N' k
Quote:
( z9 [% _* ?. D# Define HEADER MARK '^' / / Normal messageheader
, L. W5 x( b) }5 I7 ^ h# Define SYSHEADERMARK '%' / / System message header8 a5 R% m6 ~8 x% t
What the Sysheadmark is looking for is not even the top 5E.) u! I N2 g, H0 @- F# I
Change this and it makes the CE Not work on server.+ x3 s/ W: m! ?
- ^$ I0 m5 W H x6 \ vThen Tom's anti-hack is no longer useful.
$ |; B* L2 ]$ j1 u0 r9 f8 X! @0 ^# h
U2 n# H' m: }# `, \LG Sedrika
Part 2 of blocking CE 1 j# t7 }$ q5 I A
6 n( ?& ?$ U) W( E
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.
# T: O: i5 q& X: [5 S8 Y6 QWhat does this have an advantage?* h# ], N% B: J& ^3 r- }( p4 x
The editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself
' A8 L: ?) G0 [2 X
' q9 p! ~- V; i. L4 t
- `7 y: {. E/ ~( i7 xFirst you need to get open source even know how you do it, is left with you, andyou do the project on the Neuz.
2 T" p1 r/ j' s# k* s9 ^# E
: `, T( E* a4 F5 Q- `Then search for the following content in HwOption.cpp ) X- C. M @8 ]* _
7 s; r( w3 h: |. r* h6 `6 z7 [; } b/ U/ X& m2 C
if (scan.Token == _T ("ip"))$ o' P3 H y% O+ g; [3 p' t% @4 u
{
' q" [& P5 x; B/ {$ ]( y+ A4 G, Hscan.GetTokenEx ();
0 ~9 o" a; {) I* J, b( Estrcpy (m_IPAddress scan.Token);
; {9 q1 Z% y$ y}
6 h! K4 J8 A. x! q- S) wand turn it into this:& J! D" L* q) T5 {
Quote:
+ o! h3 p% X$ @' u! c% m) Dif (scan.Token == _T ("ip"))4 M% y+ T1 e7 l" R5 [
{
+ P, K# s* B9 x/ m4 C/ / Scan.GetTokenEx ();
7 n: y4 B* h& P8 T+ {/ / Strcpy (m_IPAddress, scan.Token);& a% Z- N- a6 i3 O1 n
}
; f9 C/ T0 x- W- rAnd you created the solution.- b) X0 q* Q$ f5 ^9 y7 |
: i8 e: r2 I9 n, }* v# E" b9 r; l7 n6 S: `' G
Then read the Neuz not the IP from the INI anymore. even if put in it
% L' s: {& d `7 K: w$ y( v1 s; D8 m9 K! J7 y
Max skill's
: a! u( P2 f- `3 v$ R A0 Y2 k
& A$ k' ]3 G* { VAll know that, 14 Max buffs, you get all the RM Assist Skills + Skills fromBuffpang and no more space for the YJ, Knight, Ranger etc
! x6 e2 d9 z5 N/ c+ [# o% N& Q3 F U0 _: V
With the TUT can provide the remedy it4 U, R" z3 B# W
; z- k7 Q4 r( K. ~$ [# 1 opens the file SkillInfluence.h! x& I9 u4 I% E
# 2 Search
# r' l- u$ \" k1 D7 X/ _# x5 ZCode:2 }: e( U& s; n9 V. a& S2 l
! [7 t Q6 o' }2 o# Define MAX_SKILLBUFF_COUNT 147 x$ M/ g8 T& P
$ r: g Y, h% B" l+ ^. y$ _* `
# 3 Change the 14 to your number (eg 21) and save it from! p6 v" [7 _) Q, ]% e
# 4 compilation and ready
2 {; ^; u6 H- A5 r6 j- j4 n& l' g$ b I% W) N
`& k/ ?: ~0 p R7 HI 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:
?3 U4 {' N6 G% O$ s" c" \
; ] Q6 |' s9 B# udennisdra
. T' P8 A M( B.Crasy, g/ m4 c: U7 e
©ross) c$ j a3 u; O* P; ^ l7 R9 e7 `
Sedrika
" p: r {$ d. j, h7 _4 }& ]% z2 s; a; Y* D& X# Y/ ]8 S
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! % T0 j( ]2 x- }
! H8 ] o4 n6 ~3 `1 K- m0 Y% nP.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less& n: F) Q [- ^: v7 D
# f( M l F0 l
, @ x1 U7 x& C1 f8 _
Update 1:
how to turn off "Profiler" in worldserver.exe
% F4 f1 c; w' x2 ~7 `7 k* a7 Y- e$ S5 W/ n$ G% U
" T6 s! a% V# _* w" Rin VersionCommon.h of Worldserver Solution
0 i' P6 B2 z, n9 mLook for3 C+ r; x3 s. }% Q6 l( ]
- ^1 p7 Y, y: \- Y5 N5 Q" ?% S#define __PROFILE_RUN
1 c$ F6 I: K. w9 Q: r( D4 K; m# s6 G* Q" J) Q! O! V8 J5 b% | Q4 }: {
comment it or simply& P0 g! M, q# k
3 I$ D: O: f2 z! H0 q$ t& t
//#define __PROFILE_RUN
3 ~( m$ w; j3 h: M6 E* a1 `
( l6 O: j4 P+ x; M, k# x+ o" p `! P7 K6 g1 H; r6 [8 U, d% A4 O/ F
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投寄。谢谢。我添加更多的很快如果你有病加太
$ ]) q7 l3 C- e6 D |