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 v. n5 W1 h- p) I# h# q
change level without Rebirth
9 Y2 B+ ?5 f* h% r# I* ^1 z
: D0 f5 p x! g4 {* s/ N0 LNow, let us begin.6 Q. c# H" ]; P4 n: H& k9 a
% ]& ^6 B) H9 r7 N
Requirements:
' U- U2 E- V" K7 m2 `( _3 ~Source
: h# t) v& n; Y) wNotepad / Editor
. i2 I' S* p( e' B- k, A B2 D( E( g; U8 [ ]& K
/ / Tips by Sedrika
3 j4 t j9 c( N3 a5 S! q5 ^" I' u( [; S; j v7 ?3 y$ P; [/ F. g
It is up to you how you do it ^ ^
, L' _' J1 u6 _% [( ]+ C9 |
7 B. u- g9 F' A1 AGo into your source folder and open the definejob.h, N1 L( U2 O7 S* U; L
Search there for:
( p- ^, o, o' W% i
1 q6 L- ~ _, k#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå. n# J( u9 ]7 s h( D8 r
#define MAX_LEGEND_LEVEL 129% r1 g L0 t8 N- j
#define MAX_MONSTER_LEVEL 160. A3 K* n0 _/ \! q) b- y
#else // 15Â÷ è÷¾î·Î ·1o§è®àå
6 \" `6 L1 X0 a9 `0 t& L#define MAX_LEGEND_LEVEL 121( m; s) F+ c* Z8 r5 G+ O
#endif // 15Â÷ è÷¾î·Î ·1o§è®àå
5 v# ^. r( {! |( | g8 E; N+ N; F [
4 H! d% M2 Q/ H1 ?# I+ B5 Y' f* o
Red: Player Max. Level( Q$ [1 R' w1 A1 y9 S) B
Green: Monster Max. Level5 K* D& P. y* u
' S+ p7 K3 g) A+ p! U0 ~
These changes as simple as you want.) ^" h) N5 N1 \- {8 t2 f3 h
6 p% o6 T) C' B' a, Q
Then you have to just recompile the World Server Files + and make your clientin the Definejob.h the same changes as in the source.' ?: ~5 z5 [# ]) N; w
$ B, \ O8 w# B' @1 ^% I0 L/ c
Part 1 of blocking CE
5 P4 Q0 P, D* Z( X1 |6 @8 {. C1 v; k2 o; C0 G
In this tutorial I will show you how to change the Head of Mark flyff.
/ R( }/ w' T d! rThe current Head Mark is well known, 5E, which results as a string ('^').
7 ^1 f7 ^# u' U: R* A6 k$ W1 x2 I/ ?) A" l) K. }
For this we go to the World (Project) and looking at the Buffer.h after thistext5 V* P' e2 N3 _* W0 k4 e1 D7 |
Quote:2 V% {$ [4 C. L6 s
# Define HEADER MARK '^' / / Normal messageheader% V% X$ @& t9 g' H6 O9 I: O% h
# Define SYSHEADERMARK '%' / / System message header: ?# ?! x4 z$ T7 ]( P% d; t
What the Sysheadmark is looking for is not even the top 5E.1 n/ U/ X$ Q5 P0 x* `! Y! e+ b
Change this and it makes the CE Not work on server.3 h1 F- M# T9 F+ i& @
8 u! t* Q! E8 X
Then Tom's anti-hack is no longer useful.
! \5 u R8 w4 j3 c: d, Y2 C: q0 {5 ]; m7 f7 {( v9 n
LG Sedrika
Part 2 of blocking CE
( v6 c9 Y3 u3 |9 t" M! [: L
! z6 w8 H' _! Z/ AIn 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.
4 G. I8 Q' J; r" T3 L3 DWhat does this have an advantage?
3 ~1 i/ s* [# y9 XThe editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself
( b- L$ F- P. x$ ?$ Q6 c& k! h- ^0 s% z& K
9 h3 ?- b( |: t8 l7 p: q
First you need to get open source even know how you do it, is left with you, andyou do the project on the Neuz.
. b$ `6 q6 C; m p+ Q
7 ]. B+ i4 i* `2 p0 ?6 Z3 d& U4 MThen search for the following content in HwOption.cpp % V" {3 B7 K6 }. V' n B8 P
' n: D: J& w7 ^( W' S5 w V$ Q0 g% _& U. v4 F6 r
if (scan.Token == _T ("ip"))
# _8 o% r& A" [- d- K/ R{
% ?* J. E9 ~5 Y' G% d$ Rscan.GetTokenEx ();
9 u2 A5 m# L' p; [% ^2 L- vstrcpy (m_IPAddress scan.Token);
. m; H' m) x5 t3 y}
5 A& R# l& w* K l& z! f5 Aand turn it into this:
7 \ e; W. L& R' D$ _$ N! h" m1 ]3 gQuote:) S" A1 p; i; ?" V4 G, @5 P
if (scan.Token == _T ("ip"))- h% f6 Z5 ~6 w8 h; t
{
) C0 a: E$ m& y) ~) z# w3 ?* ~' M* q" G/ / Scan.GetTokenEx ();1 o3 h( k* x# p) w' |& E
/ / Strcpy (m_IPAddress, scan.Token);
9 V# J9 T/ @" ^. W5 P}& o& P5 ^0 ?( m
And you created the solution.& k2 d" O) W$ f, ^
$ @ P0 J! x) ]6 B, e
2 _1 m' j E2 q9 I; \! S. G0 v, \
Then read the Neuz not the IP from the INI anymore. even if put in it
/ ], E, M1 I5 E0 j2 i+ N
9 a7 F1 s' j$ ~4 k) r5 {5 Q
Max skill's # X. v% Q: d! Y2 `& x
& b- o3 B$ z5 i3 ~ DAll know that, 14 Max buffs, you get all the RM Assist Skills + Skills fromBuffpang and no more space for the YJ, Knight, Ranger etc
4 G1 E: D; c2 f6 p" W4 H1 j/ _9 n* ^7 |2 }
With the TUT can provide the remedy it
4 L9 }1 M" l! n, u3 U( K, _! e% u& Q* `" L4 H
# 1 opens the file SkillInfluence.h
4 M7 w4 I9 |0 w$ f4 T+ U* y* C# 2 Search1 x" B: U+ q2 H; p- v* O
Code:0 [, _' r/ a9 P, f
9 s, J9 C1 G, C* C
# Define MAX_SKILLBUFF_COUNT 14
! B' A: e7 ~1 r' s& n
0 X9 {5 Q7 o% M5 F# 3 Change the 14 to your number (eg 21) and save it from. ?5 J, ]: F' _6 X; f
# 4 compilation and ready
- @. M, Z! T* w4 ~, }+ f5 s6 A) J
1 N1 P5 V9 @: v# N9 i' D+ A# D _& y& g3 M: I5 ? C) [% J
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:% b$ O o8 Q% K. q \4 X- Z
& }/ T% \! ?4 j" fdennisdra
$ o) l0 C W+ \# t' O: U5 I.Crasy
+ O2 I- P P$ d7 |©ross
8 g0 ]% Q: n. A' Q5 Z3 d; n. b- tSedrika9 @3 B+ D" z% ^$ O2 V# B
$ o8 h- S1 Y7 p- h q- L2 Q9 C; D/ keverything 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! 6 f* D, T# _' @
# w4 I0 u- ?; |: V! f- c9 OP.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less
: R: s7 }/ j: ^: b9 K! ?
6 \5 Q2 P% V9 L& ]( L
`$ n' [9 D# l8 w+ M; ~- i0 H8 CUpdate 1: how to turn off "Profiler" in worldserver.exe 4 `( B% p. z# \& `, K5 O
0 ]7 | P# J2 a" P) K2 A# }
8 P4 d6 z' Z7 [' zin VersionCommon.h of Worldserver Solution7 s- I( n/ I9 V0 k8 v
Look for
4 E! j- k# j3 V& G- K; X/ N# }9 R
#define __PROFILE_RUN. ~9 F- [* r: o* f- O5 w
( X; w# k5 G, }: W- x( K
comment it or simply# K# @( i ~7 Q1 A' r! t
! g/ O: O- z& P//#define __PROFILE_RUN ) B8 X; m% B! o
* Z, e* A" } [9 C
) t w9 x0 J- m' c6 O4 r
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投寄。谢谢。我添加更多的很快如果你有病加太 * _( d! v6 f" I: [# e: i
|