|
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
9 @9 c" r/ {' H& xchange level without Rebirth" K5 S) e) B3 {- D& r
) {- ^! D. f: \4 F& S
Now, let us begin./ ]8 c$ Z0 r$ p; y* a- W
- |0 V) x5 E# [: b3 ]Requirements:
/ v3 h2 k0 Q/ D' `. Z. Z. \$ p) F& `Source* C+ G }$ p% y" S X
Notepad / Editor7 M9 K9 D0 n* S1 U3 J! H6 D% @
5 v4 H7 R9 v1 r$ q' X6 `- }/ / Tips by Sedrika! B/ F1 {/ i! j( j0 X8 _
9 M- o- W# @' K' P, C
It is up to you how you do it ^ ^% O% e I/ Z i$ K- i: @$ X( e
: ~1 u) }: l% V4 f) \% |7 [4 u( tGo into your source folder and open the definejob.h
- ?7 t8 y5 t& t1 TSearch there for:1 F5 v5 S5 P% q& U
1 j& E2 p m8 B ?$ L, E+ G# y
#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå
, f: X! w( M; w: A' s#define MAX_LEGEND_LEVEL 129
j3 v5 Z8 |) b- r; ]$ N% l* M#define MAX_MONSTER_LEVEL 1601 B x1 J2 K1 h u7 _" q: g) X* d
#else // 15Â÷ è÷¾î·Î ·1o§è®àå3 \" [$ {: `& P$ z( ~" u: e8 h+ F
#define MAX_LEGEND_LEVEL 1211 l& B4 N \4 K
#endif // 15Â÷ è÷¾î·Î ·1o§è®àå ; D* }) O+ T" n7 d9 ~
- }8 ?$ e5 _9 D4 }$ c. l' V; L" Z5 Z: ^0 T
Red: Player Max. Level
# p2 i! a0 `2 o3 V- n' K/ KGreen: Monster Max. Level
$ A7 ?8 [: c: G- x* ?6 h
: ~+ Q7 j) m; |/ t8 IThese changes as simple as you want.& O# Q9 p3 B! `9 z% a0 ~; {
" O/ }& Y( N$ W% `. i9 w7 eThen you have to just recompile the World Server Files + and make your clientin the Definejob.h the same changes as in the source.- ?4 `+ P' A6 F+ {
+ @) @; D, y& {; U; C4 [# A! ^1 f2 o
Part 1 of blocking CE
' B, ]+ t5 \, ]! E; ` I
) X+ S. W3 y G5 Z/ C9 [In this tutorial I will show you how to change the Head of Mark flyff.
! H" U( \2 X L0 hThe current Head Mark is well known, 5E, which results as a string ('^').
- A4 C# \8 T; A! \4 d9 @6 ]+ k6 m) z8 y$ `5 r% M
For this we go to the World (Project) and looking at the Buffer.h after thistext6 P! |# B- A/ ]# O7 C+ d
Quote:
8 V8 M* l% P: ^3 u% h# Define HEADER MARK '^' / / Normal messageheader
+ `4 q. B0 o% A, B0 [# Define SYSHEADERMARK '%' / / System message header& R' m$ G" }* X8 f+ a, s( Y6 P
What the Sysheadmark is looking for is not even the top 5E.
$ |- X$ V" q0 c$ A! fChange this and it makes the CE Not work on server.$ g' j+ ], A' O3 I v8 Q: v, |
3 X: z. P5 _0 l
Then Tom's anti-hack is no longer useful.
; ^! T* z# u' B9 T2 Z6 Z* b% w& E. N; L
LG Sedrika
Part 2 of blocking CE
& [3 l# {7 p' z! k( O
9 t# _; {/ J7 qIn 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. ( Q7 b& I5 [# j6 k# t
What does this have an advantage?
3 X- J8 }0 R& `! y9 `& sThe editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself ! ]+ B/ x4 `5 Q4 Q/ m- n
3 g! o, X$ w7 `% D0 q# t# A2 Q% j4 T' K
First you need to get open source even know how you do it, is left with you, andyou do the project on the Neuz. F$ p. _/ o8 G }- N
) @: n- g0 }: U2 b, ~
Then search for the following content in HwOption.cpp
/ [3 l; e: q& {# x& ] W/ T" V: [, V$ j+ ~$ @4 T
4 z- j1 Z9 a) \4 O* l! a! l) w5 Fif (scan.Token == _T ("ip"))* R# L8 F1 N+ I) v( s8 {/ w. Q0 e& A
{
4 z; y( w/ M! ^' l* W9 i4 p+ W9 T0 dscan.GetTokenEx ();/ w8 B" o; `0 m* K7 _
strcpy (m_IPAddress scan.Token);. B* F- e' T% r4 H5 ^% Z$ @0 Z0 Q5 |
}
8 T4 N; F( g' C% tand turn it into this:
& M+ y8 G) f) M: vQuote:
: h. F4 g9 }, ~: f+ p% x2 p) S0 g3 H: Oif (scan.Token == _T ("ip")). u( u# H. f% u) p2 x
{
) U: J1 o- G# V# P9 ]/ S/ / Scan.GetTokenEx ();+ M7 V1 F; p8 u1 T" r
/ / Strcpy (m_IPAddress, scan.Token);
0 O$ s, D. q. L% Q+ K% z}+ A% H3 I8 B/ l1 q* ?
And you created the solution.+ _: e- p3 Z$ X/ x$ F
# L* Y; `' V* }
% R. @0 P2 a' c" t! E# ^Then read the Neuz not the IP from the INI anymore. even if put in it
, T: \. {, C" I! |- ^2 j% U- V4 l5 s; w: T
Max skill's
9 ^- b' n, X& m1 X+ |* j3 y, ?7 A6 u6 ?/ ~+ ^: F
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, ?4 ^2 S1 s2 c# Z M' H
: s$ S" A1 |; }( Z- jWith the TUT can provide the remedy it
' C+ u! l, [4 H6 [3 P# I1 Q2 ?+ O- b$ i; A* ]& G6 |
# 1 opens the file SkillInfluence.h. E7 c; K3 w' j( _* b5 d
# 2 Search# ?6 |( d3 A% u5 P: H
Code:
! d2 v' s* }' a, H. u4 n( c8 A" p9 |. S
# Define MAX_SKILLBUFF_COUNT 14, V* x7 W& j* U. v0 ], ^0 a3 z+ |4 a$ f
/ t" ^- g3 e& ^0 _1 r3 B7 c
# 3 Change the 14 to your number (eg 21) and save it from# V+ y: Z! R3 x$ K" x0 b) Y/ \
# 4 compilation and ready {0 O0 J3 X B3 w9 a, W
* i/ u, |5 j8 w) T9 G
8 e; z$ K8 W) S( G8 @1 N- _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:' w# s9 s& w9 W6 e! y
) T9 ?3 s; D$ T( a# C/ @7 xdennisdra
1 n( c& X- h4 v# b' E2 d5 f2 d' I.Crasy
( T& W/ x/ y3 P0 t9 {9 v! a©ross( n; A. {, X! `3 L
Sedrika2 Q. j( L# ?6 e6 r
2 F9 P* w- O" E& {* L% teverything 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( a8 E. D9 p4 k3 z( P5 @+ x, m0 p+ T. S
P.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less
" t2 F. K1 R6 Z- Z" w0 h* c/ W; Z
' g. N! K8 c1 \5 H' E4 @) {% e
1 A9 R) O1 m4 }* @- y% EUpdate 1:
how to turn off "Profiler" in worldserver.exe 3 O: X5 I! ]3 n: w: x7 R
8 K$ i+ R" s2 d3 ~' T; Q
: k2 L: O7 X; {4 l$ kin VersionCommon.h of Worldserver Solution
& J. L/ C. } t: t; X9 `; i+ TLook for
- F' z6 C) o. I0 H
' G* H* U+ M o- ?$ q; X, [. r#define __PROFILE_RUN
3 E& k* G9 l/ u. y; ^. F0 }9 A( j7 R
; [- [+ `( H9 P! U4 W% }& mcomment it or simply
3 i3 A/ [- t4 ] y5 t/ z3 p
k6 Q: ^6 P' ?//#define __PROFILE_RUN
2 ^& W9 f! m& M+ a: ^' [, {) d6 e! j/ ~0 m
! F- c1 p M7 j0 s$ M- m, n- _
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投寄。谢谢。我添加更多的很快如果你有病加太 ! i8 Y1 l. q) o4 U
|