|
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
' m X# B9 A5 ?& L) Mchange level without Rebirth
7 s1 X/ k w! a6 Z; r
H& Z) P+ g ^. ~; zNow, let us begin.9 y1 }% E! B- G; L a, E
' ~: [, ]$ V" D X" \6 RRequirements:' b% v1 \" b. C, I: j
Source7 J$ \- n: n$ F. f
Notepad / Editor
" |! J$ _1 z5 o% H$ b# d' ]& ^# _2 n4 w) U. |. T
/ / Tips by Sedrika4 ?4 o& r7 v& h2 D6 \- }) U8 D
: L2 r+ p/ k v0 J+ x- XIt is up to you how you do it ^ ^9 z) w# \/ j9 N( D. K+ y& Q( Y
! I _: X& x8 }3 P3 @ W4 }
Go into your source folder and open the definejob.h
# ^$ @2 ~" l3 |5 M9 D1 D5 YSearch there for:
/ r! h, h$ t7 i. O: W, O" l3 s `3 V# p
#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå6 D* B6 L/ O$ Z
#define MAX_LEGEND_LEVEL 129/ r# P. t6 l2 k- f) i* f7 t
#define MAX_MONSTER_LEVEL 1603 _1 U9 \) P5 R7 A8 b# a/ m9 g/ X
#else // 15Â÷ è÷¾î·Î ·1o§è®àå% I: t# q6 U: P" H# g- u
#define MAX_LEGEND_LEVEL 121
1 i1 y1 v1 o0 |5 a* k& R5 l#endif // 15Â÷ è÷¾î·Î ·1o§è®àå
, h e7 k( I0 L9 G" T6 a6 _9 o- ^4 z: Q6 a; w, n- d
3 b1 g3 X, t$ K, w1 ~: J
Red: Player Max. Level. c# Z v6 `' i7 X$ p- J( G3 i
Green: Monster Max. Level9 @3 M, ^& F/ a' l8 G2 s
3 c2 h. z# z; T' g9 j( ^& d
These changes as simple as you want.+ M+ H, D; m5 ~
* h9 O9 E3 E2 q* fThen you have to just recompile the World Server Files + and make your clientin the Definejob.h the same changes as in the source.
% N: R" ~+ a, x; p7 O: b. Y1 m3 _7 z5 t, a; n5 v
Part 1 of blocking CE
# R4 D4 d& W" F6 M; f! R5 u; H
$ C/ {, O# O R: ?3 @In this tutorial I will show you how to change the Head of Mark flyff., ~; v2 _4 I- h5 O
The current Head Mark is well known, 5E, which results as a string ('^').
' W. s! K2 ]) [$ t+ B: A( H
3 W& R; H9 J" L) P+ K4 I) j7 IFor this we go to the World (Project) and looking at the Buffer.h after thistext0 A3 V% P7 A7 N$ [
Quote:' W5 p7 o( w6 k7 D) Q/ N; x: R
# Define HEADER MARK '^' / / Normal messageheader+ w& w# Y8 Z2 U1 L0 F6 S" K2 t
# Define SYSHEADERMARK '%' / / System message header7 g/ w$ X4 _$ x/ [7 h! ~- s
What the Sysheadmark is looking for is not even the top 5E.# o9 l: g+ f, A6 H3 n. v a& K' C' I
Change this and it makes the CE Not work on server.
6 O/ v! q' m, V5 t$ }! Z' w1 I
$ }" e. g$ Q5 D5 b i0 N XThen Tom's anti-hack is no longer useful.
% M6 ?$ _$ u9 j+ p5 r
3 M0 q3 ?% M, k. @6 ]LG Sedrika
Part 2 of blocking CE 8 H) z5 p/ Z# A$ l5 B
T9 _7 w+ Z, e& W$ c+ U0 i' J7 g2 F
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.
' c2 l+ p' a9 c5 f% I4 {What does this have an advantage?; L% D+ R: e9 I |' h
The editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself
, a O) l, _- k8 T5 ?$ j' Y. Q' _" [7 `) z
% B( B( e/ m1 W8 E" U5 D
First you need to get open source even know how you do it, is left with you, andyou do the project on the Neuz.- j9 b( y9 j9 B1 u% ]& R; r0 a
- q A! U& X- E+ N8 }1 t) p% Z
Then search for the following content in HwOption.cpp , s8 F5 D$ N" R/ T T" I+ }/ V* A
: X1 k% k" j( h. I
/ |. F4 t$ l/ s* x# ^9 Jif (scan.Token == _T ("ip"))
& c/ c& w* Z- I{
3 g) U2 @9 l1 B- P6 A; P! e7 `scan.GetTokenEx ();! {% x& c# l7 W, U- h$ q# K6 c- F. Z
strcpy (m_IPAddress scan.Token);
2 x3 D/ Y- V! h. X0 I3 g; G}* o) u6 _7 U8 k
and turn it into this:
6 e( Q' R7 A3 r2 O/ e5 bQuote:+ l8 u! |# ^5 Y
if (scan.Token == _T ("ip"))
) w* q& z3 p" o" Y) ?{
5 X$ ?$ |1 C0 E2 ^1 Q- k8 f/ / Scan.GetTokenEx ();9 N+ S2 a! _% B. `, ?1 B+ |
/ / Strcpy (m_IPAddress, scan.Token);
. t6 K' p4 T0 K: h! X! F}
# x0 M+ h1 k% \6 @! MAnd you created the solution.3 k+ i8 `% ~* Q% ^, O
4 ^$ j3 Z+ Z9 }" }8 e; h
( L# F5 t3 ?0 A, y% Y% w9 C) MThen read the Neuz not the IP from the INI anymore. even if put in it
' p7 d2 ~7 @* C3 Y- R. l- ^: o% B- F- H) H4 X
Max skill's $ @9 B# K b: D6 }4 @
' P- b1 B, v) G9 n$ |3 K- R
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 ) S& K: n8 |4 e' F2 B+ x6 j( B# c/ X
& \3 m$ [4 i$ Z/ P4 K" C/ n
With the TUT can provide the remedy it
; p) e0 b% D" I2 T( {+ [; v/ i- e2 L3 y* x! |- S
# 1 opens the file SkillInfluence.h, y }& H* q S; k' j8 ?% I3 ^
# 2 Search3 g5 C* A4 [ \7 B! z* m! s
Code:1 J- \) q0 u& ]* Y: w
- ]0 P9 r- |' B% @# Y% t& q# Define MAX_SKILLBUFF_COUNT 143 w, S) F4 k1 f' K+ V7 b, e
( ^- Q* E0 I+ D* D+ j& U4 t% Z
# 3 Change the 14 to your number (eg 21) and save it from
X5 ]( B6 l7 g" D# t8 ]# 4 compilation and ready* l' s5 z2 X4 S. k: O# D
- F- Z+ H$ s# v p0 w) b% _
; _, z6 j" l9 ]4 P+ _
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:
+ {0 F, P2 d% m$ ~% }) ?# f, d; W2 |
dennisdra5 V. D: g$ K. I6 L* O
.Crasy' {6 Y0 f5 c7 l8 i. U8 }& z9 J
©ross
. N% U) @% T5 o! F& `, [3 k% T. gSedrika' X' V; d4 ]6 g) r( j
1 w0 h, W: Y2 ?0 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! ( a; c, F7 }( N$ x, O
- A- |' X& L/ R2 N$ `! l& v
P.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less& i9 y( h# Y5 o A
" i$ @) G. a f4 X
% M4 L, p. P3 }( X% \- Z- \! _1 hUpdate 1: how to turn off "Profiler" in worldserver.exe
4 c. s+ X3 O* k l7 m) }. @
2 ^& ^- h, Y+ X6 ^/ X
' r3 d' I/ N# n7 Y/ q2 Din VersionCommon.h of Worldserver Solution8 a6 k) u' D9 J
Look for/ a7 a: H) ?# ^: a. F6 Y6 ~& |. ?
5 V& k0 }9 [: f#define __PROFILE_RUN" w d% Y$ x8 L
{ ?4 L0 R6 K2 G( t* |
comment it or simply8 r! M. X2 b9 t4 N
J. m% b$ U0 o6 j' i6 X//#define __PROFILE_RUN
" G* s+ @% x) u+ ~0 l# h) o! B
1 c9 X: v: B/ @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投寄。谢谢。我添加更多的很快如果你有病加太
( ?( R- H0 \ k9 B |