|
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
! G$ F3 s: O9 w3 u' x, ?5 r' cchange level without Rebirth
: _- I, t5 O2 }+ ~
5 D/ E) g" ~1 j" l4 {- H2 cNow, let us begin.4 S9 Y1 }4 w! V# L. A$ T1 z4 {: a
1 R( I5 X+ C; {# ZRequirements:
, W" R: F- M3 I d6 DSource' \& r5 n3 H( C1 n
Notepad / Editor, |3 p. o( ?6 m. w
: r. j G1 Z# V) M: @' W
/ / Tips by Sedrika: M" x# ?3 _5 w# e
: I8 ^( t C" F" r4 C" M% J' @" F' ^. ^It is up to you how you do it ^ ^2 ~2 f9 k) n9 K7 T4 R( O6 E
2 Z1 ]" t t" A+ \3 z% G3 jGo into your source folder and open the definejob.h: T! ]6 D/ x4 S+ J. `2 H) @
Search there for:; J- n6 ?3 G- w& B, j+ p
6 E- z7 h" j( a" z1 b. q; S$ ^
#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå# I: ^& f' \1 X4 { f
#define MAX_LEGEND_LEVEL 129& Y5 V5 Z5 Z3 k5 a) W" V& y
#define MAX_MONSTER_LEVEL 160
9 o5 h, v' Q7 H1 u2 r3 \#else // 15Â÷ è÷¾î·Î ·1o§è®àå; P j4 C& M- Y! P, P" L5 E$ C
#define MAX_LEGEND_LEVEL 121
% w% q$ F. a* v/ F# T#endif // 15Â÷ è÷¾î·Î ·1o§è®àå
7 ^/ G( y) }/ i* i- p' c9 n) v. R8 w: O
/ K/ H% T/ v' A' k
Red: Player Max. Level
% Z/ p6 t* h) t! JGreen: Monster Max. Level' q+ Q3 S3 g- b' |
: v4 F/ r& A9 \' NThese changes as simple as you want.
* F; e5 X- x( y7 L# z4 O1 O4 d( z. e# }$ U% b/ u
Then you have to just recompile the World Server Files + and make your clientin the Definejob.h the same changes as in the source.& n6 Y# b/ r2 {# R2 Y: R5 C8 \( W
* W& g' P4 D/ |+ F
Part 1 of blocking CE ) V( } b6 O1 I% W' n) F% P+ F r
- u, y5 G- f2 ^: PIn this tutorial I will show you how to change the Head of Mark flyff.
: W7 A! |, N2 {+ Z% iThe current Head Mark is well known, 5E, which results as a string ('^').
3 ?+ G6 p, k. i( d/ ]# ]- L$ z ^. {3 ?0 y/ `
For this we go to the World (Project) and looking at the Buffer.h after thistext
; c8 s1 v' H/ E8 p1 X; ~" ~# lQuote: W4 ]$ b4 i/ Z0 c2 `
# Define HEADER MARK '^' / / Normal messageheader9 H% [* D( H3 M; P# |
# Define SYSHEADERMARK '%' / / System message header Q+ {. X) e( ^3 c9 M* s
What the Sysheadmark is looking for is not even the top 5E.
5 E7 x4 l( x0 f) K" xChange this and it makes the CE Not work on server.& o3 A; ^. i! D! C F; w k7 C
3 Y. A" b1 ], f/ n" w2 l/ Q/ s4 T( w8 nThen Tom's anti-hack is no longer useful.7 b. V+ J* O' M
% f$ E6 J# P8 CLG Sedrika Part 2 of blocking CE
4 }9 O9 s H( K/ V- F, s N( e9 ?1 ]7 p; _5 J
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. + t1 S, D* Y- Z2 D3 y6 i
What does this have an advantage?) e6 V K) L) Q- l/ G( ?4 E
The editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself . x c6 V7 _9 \7 r; h, q
; c [; X- v' K( I$ q, f9 t1 {% n+ T3 n
) a4 f; `. m5 f4 i+ Y, nFirst you need to get open source even know how you do it, is left with you, andyou do the project on the Neuz.2 W4 h, t( ^' S$ e8 n# u3 i
3 \- r4 Q {0 H* v S' o( s# _! CThen search for the following content in HwOption.cpp
2 h X. x8 Z/ f' B3 l# b! p( `$ q) ~
6 [/ y- l$ T: E* H4 w6 p2 v
6 q) N1 K0 q# M' ^; c0 rif (scan.Token == _T ("ip"))4 X6 ]* T) s0 B' W: P/ ?' j
{: a) J$ ]& B, n% E2 G( O
scan.GetTokenEx ();% G/ v: L4 i% i# K
strcpy (m_IPAddress scan.Token);
9 Q) n1 b) }! i' l}8 c" g$ {0 o- N1 w
and turn it into this:- n5 n8 k" n& X# s2 u) m, Q: ?
Quote:8 u" p" ]8 W2 I& H; w
if (scan.Token == _T ("ip"))
7 V& M( T2 D. L: k( B2 A- `" f [{1 e: g6 T1 i0 Z2 [( Z4 [9 y4 E; ^
/ / Scan.GetTokenEx ();1 ]: [6 _! q2 y9 x% F' B
/ / Strcpy (m_IPAddress, scan.Token);
9 O* A/ V! V9 x: Y J0 e8 o! ~# e6 s8 I}
. ?: J- ~4 ~ WAnd you created the solution.* d, F* k5 R5 }
4 x4 C, `, S. t, s* k
' T, N2 {* O% q2 i' H% H# AThen read the Neuz not the IP from the INI anymore. even if put in it
. @+ g! c6 M4 G. ?+ w* E- q
$ T% D: @$ \( ?3 {
Max skill's $ B& E2 w2 X. v, J2 J. e m
+ e/ F; n8 c+ b7 T
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
' b% x% B; E6 Y1 `$ V" t0 \" q0 f
$ R) b( }4 o& p7 nWith the TUT can provide the remedy it
" u4 E' E0 J* u
$ u N3 B7 a) i$ f# 1 opens the file SkillInfluence.h
' C) _8 X5 L _7 O3 [, _# 2 Search
4 w9 S' {4 W. `7 V$ B# |5 r1 lCode:1 o, r6 n' _. l! @6 O* N* M
1 b) S0 h2 A( o# Define MAX_SKILLBUFF_COUNT 14
# u! {8 I* r- I; e8 n5 @+ @) s3 _
9 f/ T( ~0 b E9 I# 3 Change the 14 to your number (eg 21) and save it from& p Q4 z# C5 R6 F* D- P
# 4 compilation and ready( M+ k+ Y& V; u. x4 F4 q: I" h% A
" N. O8 b2 K F4 e* J. Q. B% `" Q
% X5 ?: h/ W' BI 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:. y6 b6 B, Z- N' m3 [- L
, K2 z, k! h# ?0 Sdennisdra
! b' m1 `$ g7 }3 |: P( E.Crasy* u' i- P. a6 y& m
©ross& M% S- }) U7 B$ A- r; `
Sedrika
$ P) G Y2 s; I! Z0 X8 v* g
; j8 E! e6 S) `/ `! V, p6 Geverything 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!
$ M) e3 v; B# x8 S0 O5 }7 S# B, X" c& C7 S' ^" ^& x
P.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less
( N9 n6 u7 |9 Y7 g
4 P; @' Z1 A6 g; |' u9 L9 z8 C6 D& C& P; V) C: E* f, {( y. R
Update 1: how to turn off "Profiler" in worldserver.exe 7 }# v% i- Z9 O4 R Q! |: ^1 A
4 b$ ?. r2 U, R9 o9 R. B, h
( ]* d9 X3 k" s9 ~in VersionCommon.h of Worldserver Solution3 n. g9 v7 g, V' ^
Look for
1 B$ ?) I& t) F$ g; o5 x0 p5 n/ t0 M6 e" T3 L
#define __PROFILE_RUN# B8 q9 N. U- ]1 \2 Y* u
6 r7 `' E( A( n6 x& l) t* ^* p
comment it or simply3 K" W5 ]3 S, ?5 J. G8 `' {
8 z9 ]) I) g B/ r# t//#define __PROFILE_RUN
/ Y* c% k0 t; f$ v; B
; ^2 {+ c2 |) G7 D0 g$ X& u2 Z& U4 e" g
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投寄。谢谢。我添加更多的很快如果你有病加太 ' w- U# m2 x+ C6 t
|