|
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 % n8 u- l1 w9 E2 |" @ V
change level without Rebirth7 S0 W2 L% M+ x% y3 F3 D
4 Z$ T( b A4 M y& c, |( S6 G0 ^Now, let us begin." u# p* o. F* h' p6 |
. X9 |4 p7 y( n; x) E
Requirements:
! K7 }: l3 P$ p f: ]/ u8 ]4 zSource
# J/ C5 i v1 \# O! oNotepad / Editor/ H# }' Y- T( }+ N1 a1 ^8 e
( x+ c# t. g% y
/ / Tips by Sedrika
4 L& c ]2 e3 ]+ G
$ P! ]9 y$ I" pIt is up to you how you do it ^ ^& Z, u( Y+ U8 _: o1 }& Y
3 M$ w& c! }% k) P- {' ]Go into your source folder and open the definejob.h
# S/ H* M! P8 r: A& Q* jSearch there for:1 {; V0 @7 |9 `- W9 Q
: C. }( O _1 k. r#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå9 P- J& l: X6 j( G2 n9 p5 \7 n9 ]
#define MAX_LEGEND_LEVEL 129
% c" |' B4 Q" Y5 e7 Z P0 z1 _#define MAX_MONSTER_LEVEL 160
0 Y( c* v( x" K0 x#else // 15Â÷ è÷¾î·Î ·1o§è®àå, u) \! o. i1 H q- f# [0 s8 I
#define MAX_LEGEND_LEVEL 121
5 l% v; g {# Z2 b; Q0 j$ X& I3 E! b#endif // 15Â÷ è÷¾î·Î ·1o§è®àå
) ]( n$ b' @: K3 C% P, E+ F. S$ M
3 E! J/ G) |5 J- l8 g! m* gRed: Player Max. Level" f9 u* T2 c( E
Green: Monster Max. Level' Z, I' B7 j$ q4 i- M: o
! ]" w6 G; q+ S" P; o6 UThese changes as simple as you want.
- x2 k4 A v T, h1 E3 A7 R2 w- l% ^9 A0 K# p/ U" e, D6 ^% B2 o6 _1 N3 ~
Then you have to just recompile the World Server Files + and make your clientin the Definejob.h the same changes as in the source.
) Z! e+ V* I( Q/ T
2 y8 V* ]3 B4 M1 F( x' N' e, `; L Part 1 of blocking CE 3 A8 l% D' ^/ Z2 f) ~
8 Y: d3 l5 w; Y7 H$ qIn this tutorial I will show you how to change the Head of Mark flyff.* H% H2 A" m0 e5 s8 F8 r5 T6 I
The current Head Mark is well known, 5E, which results as a string ('^').
. d2 m; {& I1 y( G
9 D+ `) A# k3 f) J3 xFor this we go to the World (Project) and looking at the Buffer.h after thistext
0 e$ C1 X' m0 L- UQuote:
1 r- M1 W) I/ S f) ]5 h# Define HEADER MARK '^' / / Normal messageheader0 |- c4 |. e2 j3 ` H) ~5 e
# Define SYSHEADERMARK '%' / / System message header! A1 Q6 T& D D0 d6 Y$ o7 j
What the Sysheadmark is looking for is not even the top 5E.4 ?6 S3 n7 j+ L" Q
Change this and it makes the CE Not work on server.( x" g E: H9 s+ z9 ^
; L" B. `, l& b- UThen Tom's anti-hack is no longer useful.+ Z: N/ ?& o: A& g
, M. ~: l5 Z# ]+ gLG Sedrika Part 2 of blocking CE & c! u1 v$ _% o2 t* S5 f
# X. r3 ~* x! U8 j9 V8 ]- I5 g, Z/ y
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.
. T* q- T: N% _* S% X* ]What does this have an advantage?
+ j) q4 d4 f" q) dThe editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself K, V# [" J: \6 e7 O; o8 V
% u! R+ z6 t. ?4 A6 k
. F: D) O& k- k2 bFirst you need to get open source even know how you do it, is left with you, andyou do the project on the Neuz.
: t2 ?% k# B4 Q: _# [3 R1 @+ h4 a+ T. i* y) a R
Then search for the following content in HwOption.cpp / g' P# z, Q U0 s1 M9 r$ w& L
8 A- Q! b; `8 w3 B6 X, @7 e r- k. @- G# n$ |& V& N+ w- H) z) w
if (scan.Token == _T ("ip"))
9 G- X) V! @( ]& [% n* W, s( Z{
. s4 V* [+ T8 T& P$ B2 pscan.GetTokenEx ();
$ N: A( d( l( o$ y) \% Nstrcpy (m_IPAddress scan.Token);; f8 C$ ^" x% ~1 R& {# I& k
}
# ^, }% j( e. e: Qand turn it into this:: Q% o7 s7 G9 m5 P5 W* ~
Quote:
' f) O! d `$ ?# K+ D& H$ A* C) ?8 [if (scan.Token == _T ("ip"))) L0 ~& V% N; |8 K* U3 R. w
{
! E f6 Q5 ~/ M, m/ / Scan.GetTokenEx ();
1 D/ Z" @' s6 z3 M2 W1 r/ / Strcpy (m_IPAddress, scan.Token);
) @, ~. h' C0 C' H' z! P1 K}
; }7 l9 b w) {5 N5 f1 AAnd you created the solution.3 M/ V Y! d/ m8 i
% Z6 D% a5 b% p# Q1 ?) v) @ C
# X) F, R0 V# w8 C: V" G
Then read the Neuz not the IP from the INI anymore. even if put in it; F1 V2 k" q& Q: g
1 v6 l8 U9 C% p. c, ] Max skill's 5 N R; C3 i$ s; H
0 [2 g( K& y. ?/ p) @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
) G) S7 j4 B i. c4 |4 W, R* E' ^ r# d2 ]1 T% o, ]" X
With the TUT can provide the remedy it
% |+ I$ }7 A" Q i0 L- I9 {5 }. H& m8 y* P% J- }7 z0 P0 K1 `
# 1 opens the file SkillInfluence.h
: |9 J3 |' d" e7 C+ c$ A# 2 Search. S' t7 _) j. U l
Code:
7 P' X( t* ?& h
' o, ^/ k7 U7 Y3 Z' D# Define MAX_SKILLBUFF_COUNT 143 G$ \3 W1 ?* s1 a4 a8 G0 [
* Q5 a. u/ V8 Y6 H# b
# 3 Change the 14 to your number (eg 21) and save it from9 L5 N/ T( O' c% V- \
# 4 compilation and ready
6 K- E& \: c. V
& n0 K9 n9 F0 d& f6 n2 D9 N$ Z% E! y6 M( y, Z3 o7 h$ O
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:
4 X1 A/ t0 O8 a) G: \
/ l' {; L8 l9 X! \& L _) b7 {dennisdra o. s( X: o. n& }' ]8 ^: b$ _
.Crasy5 S, [) c7 z! _. O) H( V- d% H
©ross5 }" P# k# Q. C) z
Sedrika. n( z- v5 o; d/ t6 D
6 S8 A4 R* J2 H6 w" M9 ]- Qeverything 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!
+ d5 _+ J" G& L+ f% t) ~
* g( q; R: v4 H) c! ~P.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less9 U+ o b. M, ?/ G& i3 C2 M
: x' a: y/ \5 y- D# g, W: r
$ y/ y# Q5 `+ }" U% z
Update 1: how to turn off "Profiler" in worldserver.exe " J* u1 N) U: q: f' ~% U- H* C& M L
/ [6 ^$ m; ~1 N# V/ t7 T6 u8 x8 J- E; D2 H* s( W" D8 v& [4 X
in VersionCommon.h of Worldserver Solution$ Z% k- Z0 j9 i9 E
Look for- o6 p* j7 q% j9 v" X' c
6 _3 i( e! u% D
#define __PROFILE_RUN/ s9 p, `1 ~' Z% n5 o
- j. N5 |- \. ~$ l. H* I/ Y& ycomment it or simply. y0 `* R3 d$ p8 b9 p0 j& k1 w; `
7 {/ K' U1 n; m! U//#define __PROFILE_RUN 9 ?& ^, `) [+ }- N
, X% C% {* U- s
( D- S; ?. G5 e' S' m @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投寄。谢谢。我添加更多的很快如果你有病加太 8 N5 q0 i/ @. Q9 |" T9 C, U0 x( S
|