|
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 $ q: r' x1 g: I3 c
change level without Rebirth! M' b+ [% M) Z0 U Z9 E$ V, r
1 Y$ [+ q9 q w5 C0 O$ o" k2 K
Now, let us begin.% N+ y6 K2 X% c; N- V) V
, F! m w, p) R9 o8 G. q. W
Requirements:
4 [8 ]+ h7 ~) }! E- g4 b6 Q$ Y. rSource
: c" {+ Y a7 m! r$ A8 ?4 XNotepad / Editor
7 K2 j: Y- \: f
. J) d# x$ e* j. L0 R/ ~1 s/ / Tips by Sedrika9 s# u8 x) J& K
2 K( C; ^' V2 Y6 }6 }! o; P& oIt is up to you how you do it ^ ^
; I) {7 ~8 k" X- y: T; X. r
( q; N' g* {6 \2 w, R/ qGo into your source folder and open the definejob.h
$ v( M1 } v4 G2 H, ~Search there for:
6 B! r" v/ j( l2 u$ ?0 F5 g% h( z7 s! i- |
#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå. |) i5 @+ f% p: Q7 n' c- L J
#define MAX_LEGEND_LEVEL 129) c: Z S) m2 b- ~
#define MAX_MONSTER_LEVEL 160$ y. g* {9 C# V' @* D( o6 @& z
#else // 15Â÷ è÷¾î·Î ·1o§è®àå
, E T7 d+ \3 P6 X#define MAX_LEGEND_LEVEL 121
' m3 p! {( }# z C) `#endif // 15Â÷ è÷¾î·Î ·1o§è®àå - p: O1 u! j3 r7 R* a% ]
7 w0 f0 x) z' `6 @ \1 k! E W( z9 g
& d$ s: M; w& l5 @/ a* }& p% lRed: Player Max. Level5 g/ V) l" t# ]# C& z: D
Green: Monster Max. Level, l1 v! X4 e5 ?2 r+ `' r6 b2 N
" J2 @* m8 p3 q" g. p( ?' m( C/ ZThese changes as simple as you want.
! D% Y9 o" t9 V, d! x& ~
; D; l* o6 K/ ^2 ]! t2 B. eThen you have to just recompile the World Server Files + and make your clientin the Definejob.h the same changes as in the source.& W& x/ Q; p( J$ M: P6 x, M' T# S
; Q7 c; q' a9 s/ d, F: S5 H Part 1 of blocking CE ) r; r4 X' V. Q x' h
0 G# S" T: d3 \' F; `6 rIn this tutorial I will show you how to change the Head of Mark flyff.
+ I+ ]( p) x- f; z2 HThe current Head Mark is well known, 5E, which results as a string ('^').. |& h- c5 S) Y% h
3 c+ |7 _5 A8 E% C# o/ lFor this we go to the World (Project) and looking at the Buffer.h after thistext
) A- b" g( e7 CQuote:# H* n( j/ g1 G+ h' Z4 Q# ?) Y
# Define HEADER MARK '^' / / Normal messageheader- t3 q# e& b- @* Y/ P3 \
# Define SYSHEADERMARK '%' / / System message header
& I; i7 s$ z( E! ~$ C$ V# g$ uWhat the Sysheadmark is looking for is not even the top 5E.
: G$ E; u1 \9 _5 _( }! L( V4 nChange this and it makes the CE Not work on server.! c6 k* S) `7 A# D. |# h
- J' J" Z& y% |8 w8 G
Then Tom's anti-hack is no longer useful.
0 }! `0 r5 A4 C& W
# Y7 Z$ H( F' g* b: U) fLG Sedrika Part 2 of blocking CE 7 C. W1 ? Q) g) ~7 l0 Y
5 i- M# y9 g% i( D$ u. ]2 OIn 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. 5 W! R8 B% [& M7 t+ v) E
What does this have an advantage?0 P+ A% T/ p5 |" K- Q
The editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself
; j) u% T' n* J6 A J: ] ~1 ]/ p! {* K- `- N s+ h, W, b
' J3 F) \+ P4 L' Q! G( i. PFirst you need to get open source even know how you do it, is left with you, andyou do the project on the Neuz.2 X# ~% O7 ]2 B% G; Q
+ `, h5 w7 C" c" ]) U+ S
Then search for the following content in HwOption.cpp
2 V s S: b1 q; \( q* y/ R( H+ V( o8 ~6 d" a0 ]
: Y( k$ H( k8 X0 }( [
if (scan.Token == _T ("ip"))
1 l" n* X* \' M& v, Y3 ^4 H{ L2 X" E. d: O; }/ K: A7 ~" w
scan.GetTokenEx ();, A4 z( B5 c' w( Y3 a
strcpy (m_IPAddress scan.Token);
3 |6 F' T2 f6 p/ ]- m( _. K& `}
4 q$ M6 `9 L: z! M# Yand turn it into this:
* C; u1 ]/ W4 z B8 p" @Quote:* A, T W% w6 `1 `" e
if (scan.Token == _T ("ip"))
5 t! \! N* x/ x7 Y" y1 M% g{
9 X/ N6 h9 {9 k5 Q% _/ / Scan.GetTokenEx ();
5 x& i+ f$ s! L: l/ / Strcpy (m_IPAddress, scan.Token);. V; h7 k( [3 K1 u
}
) S2 C& \$ W& J& sAnd you created the solution.
/ I* z/ u( x4 f9 O, L% l
8 t- Y- a- Z4 E' v9 b8 R% O8 u" ?" `- Q% ^
Then read the Neuz not the IP from the INI anymore. even if put in it( j8 D& }+ \4 q- L e, U( C3 W
' V: |! j) b" T$ a3 Y Max skill's
5 O( ~* G2 ~# D8 T3 b" Q" z9 j
! _9 @: R' f7 D5 |/ @# d3 }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 0 j! w3 P" @0 r) @: I, \+ f$ E
1 T& E3 j O5 t5 Z: Z& R0 PWith the TUT can provide the remedy it& u- P$ H) g; z- ~5 Q) `8 M- J
3 J1 R7 C6 D0 ?( }! X
# 1 opens the file SkillInfluence.h$ Q6 x% L- G/ N" l1 [6 X* \: l
# 2 Search3 L8 Y% o$ j1 V5 q- c1 J: K) t: V
Code:- c5 X& {5 h. _0 J3 |! O# _/ X S
; H% K2 T% R x$ a4 q2 H) k- s
# Define MAX_SKILLBUFF_COUNT 14
+ ]2 w# I* E( M5 f; L4 ~ c$ ^& Z
# 3 Change the 14 to your number (eg 21) and save it from
9 `0 U4 u& i$ C# 4 compilation and ready# c# O3 t" Y/ A) i% w1 [8 ^$ }( R8 r; F
$ u" H8 O) ? y2 b) {0 Z4 Y: Y5 P( Y0 m6 m/ f
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:& L* u9 C+ N* R7 b6 a
( G% Y. P: h3 d# P. N3 `
dennisdra6 F# \. e# h: O/ ?
.Crasy+ ]8 {4 z' Z0 l. T
©ross9 J, C- Z! m# ]6 J
Sedrika
0 o: h1 G, |/ m9 a; f- ?, G9 ?% s
' Q# X/ R9 [6 W8 W6 E9 Ceverything 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! - _; x, z$ L; t$ h2 j, p
+ {% p2 c; I+ o5 U, r, c1 t3 A
P.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less
9 M8 X& a _& B, `) n
$ y7 {# p7 I9 \6 A7 j; q
1 q- v" j3 R3 q3 AUpdate 1:
how to turn off "Profiler" in worldserver.exe
: u/ Q6 P6 B$ T3 l( Z( ~9 N( f
3 Y1 ]1 b3 ?, [$ M( B& ]' z' z- [, C/ L
in VersionCommon.h of Worldserver Solution. `, Z7 H/ ]3 `8 v5 W
Look for/ @: E& h# K- Z
( W1 R; B7 X8 u#define __PROFILE_RUN. J3 D [' M) r' x
A$ \! G) k# s# L8 Qcomment it or simply! p. e* M: w& r0 \1 M1 S/ A
# a! ]" T3 I: q; U% Q& V1 k//#define __PROFILE_RUN # }' j+ b6 P' J# q
) t, m; ?/ b. j- g6 `! A" B
; w7 E# V8 D5 S! ^7 q5 x2 [8 Rcredits 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投寄。谢谢。我添加更多的很快如果你有病加太
$ b2 r& f. H& i' a, C |