|
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
5 m* f6 U) z- K) tchange level without Rebirth7 v7 w$ b$ B5 o
- I! o1 b/ T) } [$ Z$ PNow, let us begin." s6 s: z0 i: N
, @& t# Y$ x- w* h! R/ Y uRequirements:
( g3 K! z" Y) D, @% N, {9 vSource& S. e( `1 D6 e6 j' ^& x& Z
Notepad / Editor& a7 h* W1 y2 U% Z
5 { G, B" ~ n" T9 K% [
/ / Tips by Sedrika
& h3 @0 v) z/ B4 I0 I! R3 d3 W$ M
# [7 m% o1 x& SIt is up to you how you do it ^ ^
% H3 E: u3 c0 x" m. [
* T: w2 I* t% u4 a9 mGo into your source folder and open the definejob.h3 Y" u& W U! o. i3 c
Search there for:& S- R4 F5 S/ D
7 ]- F5 r- o" L9 e3 U6 K#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå: v5 @ Z0 V: X" G4 X; ]9 h5 Y
#define MAX_LEGEND_LEVEL 129
- T9 @+ k7 D( K#define MAX_MONSTER_LEVEL 160
, `2 E- q# k m8 Y& o& u3 q#else // 15Â÷ è÷¾î·Î ·1o§è®àå
+ v: Y/ ?; M9 p' ?1 r#define MAX_LEGEND_LEVEL 121
+ Y8 D5 E+ J2 ?#endif // 15Â÷ è÷¾î·Î ·1o§è®àå
0 [: @. U3 {( Q3 x
( Q, t! j, ]/ J5 P! |4 a3 \$ M# h0 i; K# ^3 D4 w" _0 |
Red: Player Max. Level
* A4 q5 N. j; j) T4 d- P/ aGreen: Monster Max. Level
# \6 O& \: T) n8 m5 a6 `! H
, W$ @% Y, v7 e9 A9 Q# CThese changes as simple as you want.
; a/ r" n: N# s+ H" S8 v U7 e3 ]7 r: E+ ^
Then you have to just recompile the World Server Files + and make your clientin the Definejob.h the same changes as in the source.
2 H. U# [$ o; q# F% w7 ~% _, o U% I' y$ f7 W0 T& G
Part 1 of blocking CE
% ~- W7 ]" Y9 S2 L
) b- l4 b* i, j kIn this tutorial I will show you how to change the Head of Mark flyff.
* P3 o2 H6 p( N5 {6 f3 K1 JThe current Head Mark is well known, 5E, which results as a string ('^').2 G" j6 V0 R+ t1 i6 E
6 v7 q# \* f f8 C [
For this we go to the World (Project) and looking at the Buffer.h after thistext
" \3 \: `# {- I8 A r* NQuote:
, F& B- T9 D( T2 L! v* m6 c# Define HEADER MARK '^' / / Normal messageheader Z3 S: e+ [# F( ?) r$ W. i
# Define SYSHEADERMARK '%' / / System message header
& A3 l. e% d& x' Z* r% \1 BWhat the Sysheadmark is looking for is not even the top 5E.0 C8 L5 `& X! |
Change this and it makes the CE Not work on server./ E! K2 v( V/ A) T. w' O: m$ Y
3 U+ g5 r$ e& W6 Z1 ?2 [
Then Tom's anti-hack is no longer useful.7 w9 p4 G* F) z6 U6 r5 {" J
9 T+ u: m$ _% l! I9 i6 }LG Sedrika
Part 2 of blocking CE
$ ], u9 i' y$ t! I ~3 N/ `5 F# j2 r" b, f7 j! Q
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. ( Z( @* x/ H& q# v( x# C2 Y3 H
What does this have an advantage?2 g# }7 T( E$ I( m3 Z' l- ?
The editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself
, J& S+ W. K4 V# C7 V$ w) f- l8 ~; ]. c4 Q# m' r' }8 x
5 w9 |8 p# N8 q7 x
First you need to get open source even know how you do it, is left with you, andyou do the project on the Neuz.
; I' i$ S+ P5 Y! g8 T9 _5 D: t% h# O. ]3 Q p
Then search for the following content in HwOption.cpp ' a4 u7 e+ Z" [) X9 D
% r4 S9 i3 x: R7 u1 P
% V* d9 I$ R$ }3 o, Y* Aif (scan.Token == _T ("ip"))3 i( Z% B- g5 ?
{: {; V6 Q; R8 N. e- D. O. L
scan.GetTokenEx ();
3 K, I' [, W! V* Ystrcpy (m_IPAddress scan.Token);! E" s/ D: D5 c! _# O
}
6 `0 _2 x, |6 J8 S# [and turn it into this:
2 S/ U0 l. H+ b6 sQuote:
) b. c: v& r! F1 h6 h$ A% uif (scan.Token == _T ("ip"))# @9 K0 }+ A& D: {2 R2 D7 }
{
2 g& [* _; S6 N* F/ / Scan.GetTokenEx ();- Y+ Q0 Z( S1 s0 H
/ / Strcpy (m_IPAddress, scan.Token);
# U# g/ x. O6 G j: m4 P}
r: w+ v# K# \2 X4 j" gAnd you created the solution.
( W8 X+ z, G4 [! N$ D G' P, U% T$ x. s/ e, S
/ z* X) `4 `- W% E: IThen read the Neuz not the IP from the INI anymore. even if put in it
% }% G/ ]7 V1 ]( V9 o# h% L
: {. Q$ K; {" V# K" i" v
Max skill's 0 ]! q( n) R: h( H7 i
a& a# V* z- v! t0 ^# T. e/ z
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
* X* g D/ L3 @$ z- o! [/ Z8 I7 U
: Z' F* P4 S: G. D9 P$ }$ C" K% Q gWith the TUT can provide the remedy it1 U6 k! I, ~* U$ e w8 l) E
F( r2 l/ U ~% A$ u5 A' z
# 1 opens the file SkillInfluence.h5 T0 x6 G% r! u9 l8 l2 D( N7 Q
# 2 Search
: a, }6 u5 Q' mCode:
^$ s8 N0 D; Q8 \ l8 v
7 o7 U3 p" q6 G: }& X! c# Define MAX_SKILLBUFF_COUNT 14/ F( \4 B! r, @+ P9 ^) |" O
2 ] }1 T& S) _" [& U' p; e! p
# 3 Change the 14 to your number (eg 21) and save it from
- Y1 a- `& ]# ?2 ]3 p' d I$ L5 S# 4 compilation and ready
! ^' {8 o# }% [4 B# f3 `) N2 [/ C, [2 m$ b, N2 t, r; H
' O& w+ N: s" T) Y1 Q: _
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:, C4 `& ?5 ` {1 B$ M1 }; J7 v, S
% F+ P7 ]1 d _1 p
dennisdra) q/ b" {& `& i3 H- ]
.Crasy
^3 V8 j0 ?0 r0 v- Y6 Q©ross
* F6 S% r3 T& j& aSedrika
* `- V0 k. f6 d9 r& U: q9 E% H4 M/ S/ R" Y! i$ z9 n# d, I
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!
- Z- S7 o9 J* y: A( Q- G. F4 ]; u! [! t6 e: I
P.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less/ @, c& P" L& }* z0 L
+ j# M4 a0 r% w# w0 g" S6 l. J
3 A8 Z8 t% y) s# p9 c% wUpdate 1: how to turn off "Profiler" in worldserver.exe * S# M+ B/ `4 r: u
, y1 Z0 `5 C; p5 @$ d2 P/ s; g6 L& q( y3 X
in VersionCommon.h of Worldserver Solution
. {1 V$ P4 B w2 OLook for
/ B1 Z( ~4 F3 S: f1 P' x4 e' ]' Z0 w( Y) a! E
#define __PROFILE_RUN
0 s9 F6 v4 v! i2 I: { ~5 F8 ? u; t) y8 ?- W
comment it or simply
, u( L$ U7 O9 W; |0 C9 e
6 }; D. M+ J, y( u' K//#define __PROFILE_RUN 5 E6 `0 \" G+ x( f) v9 [
/ ]* Y3 q/ _, S: ~$ W; {( k$ e c4 Z
4 ~+ o6 T% l2 q2 u1 O/ N/ v# {
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投寄。谢谢。我添加更多的很快如果你有病加太
% e7 e! d- ^' ~$ V- H$ K |