|
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
- R6 _( W" H) n/ _2 ichange level without Rebirth6 f; e- L% k! ]2 J9 z! c8 q
3 U" i% D0 b6 G# P3 ?Now, let us begin.
( A8 N; @3 ~. B9 @# r) U+ |' Y$ a# K6 B3 r n6 c
Requirements:$ b+ e2 U, X; [. e% O9 M0 b
Source
9 H9 C G U9 V. i; n+ H( O/ v1 W0 u; ^Notepad / Editor. N( E- ~: D" z2 L
) k: S5 p% ^. }7 y6 s7 \6 K1 V8 z; b
/ / Tips by Sedrika0 a- O; u1 M8 g5 C: h6 P, Q
0 {6 Z7 P R6 K s) TIt is up to you how you do it ^ ^
1 P$ N- M" l r& `5 N# f8 O+ j. l; ^$ b6 `* r
Go into your source folder and open the definejob.h
4 P: A' o' ]0 K& V1 e M, xSearch there for:
2 H9 y) k* L- W; j* m- y3 f* A" S/ y$ F7 r
#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå, }. Q# f) @' C* b9 W; q, c# n
#define MAX_LEGEND_LEVEL 1294 B: v6 i1 y3 ]
#define MAX_MONSTER_LEVEL 1602 Z% {5 ^* U/ C& Y0 C6 C+ G% [; {
#else // 15Â÷ è÷¾î·Î ·1o§è®àå' ~- F- n! ~# N c/ t, @8 y
#define MAX_LEGEND_LEVEL 121
4 k8 d- U) f: T- g; }1 s& Q#endif // 15Â÷ è÷¾î·Î ·1o§è®àå . G1 Q+ `# Y! I9 A- l/ N6 ~
x$ i" I/ W6 s/ {4 M9 h9 U+ E8 I Q% l2 Y
Red: Player Max. Level9 i, i/ C3 \8 O8 W. C! m8 w: ?
Green: Monster Max. Level
* z! u7 ~* G6 t% }2 v
9 l, [3 b* W8 `" A \These changes as simple as you want.% T7 s) O4 E( C% X$ h$ q
8 \% C5 x. k; s9 P6 k0 i7 x
Then you have to just recompile the World Server Files + and make your clientin the Definejob.h the same changes as in the source.; c& \" |6 n+ l
) \: F4 V- o! w G
Part 1 of blocking CE 2 V. {2 _1 n6 P
8 ~: P# F2 [2 @6 Y8 Q3 fIn this tutorial I will show you how to change the Head of Mark flyff.
6 I% k0 z4 ?2 O o4 SThe current Head Mark is well known, 5E, which results as a string ('^').
7 D# \9 u) P4 } `+ e
# k# l, r/ B K2 M- B& zFor this we go to the World (Project) and looking at the Buffer.h after thistext5 ?! p1 B B7 X7 K
Quote:! [/ p+ X3 O8 D9 A I K7 ]( M6 s
# Define HEADER MARK '^' / / Normal messageheader+ Z1 n' ]9 Q6 n& B* Q/ b$ _2 S
# Define SYSHEADERMARK '%' / / System message header3 Y# J" W$ \# [5 o3 Q, x* \2 k
What the Sysheadmark is looking for is not even the top 5E.
8 z ]) r% J2 \, g# V2 kChange this and it makes the CE Not work on server.
y" [- H9 d- l" A) H+ I
|7 U3 ?, D1 H: I9 W. x3 Z0 kThen Tom's anti-hack is no longer useful.) U3 W2 V4 S+ v" b/ `) w
. L E7 E) C+ A6 R- N7 f, aLG Sedrika Part 2 of blocking CE K# F0 c) ~, l
( A, X2 |4 D7 H- s6 }5 c
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.
, [: S/ F# C/ Y0 _/ `What does this have an advantage?
$ L! }. ^5 |; x6 eThe editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself 6 [2 t+ n9 D* @5 p* q
- J' p) j: r8 _! m8 g$ V
1 ?" c1 {! j* D( y) w: |% VFirst you need to get open source even know how you do it, is left with you, andyou do the project on the Neuz.8 S2 D7 C/ }) B7 Q* b/ s
. x( x+ ~8 N% }3 p# s( {+ s8 o. y3 y& a
Then search for the following content in HwOption.cpp
; S0 f# q1 R, w8 n; r3 b. X9 N$ }( j4 e' M+ G& q
- d5 v, g% v, h. C7 @! d* [
if (scan.Token == _T ("ip"))
! W5 U' w2 ~# _7 v9 } X, w; y{
* _& i& e x5 Jscan.GetTokenEx ();
, q' u4 S) h+ u5 m4 f- ` o3 Ostrcpy (m_IPAddress scan.Token);1 J9 U0 @7 z( c' i5 k5 T
} }9 E. p7 \* ?# w1 h3 q2 |- O
and turn it into this:
) S' e. o" m L. e1 P* m* [$ m$ iQuote:) V2 d1 c4 O7 ?9 g. F2 T
if (scan.Token == _T ("ip"))
, r' @/ s! }; h% L- r{+ s. u: ?1 ?0 b( c. Y8 b# k
/ / Scan.GetTokenEx ();
' E8 A* n0 l M c/ / Strcpy (m_IPAddress, scan.Token);# m) ~' o0 R2 S" d: ^. O3 x& |% b
}
' B) o+ z h9 H: s0 g ~( gAnd you created the solution.
- E: d/ D w3 d8 [2 m
) z# d5 y" D: i4 h# O# f0 E Y+ y4 J6 ~7 Y
Then read the Neuz not the IP from the INI anymore. even if put in it
% V, }: P! k, j, N
+ _) H9 F/ s5 z9 u- @ Max skill's
3 u7 m. \8 X. ~! m7 A6 O9 \+ R8 e* n( C: `1 k% |
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
8 l* K0 M# A5 E2 C! N2 ?2 {5 x8 \9 u4 P# i3 b
With the TUT can provide the remedy it+ _4 K0 ~' {) @! y% N
: o r, i' D" b9 B
# 1 opens the file SkillInfluence.h& ^/ E( s0 m b% b+ _
# 2 Search
& [4 f) x) b1 k9 ]9 i% ]! HCode:, r) G" s! c2 }+ Z2 O+ k9 }: R
% e6 t! Q4 i+ X, Z" Z% v# Define MAX_SKILLBUFF_COUNT 14 U: a* @3 e. h# v5 |, }: H
6 h* M* T. }: ]3 r, r
# 3 Change the 14 to your number (eg 21) and save it from' L$ |& R Y0 l3 E* j+ r
# 4 compilation and ready
5 u9 X2 h6 b% T! i8 U
' c6 d; _: f8 Z; J9 {. m2 d+ l9 l: Y5 L+ ?
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:
$ j1 Y4 A! B2 V' q" z% B" a& h6 s0 \ Q1 Y8 w2 H; E! Y, w
dennisdra! M( R5 S1 f7 r0 N, K' U* Q
.Crasy
1 o0 W1 F7 t2 i) K©ross# t3 m' \0 C0 X6 s3 W9 I
Sedrika1 J, [+ S6 q0 K" d4 X. Y
8 i" [7 D) r5 f1 E! l8 veverything 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!
) j! N" d6 Y o5 e$ A& p, k" i N1 r- o6 S% v
P.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less: b& [/ c2 [. R& N, K" V; t# ^8 C$ t
0 a/ @" |. T5 W- j8 ^: t% X
7 \! \# Y9 g' h! S3 tUpdate 1:
how to turn off "Profiler" in worldserver.exe 2 ?* g% I9 O6 @( u% d7 f
% h' j v2 ^! Y5 L( k/ \" o. ~
9 V0 f& u& v& }' E& O" H2 e- q
in VersionCommon.h of Worldserver Solution
& m7 W& U4 t! _* h2 R4 ?1 m) q) GLook for
+ A( |; k# B6 M# D& g" l2 m. }. W% `# w4 l2 `7 Q- X0 H% } \! y6 {
#define __PROFILE_RUN3 V, v9 w7 o" J' n# I
h, g+ L( d4 _0 D, P. x+ c2 xcomment it or simply
2 y8 Y# p0 ? v1 a8 ]$ M& c8 X
" w& K! W: b1 }" y0 |//#define __PROFILE_RUN
) E/ r) s! f, G8 g2 Q( O' t$ i$ g7 u' K# `! D
, q" i, _, Y5 w* p
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投寄。谢谢。我添加更多的很快如果你有病加太
- }6 G6 O. f ^- P |