|
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 ) t: T. _, I& D/ y1 q* L
change level without Rebirth
% H9 y4 X1 y7 ]" M7 p$ f! M+ s! p+ {7 K" }+ P
Now, let us begin.
$ A! k4 A+ \! I) K* c5 X
4 U/ ?0 R( H8 ]8 f1 H9 C& pRequirements:
) }/ `7 U+ F+ JSource
. F* W* S) H4 Y# ]Notepad / Editor
, k% Q" o2 G0 p8 A; w
+ E y5 ~. Z! Y$ F0 n4 L. `/ / Tips by Sedrika0 H6 }9 r: s/ G }
5 @3 U) k9 r$ A0 o6 B7 a. Z
It is up to you how you do it ^ ^4 _1 ?, M* j k0 `
" G8 w0 \8 r3 E5 x( \/ A; @Go into your source folder and open the definejob.h
- e4 |& Z# C) C. d/ p" |Search there for:
" }* U: |( l5 p0 ]+ R( d% N) F6 {1 A0 U, T$ Y# w5 w
#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå+ o& I. x& n; M; k* t
#define MAX_LEGEND_LEVEL 129
- t) e/ y0 y% `# k#define MAX_MONSTER_LEVEL 160
& G a* W6 l' D3 \/ W#else // 15Â÷ è÷¾î·Î ·1o§è®àå" [, o) _. g+ w, b/ L! v8 _
#define MAX_LEGEND_LEVEL 121* }+ y* L3 g# c2 X7 _0 P( E
#endif // 15Â÷ è÷¾î·Î ·1o§è®àå
$ Z7 [4 p1 {4 Q3 I- {. V5 P9 h G8 f* C0 @: q! L/ p
6 T" \$ u; B% _. _6 }% h8 y- r8 t
Red: Player Max. Level+ ?4 t# k+ `% t) V7 L
Green: Monster Max. Level8 ^$ a! {% v G; R M# |, s
; E/ a! [+ C5 Y, u3 tThese changes as simple as you want.6 E0 u! x7 H7 K
7 Q: e0 w3 d0 Z' }$ e; I
Then you have to just recompile the World Server Files + and make your clientin the Definejob.h the same changes as in the source.: @* m: [. D' X" ]: K; d7 w; s
6 D- c' v( C) m1 x1 [3 u* d Part 1 of blocking CE 6 I) {5 D& ^" m4 R3 i% H
' V& U6 s: C* U: v4 b2 Z2 w/ d
In this tutorial I will show you how to change the Head of Mark flyff.2 V) o# ]. o8 P! H2 v/ m
The current Head Mark is well known, 5E, which results as a string ('^').
1 H3 x! R' x: Z) g$ V& @) K
4 ^( K* W! m. @For this we go to the World (Project) and looking at the Buffer.h after thistext* g$ w7 d- Q8 X4 a( ~3 c. ~5 O
Quote:
" c/ ?4 N9 J0 P9 h8 n/ ?# Define HEADER MARK '^' / / Normal messageheader
: W; o8 w' N) l' h/ A% b+ j/ v( [: y# Define SYSHEADERMARK '%' / / System message header
/ _1 a5 Q8 A; F; E* ^5 Z& G' H( iWhat the Sysheadmark is looking for is not even the top 5E.' H! N9 X* m0 S( z8 O4 N
Change this and it makes the CE Not work on server.
# S1 o% Y9 J# d( ?! ]+ P, v% w6 K. T$ v/ I' d+ y" ?2 P
Then Tom's anti-hack is no longer useful.
3 E* K: |4 `& x) z! Q+ D$ S) e. g, i! |
LG Sedrika Part 2 of blocking CE , _' s, \& l2 T: P+ E( z& K5 D! q
% {8 J+ }% @* A h! a' dIn 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.
- _/ y4 w& n: `% X* R: WWhat does this have an advantage?
' g5 v- |. y& E( hThe editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself : g# E; r* t* M
9 u1 B* _7 k1 h8 J8 v" i& O9 T/ t$ V
First you need to get open source even know how you do it, is left with you, andyou do the project on the Neuz.
8 Y. k, _+ X/ U3 D- ?1 |
8 M; w- m6 p- q O, X kThen search for the following content in HwOption.cpp 4 M1 x/ A" v. {4 _7 a% y" R/ I* ^
; B7 A9 A6 _0 j- e2 I- Z0 _7 s
5 N9 G: O ? x' h3 Nif (scan.Token == _T ("ip"))0 |' r8 j) N! G* t7 A5 O* u
{, e4 `/ P+ O! U, n. x3 y
scan.GetTokenEx ();
9 c/ `( w7 T" r& V$ Z1 Pstrcpy (m_IPAddress scan.Token);
I8 b+ P E% u% k7 [. Y}6 U) A. O- X. L4 ^# G7 g U! z6 m
and turn it into this:5 H. d1 o! P! x( g" c
Quote:
: U7 i! T6 |/ M' Bif (scan.Token == _T ("ip"))
$ ~$ V. P. R( c3 X5 m, L% U{
0 |2 F4 T6 @6 d$ R& ~4 ^! K) P/ / Scan.GetTokenEx ();# F# }. s. I" y! Q9 j( P2 \
/ / Strcpy (m_IPAddress, scan.Token);
9 d' `! B. T N; p/ L}
# K1 k* K- b/ W/ m( `And you created the solution.4 d: M- H! U0 R7 C
, K+ N/ N# h4 |( g' B( N% \ e! B7 _/ t p- g
Then read the Neuz not the IP from the INI anymore. even if put in it
3 R* { k$ v. N$ l. J2 S7 q4 P$ j' q" S
Max skill's 8 b( K$ r+ r* d8 C( v
' Y1 C- p9 w' Y8 n; Z1 ?7 b. v0 mAll know that, 14 Max buffs, you get all the RM Assist Skills + Skills fromBuffpang and no more space for the YJ, Knight, Ranger etc
& z* P8 R- I- B! w u+ [( h& X2 X& ]
4 e# y4 F' E/ ^! s, YWith the TUT can provide the remedy it4 ?8 u' \ a4 L6 v0 ?
7 @9 M! ]& \) O5 q; O% l6 q
# 1 opens the file SkillInfluence.h
8 h" j7 Q- ?* v/ R6 ^: S" a# 2 Search6 ?' r4 A, r; d2 g) p
Code:
9 L# Z L. L& g C0 J/ v2 r" H( p9 ~- U- e5 T! u
# Define MAX_SKILLBUFF_COUNT 14
" P) j) q6 U! R: G/ t5 W) N( l. \0 G9 f: f% L4 s
# 3 Change the 14 to your number (eg 21) and save it from
+ C& p$ Z5 o3 ]$ u5 k, v8 I# 4 compilation and ready) h6 ]0 B% X! A. U. `
) `0 t- K1 ~& m2 ?" r$ L, J
7 m. h1 L0 ^9 _0 |! y2 Q/ _- iI 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: O+ H8 ~7 k( k. L$ e& I% E
' q. ?+ I1 n( }& m5 ~
dennisdra
0 @/ }9 M* J: ?; H4 ~* u" S.Crasy8 c/ b: j7 _$ O) @2 x7 L
©ross
I% C. ?5 \/ ]: W9 SSedrika' U! H/ L3 h) S, K% K
2 m7 A3 w3 b- z* l/ k
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! ! L# V w6 S; A
: z0 s* W9 C: P2 s
P.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less* Y( q& O: Y/ X
' d( ]1 ~( P7 M, a4 K! G8 i2 M2 @" D
Update 1: how to turn off "Profiler" in worldserver.exe : p- r5 N0 q4 q- m# ~5 [
) J" t- z+ }9 s# w7 Q B. ]- X2 P! d$ C7 h
in VersionCommon.h of Worldserver Solution
# r* S4 }$ y, ~- l% \Look for0 d, K. x. z+ n! |) m
5 ]; S, Q7 E9 n3 O7 J1 B
#define __PROFILE_RUN. s7 R, g+ h% H
& r, e! d" f9 i
comment it or simply
, F% |* x. T4 G: }$ T
8 K! T" G* M) k% d1 y//#define __PROFILE_RUN
! Y) e- N% I/ G$ o- R1 _/ d6 d; z9 T. J& K* a4 M3 y- i
2 l3 W7 H& y, O4 }1 X) a/ e9 ocredits 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 `4 U# s# F( D4 ]" v |