|
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+ W6 p- j2 r$ L3 }
change level without Rebirth
* p! q: B# r* F4 [6 @6 i
" u8 |$ W2 _1 ]; J9 u! [Now, let us begin.! }/ Z2 _* ~4 _$ j/ o; A& W \. ?
' h5 B f* |5 e! P- V" qRequirements:
, W; H5 s0 x( V/ n) s3 hSource
& R8 Y1 ?4 @# \% f" a* `Notepad / Editor
+ n" s6 N" Y# g# \" D) n# r7 {; J( e) P" u
/ / Tips by Sedrika
/ e" w) B$ _# M1 g. V, K4 u
; Q( r- z: t4 S8 tIt is up to you how you do it ^ ^
) j9 x7 I8 _$ G! t! M/ R& s
4 o3 Q: w0 B% X, U" ]# f. v$ j0 _Go into your source folder and open the definejob.h
: e( L. U, }8 iSearch there for:
+ o; ?! p4 c7 q3 e: f
! ^4 J% a& w* @/ f#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå. N9 B" ]' V: V1 r$ a, K1 S
#define MAX_LEGEND_LEVEL 129
D: ]2 q n7 q+ V1 Y- s#define MAX_MONSTER_LEVEL 1600 F4 \7 ^# q/ q! }
#else // 15Â÷ è÷¾î·Î ·1o§è®àå
$ b/ V. C) s7 D#define MAX_LEGEND_LEVEL 121
# A. M; X9 g+ V8 ]/ ]/ d#endif // 15Â÷ è÷¾î·Î ·1o§è®àå % j: k- ~6 [$ i) ^9 `
4 n* o9 q$ L* Q
7 P; e5 E: `' W$ H/ d/ m7 s$ HRed: Player Max. Level
, X9 E: J! _1 x/ r6 Q* _4 yGreen: Monster Max. Level
& V/ g, p! [: B' q' @6 a& q Q$ h B7 ^3 J0 R: |& F6 A* _" M! K2 n
These changes as simple as you want.
2 b3 n- a9 x2 ?: I2 }' j% {* M
0 W3 E! e% M0 UThen you have to just recompile the World Server Files + and make your clientin the Definejob.h the same changes as in the source.% ^5 Y5 D3 |+ ]6 F+ L- }$ |
' n; h9 L" R% f5 S+ y# y Part 1 of blocking CE 9 `- v0 n$ Z$ K; A7 S3 t( w
, i d2 T0 D% L% X
In this tutorial I will show you how to change the Head of Mark flyff.5 F3 G1 T) R3 H$ c
The current Head Mark is well known, 5E, which results as a string ('^').
1 ]; n) m' w* I+ i0 M( b& E" E; n3 i" S ]
For this we go to the World (Project) and looking at the Buffer.h after thistext) l2 l- ] |! R, ^: \
Quote:
8 W! }4 s3 J' E# Define HEADER MARK '^' / / Normal messageheader( Q6 M K: r# }% Q: r$ J( Z3 F
# Define SYSHEADERMARK '%' / / System message header \8 \: r3 F# I; C9 t' y& k- r A
What the Sysheadmark is looking for is not even the top 5E.* x: {) l" ^+ y% S4 x' F" }
Change this and it makes the CE Not work on server.
$ c: i7 U; w, ]* n' S6 z+ L" S0 ~* O5 [
: `& s0 v g L4 p6 w" _Then Tom's anti-hack is no longer useful.
: Q9 `8 @5 u# p: Z* D- V8 B }& I7 v8 Q. X: |" q
LG Sedrika Part 2 of blocking CE
; P. M" p4 r% l* i' z D+ S! [! t" V9 e- X( F2 b8 ?
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. ; I; s6 ~' T; U3 D( I) M j% ~
What does this have an advantage?- I: F" S) j* I3 B
The editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself . e+ N. m( e, k# a/ I. \
& a2 ^/ f3 V: G0 x- N# M9 E" [
2 B4 P7 q* o4 ~; D a V: u! _$ pFirst you need to get open source even know how you do it, is left with you, andyou do the project on the Neuz.0 M' B4 }( x# e9 h2 X
+ k7 G+ Q7 c* E& ~6 \9 H) [Then search for the following content in HwOption.cpp 1 j' ^* ~, _' w. K7 }# `
7 C- q, r0 H* `! r3 N* J
5 z. z0 k$ _, x' b- R/ Y$ B$ Wif (scan.Token == _T ("ip"))
! n2 }; Y6 P9 d" a$ o3 e2 C* i{' k4 I2 @4 Y6 u. _
scan.GetTokenEx ();1 e9 L: u! T, p, Y* v- C1 k2 R- Y
strcpy (m_IPAddress scan.Token);5 \# Q1 J7 v0 b$ m. `- W' l# A
}2 F& w* \; g* z+ l% Y; {2 A
and turn it into this:
( e) I4 S6 ^( VQuote:" x! r- ]3 M5 ]6 t, \! a* l
if (scan.Token == _T ("ip"))
3 J6 f- u+ F5 e- |% k$ A! T{
4 I5 ]; {- {! X# S" ?/ / Scan.GetTokenEx ();$ M2 L+ n7 s O% m W
/ / Strcpy (m_IPAddress, scan.Token);" D4 i+ B' e" E
}
7 E B& ?4 ?; ^+ z5 {- x+ ?; jAnd you created the solution.- M& D7 t* I' y8 M" b8 n) z
/ x* a0 X/ z# |2 q: q1 J! {, h
; t1 f* [* R9 S1 NThen read the Neuz not the IP from the INI anymore. even if put in it, l4 p/ K: N. c% [' I8 K
. Y: \$ l& L( {' u% }" u" M
Max skill's
, f4 G3 H+ o/ D! k% H o" x' D2 ?$ m* W! }& S; t
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 % ~7 x @/ a' d! ^
3 V) k* U& B7 h0 |$ X0 v) V
With the TUT can provide the remedy it( \. ]6 {. B8 I1 e! h
4 N J. |) v; N( U0 v5 c
# 1 opens the file SkillInfluence.h
# F% L/ H" n- a, }7 S" W' w# 2 Search0 K( `3 s( V6 W7 l9 t ~
Code:
$ Z. |7 ]$ ` D. E S3 u' A
2 L' N: V' K1 y3 j# L+ E3 L6 e# Define MAX_SKILLBUFF_COUNT 145 d* ~. Z/ x- P% }' T
4 U1 S. @& r N0 W7 m J
# 3 Change the 14 to your number (eg 21) and save it from
& G9 C; s6 E, x* W" ]# 4 compilation and ready' i& M$ W% H* V; r, l' A0 c
$ o& Z- O! l& [% F# G' f+ B
7 f; U8 s4 F* \# OI 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:
; U& o0 ^; E- m: R' ^' u
4 k, h n+ n, q( Ndennisdra& h3 T3 D; p8 Q2 w4 r p
.Crasy, S6 `6 n% _5 g3 G8 b& M% B
©ross8 c# Y! S7 d2 I
Sedrika
8 d+ D; ?/ R+ F1 Q& t- y! V @! y h, C& G( F
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!
- h4 W( _( a8 x/ L! w5 V& g
' C, D. I+ Q$ V( s9 k4 l$ sP.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less
. z y1 q, s& G8 Y/ P5 t- B5 P: u6 y9 D3 H
/ x7 u- m [& u z# b7 ^) K# a) Q
Update 1:
how to turn off "Profiler" in worldserver.exe
2 j4 l+ w) C2 z" y4 c3 A( g5 J7 _* V7 z# C0 x6 E' q
* _- t8 A& J$ j5 H8 K: [: W
in VersionCommon.h of Worldserver Solution
% ?* b# z6 H G6 B! dLook for7 ]3 v4 \ g+ c k7 `7 t+ p
; R7 }/ {4 @6 e$ n+ s* Y2 U
#define __PROFILE_RUN
% o/ x- L% N( S8 M
: R8 R4 D! O1 g6 J, Vcomment it or simply
, c8 y; P& l# Y( I; P, D3 e" L0 h, i; f; {0 m
//#define __PROFILE_RUN
9 S2 b/ f: `7 x$ x. U; R {' H9 ~) z
3 O+ D" H) D O7 k# k" ^/ E
/ G# k# k+ K" s, W' J' jcredits 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 {: W7 l+ T5 T |