|
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! G* ]5 N+ {6 s: E& j. Nchange level without Rebirth* s8 z3 h& @, o) D7 y' y
+ }; y6 j, c" ~, j0 l [1 u7 tNow, let us begin.
; W. ]6 F+ e6 q
( W) L# \$ }: q+ y: D& JRequirements:' G* V0 J6 K/ D. l" T" {
Source! E8 S& @; X2 v3 e, m1 ?& f0 Y* r, L* {
Notepad / Editor
& f3 K2 ^8 E$ v5 S$ g4 }' q
: H, E: w s! \: [. i' T/ / Tips by Sedrika1 y2 ]6 ] {! A
/ D- ^( N, P. |2 O. z3 jIt is up to you how you do it ^ ^( _. e# ~7 A8 P2 V
2 g! s2 Q" v& M5 ^& U$ L$ e8 RGo into your source folder and open the definejob.h
% b( J: e6 C& d' GSearch there for:
3 A; O, X: }2 {# G6 E+ Q4 R) U6 v' X) W& B
#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå* L: `7 X* k c/ D5 U& b8 g i
#define MAX_LEGEND_LEVEL 129# ?' e! y5 Y5 l# a* @4 a- m4 ]
#define MAX_MONSTER_LEVEL 160
# Z+ p3 [1 Z& g0 M0 d#else // 15Â÷ è÷¾î·Î ·1o§è®àå. t; F0 Q G* p7 h/ X, `' X0 l8 L0 w
#define MAX_LEGEND_LEVEL 121
% q# z1 k: H, n V5 l/ |#endif // 15Â÷ è÷¾î·Î ·1o§è®àå
: F0 C! V! k, Y6 h
! C* B: i$ _# ?0 }* {% R
8 R$ {: o: m- J3 A# M5 {8 s; bRed: Player Max. Level; Y5 x$ ~- n* x5 j2 w4 }( l
Green: Monster Max. Level+ q, G! I' e& R/ f0 E+ E
! U) l' s2 P6 }$ K
These changes as simple as you want.; d& J; u% q5 V+ o0 n4 [
* j) j/ Y, J# }8 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.) z. z, M' h% z' D* p1 p! z" v
+ z" z! K/ g5 f4 B/ }
Part 1 of blocking CE 8 I. v) z% ~0 M" m7 w
2 i" R- g7 ?5 m# Z) KIn this tutorial I will show you how to change the Head of Mark flyff.' {3 Z( n" d7 j# T. G! J' D
The current Head Mark is well known, 5E, which results as a string ('^').
/ |9 `- n/ n' F8 @6 M: D1 D
$ f! B- g1 N) _. x3 i6 \For this we go to the World (Project) and looking at the Buffer.h after thistext
) C0 E, V1 @8 i# KQuote:
. K3 }7 q2 ?8 h9 B/ x# Define HEADER MARK '^' / / Normal messageheader
7 ^1 q: K9 Y- b8 B/ J# Define SYSHEADERMARK '%' / / System message header( [0 c5 `# C# C9 Y1 V7 ~9 Q9 h3 G
What the Sysheadmark is looking for is not even the top 5E.2 s/ }2 s/ ?; x& p) f
Change this and it makes the CE Not work on server.3 h/ \- J% @ Z# x1 {
9 T" w0 r! \& N+ e: s. M
Then Tom's anti-hack is no longer useful.
- g( u! C- j" H2 o6 d' t
6 N0 \; s( B: f; a( bLG Sedrika Part 2 of blocking CE
# C0 q' h$ Z# w6 G4 D
0 ?) i3 M7 Y; c* k% ^( o- D( S1 xIn 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. 8 T Q: t/ C, h( c6 K* \
What does this have an advantage?1 R. f: c9 W* h, u% }9 m
The editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself
2 a( Y5 ?! p" k6 E- j% X* k' T0 q+ ?' N
1 r3 M9 H* Q7 Q0 I# Y1 q' L
First you need to get open source even know how you do it, is left with you, andyou do the project on the Neuz.1 j; d# I+ y3 X7 A' L2 m
/ f5 w" ]: A/ OThen search for the following content in HwOption.cpp
; E0 t) x1 N$ x* X& U8 ~0 H: i$ E8 u8 N6 Q2 M# t
. F; {! M* U% `+ p8 e4 U5 `8 ^
if (scan.Token == _T ("ip")). W9 L& ?2 V; ], d+ s- u1 K
{7 E6 w3 f5 S6 B; l3 y: E% l
scan.GetTokenEx ();2 t# ]3 I) H/ O- \: D1 V3 h
strcpy (m_IPAddress scan.Token);% z+ w- K1 N2 B/ z& P
}; e) Z2 `4 c/ I! I* t! R
and turn it into this:* i1 _# u4 v+ T& \" n. \8 s/ l3 F& H
Quote:% S; l# V w% x( ^. F4 e
if (scan.Token == _T ("ip"))
) y4 x D6 B& K# |{, J) k5 g! P. g0 q0 o" I0 v
/ / Scan.GetTokenEx ();
" x! A) J" j) `% W* _, a/ / Strcpy (m_IPAddress, scan.Token);0 H9 x1 G9 a2 l6 u/ P" |- Z
}
, o) s1 [+ _( j+ gAnd you created the solution.
; i, R8 O8 n8 C- Z7 s5 r, u# J$ [5 g4 w
( R6 d) g! a w. G0 \
Then read the Neuz not the IP from the INI anymore. even if put in it3 F1 t9 f* q# a% h4 d$ Y
' z5 `, ^. X7 l; Z$ v
Max skill's
9 Z' ^+ U$ t; T
, `0 E, P% H4 S" ]8 EAll know that, 14 Max buffs, you get all the RM Assist Skills + Skills fromBuffpang and no more space for the YJ, Knight, Ranger etc
1 z# F$ a; _4 _6 Q5 ^
- ]) o* u! b* P" dWith the TUT can provide the remedy it
5 U2 @- e m5 q7 M( m( i/ P6 F4 S1 e$ }( |* d
# 1 opens the file SkillInfluence.h0 s$ Z# {7 q2 V# s
# 2 Search
1 s5 Y8 a4 I) s3 z* J3 pCode:
1 L6 f+ W5 w4 g' o) m; a4 ^( h; S7 ]3 T7 |! i9 K. I/ `
# Define MAX_SKILLBUFF_COUNT 14. l1 [" F3 W4 z4 ?
$ u$ H, _8 l* F) W: \) ~0 |8 q7 _" z/ U& N# 3 Change the 14 to your number (eg 21) and save it from8 `) o5 W4 m" Q
# 4 compilation and ready
3 n5 X5 O1 x" l B. t% @& a
/ e! x' ?3 b, B4 J2 M* Y" S* g0 M) z- }" d! j" W
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:7 m4 L8 G. d/ W' d' |0 B- y
# x% r- |& C9 m" ^( Ldennisdra+ n5 ^, a1 I. m2 d7 q6 x7 V
.Crasy
- E6 j# t/ a' V7 {$ V©ross
3 H/ o- g* M( T8 G! gSedrika
" l: m! u# A: N6 \! _6 T( v* h3 \4 M2 |9 H& \* A7 m
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! * t8 F) I4 N' B# b4 F8 W0 g
$ c/ m* q9 D5 d8 ?P.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less7 F( }& i. N% V5 U6 }3 m
, N$ g2 K7 r2 s$ ^ y: O0 q0 q! ^$ R4 C/ h. L
Update 1:
how to turn off "Profiler" in worldserver.exe
, N8 ?$ e9 v& M; P
% J) q$ w$ G X! H% q/ r" b- }2 C8 {
! |5 ?2 p( Y! O' f- k2 Win VersionCommon.h of Worldserver Solution& [5 W! v4 O+ q. P% C4 ]* U0 v
Look for
5 `2 i' B# |% l% | ^
7 U/ b; z: g8 k/ n#define __PROFILE_RUN
+ F7 k5 V+ E% C/ Z n( @3 ~. `6 v+ u* i% g6 W8 p0 v1 i% U
comment it or simply
1 f9 p `& o/ B$ A$ V( n' P3 r! V4 r( H
//#define __PROFILE_RUN
! a+ E/ W3 b L0 |. p, l# \0 }
7 i' J& z; |% `2 ^% }7 ~" b# R; Y2 c' S
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投寄。谢谢。我添加更多的很快如果你有病加太
, [5 w( T: g5 |0 s# o* M |