|
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 k% o5 \& Q& Z# A2 Q
change level without Rebirth
8 s, Y8 s! R* {2 w2 Q; j) a2 a% b: r" W
Now, let us begin.
: O& |: v: f l, u) f$ B% i9 X$ S$ ~0 |9 L! T
Requirements:0 F) {- b" K8 S6 ~6 {- w# {
Source* @( k/ P) L$ p, V5 b
Notepad / Editor
N2 {1 E4 T7 p5 \; l( j/ p7 i' J0 S S: ]$ j& \4 S
/ / Tips by Sedrika- v; r; r1 ^' W+ L% E* C' {( k
5 Y. [7 O y$ D- k
It is up to you how you do it ^ ^
, b: \# ^6 G8 w$ I5 s* N
+ G, M* N* M* d; qGo into your source folder and open the definejob.h$ U. p: Q$ o3 D) g5 T- D, G
Search there for:5 M2 y! e( Q# w
' [; @/ Q6 \2 `/ t1 K0 x6 o: G
#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå9 [6 s/ K. f( J! e
#define MAX_LEGEND_LEVEL 129
5 N. h& ~* @7 S% E; ]#define MAX_MONSTER_LEVEL 160
% X9 B1 C; G- v1 [: c: d5 O#else // 15Â÷ è÷¾î·Î ·1o§è®àå
3 ]/ V/ p: W* f5 e+ J#define MAX_LEGEND_LEVEL 1214 H2 e7 o! F' n3 \7 |7 E' L
#endif // 15Â÷ è÷¾î·Î ·1o§è®àå
/ A/ B9 g, X# @; o0 ^& M) \& y* `' P i4 Y0 ^
0 o+ U9 p2 \, E* q& u
Red: Player Max. Level
* ^" x) m0 a% F, S0 \( fGreen: Monster Max. Level
" Y- ^( p2 J/ F5 @$ |: W$ w# s) i" h; q
5 P. h) p# U& C4 `3 L9 mThese changes as simple as you want.
' S K/ N, c5 w* ^ o5 P& I+ N9 k* d7 i- C& _+ l
Then you have to just recompile the World Server Files + and make your clientin the Definejob.h the same changes as in the source.6 w7 {9 H7 y0 G$ H2 F1 c) V7 N
( O1 O7 L7 P( q Part 1 of blocking CE - Z4 M4 s$ t7 m5 I0 `
, j" l( d: V* u M/ u1 [2 o9 }, A" [In this tutorial I will show you how to change the Head of Mark flyff.
) a# Y$ [$ Z8 p& ]" t8 hThe current Head Mark is well known, 5E, which results as a string ('^').( Z ?$ |1 |# J4 k- ^& ~6 t) ]' F$ V
( e8 I: _0 @- M: H. f4 NFor this we go to the World (Project) and looking at the Buffer.h after thistext, H3 r. t5 {* `4 \6 S a! `- L
Quote:8 ]9 I% u3 p5 \, z2 j' }3 O0 d& i
# Define HEADER MARK '^' / / Normal messageheader
! l) c- }: y; g# Define SYSHEADERMARK '%' / / System message header
% h* V, _! _7 eWhat the Sysheadmark is looking for is not even the top 5E.) d4 r: d& ^3 ?( s2 `
Change this and it makes the CE Not work on server.
4 a/ @4 F" N7 T$ u1 j+ R+ c
) |# ` C7 H3 F, F& f Q% tThen Tom's anti-hack is no longer useful.
+ m1 o) Y9 _$ |/ X r. L7 t- b% u1 X# ?7 i+ m i
LG Sedrika Part 2 of blocking CE ! Q: c7 c) B! y! O
) f9 H2 h! _# u! _8 p( D
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. . @% a L+ h1 L0 b. K; ~
What does this have an advantage?( J- V" g$ V$ \8 k
The editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself ( Z+ a4 `6 `; o* X9 R3 K
/ S& J$ j* }) v. y
O- C* R9 y- c2 h l/ [5 F
First you need to get open source even know how you do it, is left with you, andyou do the project on the Neuz.
. s9 z8 G' y. P% `5 s
3 `6 z) v9 M. x) k. qThen search for the following content in HwOption.cpp % K6 G! K- G, ~6 C* I
2 T: U5 d) D* o# u' p
2 f- o+ p" o4 O) C9 u$ x/ `9 dif (scan.Token == _T ("ip"))5 m d$ [1 c+ C' `
{/ c+ e3 x X( P
scan.GetTokenEx ();
' ?% t1 j3 Z9 s; @' P0 Astrcpy (m_IPAddress scan.Token);
8 [' r% O- I% u, B0 x f}
6 m' z) n: ?6 d$ r, z$ R+ d) cand turn it into this:3 C3 O1 M3 H6 q) q. P5 J+ J! b* Q
Quote:
0 t: [( @- \3 ]9 ]( j3 g( H3 _if (scan.Token == _T ("ip"))
' u6 F) l( {: z% f4 x{
+ {, X; K1 @2 `1 l/ / Scan.GetTokenEx ();
* V5 s; P# R- O: ^8 g! w# k/ / Strcpy (m_IPAddress, scan.Token);: I/ |* g# K9 A4 N" D: ^
}
6 P8 j+ a6 X2 X* QAnd you created the solution.; M# i. f0 t1 w) _8 L- w
0 m# B! m9 u% k; u3 A6 K( W F- Z
+ O. [$ V6 S5 u3 V& HThen read the Neuz not the IP from the INI anymore. even if put in it9 ~4 n7 b- t9 [
9 U0 E3 l. k+ J6 W" j% [; [ Max skill's " T2 ]% R6 ^: F- w) S5 S* q
2 Q' L2 y' H! L# m% Q4 ~
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
+ S( [$ O$ Z; g z [8 z. Q* u s! D/ {3 S k
With the TUT can provide the remedy it
% n4 I. h4 R0 D5 p1 E4 U& S @+ o p8 _$ e/ D4 c
# 1 opens the file SkillInfluence.h7 _+ M4 x/ d; ^7 T! c! {0 {6 z( s
# 2 Search- j* M) S- ~( r) R. \' k
Code:
# d1 i4 `" i/ L% S+ F
, ^( ^# q) V7 e; B4 s* T/ e# Define MAX_SKILLBUFF_COUNT 148 v n( N( ?/ f: U9 @
: x* o- g. ^/ u" _# 3 Change the 14 to your number (eg 21) and save it from
7 k0 t0 d3 q- X$ X& h$ J# 4 compilation and ready" [! G4 O& A5 @: F% Z% G
+ I+ _, X9 ~3 y5 r i2 K3 [& ?2 p) G( o% T
5 b. N! O- g/ LI 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:
/ L! T: j/ ^0 b
. Z$ u+ K* L( ^5 N0 H* \dennisdra4 W' h" D' A- N3 J
.Crasy9 C- k* U M8 T. m
©ross4 N1 J, v% d1 T) i9 m5 T
Sedrika
/ N5 P% |& {, |5 S0 c! f
4 I# k+ @$ D+ ]: B. Jeverything 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! $ q7 l+ z/ ~! i" s2 c! @; v
1 o, |/ y) Y3 ~6 F7 Y7 b- A# Y
P.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less
t" _- G: l9 c" L. @$ O
* d. t7 R# v' r5 i# @0 a
; h" }; ^7 @; [3 Y5 t; JUpdate 1: how to turn off "Profiler" in worldserver.exe ' Z" Z5 p: O, A1 i4 y
1 i/ ?6 [ e U4 [
# ^/ j8 _# r' ]* q8 H3 y4 Y
in VersionCommon.h of Worldserver Solution
* w# V$ J) q$ z8 f8 XLook for j9 L1 Q! }3 D. J. z! G# U
7 h- M+ @8 u7 P7 P* L8 g$ }
#define __PROFILE_RUN7 b# F0 R8 L1 R# ?
0 R5 k) o4 E& G/ K! C
comment it or simply
- h5 c3 R2 Y- q, W0 G' |+ m- O
d- X4 m0 [( w ]//#define __PROFILE_RUN
6 r, h+ D0 a E( v8 _) ^& V
. }/ u0 g" c+ i1 Y' N) @( L4 `' K1 X9 B; U+ x0 v) ?" E3 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投寄。谢谢。我添加更多的很快如果你有病加太
+ I. I% V+ G6 `( C+ I6 ?. s/ U |