|
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
, V7 W$ w. i; B9 J( ychange level without Rebirth
& C: F* m- F$ a& C8 P, s" @6 m5 [$ x* p) ~! p* E; h0 J
Now, let us begin.' m9 m: T) u \7 q6 ^9 G0 N$ q
- d" h& S Y. B, n0 z j- Y
Requirements:
6 D3 k5 q' H. s6 v" i oSource
" w; |+ k0 k% c3 I3 ?Notepad / Editor
- R9 o9 l% I7 J6 S) L( n
+ X4 n. i/ p5 p6 z+ e5 K/ / Tips by Sedrika) C4 I" B. Z* @$ O1 ?
( c3 d/ p6 U; Y# UIt is up to you how you do it ^ ^5 e7 m2 T4 X+ {; @% `" R
6 M% [9 z, ^6 z& K3 F+ dGo into your source folder and open the definejob.h
; s* d5 ?" ?4 J7 D! c+ ` W0 NSearch there for:
: w; Z; ~! U" D1 E; a+ c! b! N7 E; G; a) ^: A% z1 }( q
#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå- @% p6 B b+ R: y$ V1 w
#define MAX_LEGEND_LEVEL 129
4 |7 _+ _. M( a. ^7 M* n#define MAX_MONSTER_LEVEL 160
) R ?, J3 m9 x$ ?1 I! e#else // 15Â÷ è÷¾î·Î ·1o§è®àå D3 m) }, q0 ~% O9 K: R3 y
#define MAX_LEGEND_LEVEL 121
' \+ A% h+ ]- i, a#endif // 15Â÷ è÷¾î·Î ·1o§è®àå
+ n v) m4 A8 G. k4 G4 }$ f+ H# |1 o* R+ i9 v- M
- c+ x3 F+ ^' s' `8 F( i8 nRed: Player Max. Level
$ ^) l% S' ~9 i+ rGreen: Monster Max. Level2 a; i8 Z% O/ [/ l5 m
% \0 N# _. v; l* [2 F8 @These changes as simple as you want.
2 O1 p7 @7 X3 C/ U( v% u1 _0 [0 X( P0 D0 g) |
Then you have to just recompile the World Server Files + and make your clientin the Definejob.h the same changes as in the source.$ A0 p4 ^( L* X( ]
; ^2 c1 ?7 V: [3 l% h4 r9 D
Part 1 of blocking CE
1 p+ y9 e" S! T( g
! U4 X. G+ g) J3 R( @2 ], I# y1 {In this tutorial I will show you how to change the Head of Mark flyff.$ P( u4 v2 V: a) L! \5 f: q
The current Head Mark is well known, 5E, which results as a string ('^').
. P0 X& Q n$ I
& ] Z! L3 A8 R# y9 F7 S" I: cFor this we go to the World (Project) and looking at the Buffer.h after thistext
A6 N7 l1 H- F6 g6 [ lQuote:( k+ c: y7 ?/ U" L7 T. B
# Define HEADER MARK '^' / / Normal messageheader
. @' v# e, W0 j; H7 k& X0 m' X# Define SYSHEADERMARK '%' / / System message header/ [! a/ e/ G5 s' C* c$ ~
What the Sysheadmark is looking for is not even the top 5E.
' g8 }! B, \8 V9 ]0 qChange this and it makes the CE Not work on server.! R: n/ U+ a8 j
2 e( O1 j, k- H5 v* K4 t: S8 U
Then Tom's anti-hack is no longer useful.1 P0 T- N' N9 \& r4 O0 ?# U6 `9 W7 G
5 V- L6 |! G0 ]$ ULG Sedrika
Part 2 of blocking CE
! I( M. f2 H) `4 [1 }
4 h. J/ A# G, y' e3 ]1 P" gIn 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. $ x" X) E# t( e/ w* N1 g
What does this have an advantage?& i/ g: Y: W' l4 Y
The editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself " N6 A/ S8 j3 ?0 u H1 V
. c9 f7 r5 k* x4 e2 C2 b+ _
5 t4 D4 h; s- p/ o0 T! \/ t% t0 z( o1 `First you need to get open source even know how you do it, is left with you, andyou do the project on the Neuz.* [: S2 ~ j' A' ]) `
& `4 t* x; ^) Y5 q S7 H" ?0 W
Then search for the following content in HwOption.cpp ?/ [$ y0 s+ ~9 K: _
- S) v R9 v% Y7 J# `% ^
" K- z x: T9 g/ Q, z% kif (scan.Token == _T ("ip"))+ r9 n u# M( I$ h, A8 [
{
K* H @* q; L& T: [9 Vscan.GetTokenEx ();2 }3 U3 v" c, w( ]8 L7 l5 G
strcpy (m_IPAddress scan.Token);1 j' s" d' `5 @1 ?; @
}2 r) [0 F9 I9 p
and turn it into this:
/ u ?2 u& X J4 fQuote:
0 y+ j8 T& J0 s! Lif (scan.Token == _T ("ip"))( s' [9 [% p& ?
{
8 w$ \! V3 l; T% J% q/ / Scan.GetTokenEx ();
& `! b1 U$ `$ B b) G/ / Strcpy (m_IPAddress, scan.Token);
& F& o# |7 U* _+ t/ O}5 `3 x4 N' t1 \: C& w* b
And you created the solution.
7 ]7 r# P. O+ ?. F5 d2 _ E* H+ ` I) V
4 H6 z/ }. F5 ^! H- y* O
Then read the Neuz not the IP from the INI anymore. even if put in it
5 U1 q/ l! |& \& o( v
( n4 Q$ ]' M P* p
Max skill's
4 ~7 K( p2 d+ x: g( W
9 D4 u# m1 }* V XAll know that, 14 Max buffs, you get all the RM Assist Skills + Skills fromBuffpang and no more space for the YJ, Knight, Ranger etc
3 L( F1 o. q2 W1 k3 G
0 a9 E$ M0 P: V% yWith the TUT can provide the remedy it; ^9 C, P) }% Q+ H: ?% f
' T, C( b# o2 u5 }: t# 1 opens the file SkillInfluence.h% s2 y h8 P$ V* Q" k, a! I+ ]$ z4 ~
# 2 Search
; [, \" V8 a& e$ }: H" Q" Y5 nCode:, x. a% ?3 r; B2 k, D, j/ Q0 b
e* ]+ X& x* m' D& ~5 ?$ b5 }# Define MAX_SKILLBUFF_COUNT 14( k) u3 h+ N9 u, Z i8 z
. C) w/ F0 c, V3 l/ X' w7 ]$ c# 3 Change the 14 to your number (eg 21) and save it from
9 z6 j+ B# k& l/ T" o8 [$ \# 4 compilation and ready" ~' F+ n6 X! \6 M0 ^: z6 }
4 U/ _2 F X! B- H/ @; p$ M2 ]& U1 O& U5 H3 i
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:# y2 f$ d {2 e
! o. S; i5 Y6 b4 r6 X( Cdennisdra+ u# b. s4 P4 W4 ^$ u
.Crasy
! M, L+ M# `9 G& H' B©ross, U, }8 l" n5 @" N* h% Q
Sedrika9 o4 P% T) V+ s$ \9 m& y& N7 } g
# J/ p% T/ i* b% @* C+ T5 Q. j& y
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!
7 x/ `1 p' b' R. ~# l6 ~6 w+ g, g( F& [) L" M1 A3 Q$ J
P.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less
. }& O4 h5 S" ^3 z4 Z* U- q* b0 X Q. |1 G8 q% b3 _
! A8 h, Y: {$ x% ]+ G! i
Update 1:
how to turn off "Profiler" in worldserver.exe
! N3 p# f- z2 g3 `: e) }6 o! y, b/ R- g
9 l+ W# V; H4 p$ B+ j% H' D+ K
in VersionCommon.h of Worldserver Solution1 |; o! a/ A0 n2 S1 |! q' E7 i9 A; E
Look for
4 ?0 E3 v8 a: D1 d; |( J% K0 e0 m' z8 t. |
#define __PROFILE_RUN
( c7 f; W' a8 o% O0 A, b% S Q7 y$ I0 O9 ^' {
comment it or simply
/ J& K1 D4 d* k, ?6 E, e7 M$ }* l
* G! C- X& k( _/ F' C6 A9 [# q3 u- ^: O//#define __PROFILE_RUN
3 z2 h" Z" b* @+ }; M/ Y6 D! Z1 p3 x3 ]
+ b, d4 c4 k% c7 b/ \- q& c
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投寄。谢谢。我添加更多的很快如果你有病加太
/ y) x7 a9 o8 T% Y |