|
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
6 v: |% a- Q8 y& }* p, q% ]3 mchange level without Rebirth
) a. y5 K: r; A. ^& W% u; D+ K% k* Z5 \
Now, let us begin.1 v' U) I( D: }; D+ J/ X, P s" R
2 s2 }% f) E5 t3 e" Q: v
Requirements:; L; I- r3 W1 _+ ^
Source
0 S. p1 H, x$ ~: MNotepad / Editor
1 h3 H+ C' i) g- s! Y* j% l$ Z
$ T V- T: a+ `, w6 V) m/ }/ / Tips by Sedrika; n7 e y/ T+ D" \" h$ P% ]- e
/ C9 M( {2 n, w/ N( NIt is up to you how you do it ^ ^
; s8 m h7 F# E A: B$ o/ Q8 m7 n/ a) P- v: y
Go into your source folder and open the definejob.h4 k- _1 l' u6 t7 D
Search there for:
. c! R4 W1 @/ n1 G
" o0 v' d1 S$ d1 H#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå0 U1 f) z5 X( ]# L! k/ `' L
#define MAX_LEGEND_LEVEL 129% ?( {2 j8 T4 X9 Z m2 Z
#define MAX_MONSTER_LEVEL 1603 Q& `3 ^/ M: O& w0 j
#else // 15Â÷ è÷¾î·Î ·1o§è®àå
. ^& f' b7 _$ t* B4 ^: ]! v#define MAX_LEGEND_LEVEL 121
0 ~5 t7 m" r3 E% P# G+ Z#endif // 15Â÷ è÷¾î·Î ·1o§è®àå : [9 j" _& m$ Y& G; v; k
) i& k) i3 ]+ h4 A% J7 \ H$ R" x
Red: Player Max. Level) Z6 K& `, W+ ?% m
Green: Monster Max. Level; v- B4 D, Q& l7 q) Q
7 |! Z/ S0 z: b8 XThese changes as simple as you want.0 H0 i' q4 K; o2 @ \. }2 k* d- f3 N
& q) [+ Q6 n* I9 p. eThen you have to just recompile the World Server Files + and make your clientin the Definejob.h the same changes as in the source.! r: ~$ W' t) S
3 h( K" [ ?6 m8 ~
Part 1 of blocking CE
* d/ c5 N* C2 \5 \1 L" }( M" P4 [$ Z
In this tutorial I will show you how to change the Head of Mark flyff.
0 [* @8 X" j4 D" g, D) N LThe current Head Mark is well known, 5E, which results as a string ('^').: Z: }; [4 u r8 x1 @$ Q+ J
6 f3 K( b1 t9 D0 E1 l, QFor this we go to the World (Project) and looking at the Buffer.h after thistext
! O9 M, N* a! `* k" q/ m- o* aQuote:
2 ?. Z U, N, V* r- I9 X# Define HEADER MARK '^' / / Normal messageheader) a1 r: l9 e! C$ x
# Define SYSHEADERMARK '%' / / System message header
. S. m( l1 o, M# V! d/ GWhat the Sysheadmark is looking for is not even the top 5E.
! A y4 h9 l# H+ H SChange this and it makes the CE Not work on server.
; G/ \; O" \) R! }* ]* }0 ~1 i+ M! k7 u& ~" U+ u9 y3 q
Then Tom's anti-hack is no longer useful.- L" L! s' J1 L
( h* K/ X. r4 u3 y; m2 ~$ F h4 }
LG Sedrika
Part 2 of blocking CE # h# s! Z9 t: y1 h( s
& b: y' |; P- Q2 f; h1 ]- f3 m
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.
% ?5 \+ A- [+ I9 z! L$ |1 {What does this have an advantage?9 v' m+ W6 Q/ Z, |& w$ k1 W$ O/ f
The editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself
5 r3 m6 T* u% X% V% t* x b0 j2 e/ c0 N+ K6 |6 L+ v6 K) p9 t7 A
p$ @0 s( Z7 g0 ] A$ s1 tFirst you need to get open source even know how you do it, is left with you, andyou do the project on the Neuz.
) f% Y+ D7 [' X# b, r/ \8 Z
$ F9 Y1 J4 P/ N+ g1 ^9 L: uThen search for the following content in HwOption.cpp
& g0 }. v2 p! o! L& f
: `. e% s* p% b7 V! N, k# Y, f% }( K l& b* H$ ^+ `( O" `2 R
if (scan.Token == _T ("ip"))
+ W, G. r! y' S' V* y+ J5 x+ c{6 `! @0 e9 q( Q7 t0 f% K
scan.GetTokenEx ();
$ n9 }7 ~; k& r5 k$ _; V3 h7 {strcpy (m_IPAddress scan.Token);! A2 h* ~# v* _0 O" n( A$ I! _) Q
}
: q/ K X3 \" W* Iand turn it into this:
% B& e+ x3 B+ FQuote:
& d# x7 C' A, Lif (scan.Token == _T ("ip"))
m( L+ d. j Y b; {{( \' U9 @7 F! Y5 q1 R7 S+ ^/ @
/ / Scan.GetTokenEx ();
j6 }3 [; j% W$ K" e. f P5 f. u* `/ / Strcpy (m_IPAddress, scan.Token);7 A' L3 F- i! B# y- D! S* }4 F
}/ d5 y' b- ~2 M7 g0 J( k8 F
And you created the solution.9 ?4 u4 @/ `( y6 U' N' ~' @
: g5 }8 b5 A6 z. N
. a9 ^% M5 q4 d( Y; ?- \( vThen read the Neuz not the IP from the INI anymore. even if put in it
9 v7 }8 W) h8 Z, @- x5 S' L5 P- t* ^# T! @3 }7 l0 ^
Max skill's * B7 X+ S( J; v1 ~- I
$ i" F# @: n' J' WAll know that, 14 Max buffs, you get all the RM Assist Skills + Skills fromBuffpang and no more space for the YJ, Knight, Ranger etc
; Y* D5 v: ?9 ?0 M; J* |; N
7 z4 m" Y$ x. D8 k) N' PWith the TUT can provide the remedy it
. L& b5 G( K5 q* A# R
8 n- q+ L: u0 s" \* x% C# 1 opens the file SkillInfluence.h
0 d* |* H% T, X6 ^9 ~% b7 O3 u6 U# 2 Search
* V" }6 q5 [3 F) M: TCode:
& h# i. ?& i) A8 M; X# d4 \) }
# Define MAX_SKILLBUFF_COUNT 14& M' k/ [7 [& M& z5 X- u5 W W
$ D* J# b& U! I# 3 Change the 14 to your number (eg 21) and save it from
- e! K0 @8 G0 ]9 s) [5 d9 D8 A# 4 compilation and ready0 S* c3 ?4 T5 m8 |0 E4 z# r6 w
" Z( C- `0 M S8 N2 Y/ b
; F* r& M4 _* F( yI 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:
{$ a0 d' [) @8 F! n! {. Z# b. E8 w7 ?+ e/ a, S
dennisdra
' I' r9 {0 q5 I, u3 R.Crasy" j- |' ?; F% A6 T/ h- K
©ross
& K O% t- s) g9 m- vSedrika
3 L( C3 ?! _% n. P9 B/ S; K! B$ ]; S) j! D, Y6 h; h" c
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! 0 _8 u- p: z& Z# N3 `
$ K# d; p! Y7 }( M6 V/ B. H
P.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less" w3 a/ J2 ^$ k1 [/ Z) Q* b
- u& C" D0 N8 l& \6 z9 @
8 Q8 Z. ?. C, @2 S: ~. ]Update 1: how to turn off "Profiler" in worldserver.exe ' H; \" q- ~8 x: H, a
# {5 {+ M( h; K8 n1 r, K. b0 a4 r" }/ f+ k2 L m; M2 R1 z
in VersionCommon.h of Worldserver Solution
5 ^3 p* O$ ^! c8 ALook for
- p/ @% d. @) A+ f& P" D; m. Y0 h0 M7 Q1 w/ W
#define __PROFILE_RUN( L8 `" ~" D5 f7 s3 O1 v3 N
' q0 G" n' u6 E9 v% A" y6 o6 bcomment it or simply) W* I- o; K, K/ O" z3 |) j
' r# R6 w, M9 Q; T8 j9 A3 o4 t& M//#define __PROFILE_RUN
% u! u9 P! f! ]1 D/ H! B# z; U% ^; t- D5 V
, U7 x& a& L; {- Lcredits 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投寄。谢谢。我添加更多的很快如果你有病加太 0 \/ @7 I' @( D( B; Q9 U
|