|
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 # {- b7 z. Q" j
change level without Rebirth$ f1 t" D1 `5 g$ k- e
. s* x' @/ y; Z5 h% y, M9 B8 d) d
Now, let us begin." ~. N! c0 N7 E# n2 M; F
! a4 x& M5 j) t) Y
Requirements:5 l0 N) b; l% r' o
Source9 m* B/ J7 q3 i
Notepad / Editor
: P9 }0 | Q8 R; V$ p' K9 ?: S
' r+ u; T l% C8 ?+ n/ / Tips by Sedrika
9 b' a! r1 s7 K
Y# X. S7 n& f2 [It is up to you how you do it ^ ^- A1 {% y* y) @4 k2 Q
4 P& k% z3 l2 e. H: S
Go into your source folder and open the definejob.h
) @: C: [* Y) Z7 _2 S7 I# hSearch there for:
& c% G5 e' s7 h+ n4 `0 m+ k$ f. f
#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå* J9 b t Z" L; S* C* t- r1 N2 b2 t
#define MAX_LEGEND_LEVEL 129
, O% n6 ~* f- U( ^#define MAX_MONSTER_LEVEL 1601 M0 Y! J% i$ z0 J8 @+ O1 P
#else // 15Â÷ è÷¾î·Î ·1o§è®àå
5 V: f3 C' C& W( ^" b g/ b#define MAX_LEGEND_LEVEL 121/ F/ k7 D; Y$ Q7 q0 G
#endif // 15Â÷ è÷¾î·Î ·1o§è®àå . R: C6 [ Q: n( i/ d
9 z* K) C2 N* l3 B/ T8 }
+ j% N' m% w1 X6 w, l% JRed: Player Max. Level
3 N5 ]; Z3 M+ nGreen: Monster Max. Level9 K+ S7 v. A6 E
/ J9 @# S: T( t1 j6 f. q6 MThese changes as simple as you want.. }" s* a6 n: G; O1 D
: {# T& Z" F/ n7 h" S }Then you have to just recompile the World Server Files + and make your clientin the Definejob.h the same changes as in the source.$ L- R# M5 A/ Z7 Q& B6 t
: d$ g+ f K# S: R Part 1 of blocking CE
1 b- g( K5 }% @; z
' [& [# @" S/ I' F1 g. t2 DIn this tutorial I will show you how to change the Head of Mark flyff.
5 i/ K/ i% Y; q6 W+ T# L! dThe current Head Mark is well known, 5E, which results as a string ('^').
' z3 b3 ^* X: X
i" K1 b. C$ W) t/ L8 R) G2 ZFor this we go to the World (Project) and looking at the Buffer.h after thistext
, Q9 C1 Z9 I& n$ Y- |, d4 c3 |Quote:
- i$ B: o6 v: d* g1 @6 U9 B# Define HEADER MARK '^' / / Normal messageheader
6 ]! w' _: o7 P1 @# Define SYSHEADERMARK '%' / / System message header& i! F2 o' B$ G/ P5 c+ e% u' ]
What the Sysheadmark is looking for is not even the top 5E.
. F; i1 E+ K% G% Q. u7 hChange this and it makes the CE Not work on server.0 ?; }5 _4 D Q: A7 ^/ I! ~
* A* f' c9 P3 rThen Tom's anti-hack is no longer useful.
6 A! P& z/ V) |6 R9 g2 |
: l% A1 G$ M: v/ J5 TLG Sedrika
Part 2 of blocking CE
; q4 K4 i( x/ T( @# q
/ u8 w4 \3 k5 W( b8 G8 YIn 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.
7 F9 i1 `! ~+ Z7 f' b+ BWhat does this have an advantage?5 J7 X% P; i5 r- o" P3 M7 ~
The editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself ; d- F8 e0 _2 e" G5 F
6 [( D5 s* B3 V" V. m: j) U2 l( Z n! q
1 \; n3 _3 a. s0 i' {/ n0 [% J3 c& \First you need to get open source even know how you do it, is left with you, andyou do the project on the Neuz.
+ \' P @0 h: ?; z6 {0 \& N1 J: l$ M W% _4 s. g
Then search for the following content in HwOption.cpp 1 t3 d8 |7 a2 r! T2 g e
' }& e' N" [3 O+ n& _* ^
5 D5 o# M0 y# |4 b8 @if (scan.Token == _T ("ip"))
9 K6 F& }2 |$ H- D{
% r* g; t' e5 b5 C' x; b i9 Zscan.GetTokenEx ();
. w1 K5 u# j" @* Z. T, l& \* w: Bstrcpy (m_IPAddress scan.Token);
& {$ H; g$ ?6 p% `}
: H% o1 C% z3 r* p7 i* [and turn it into this:
$ e. g* _# h# |2 }* A% SQuote:
# k! \9 g. e( lif (scan.Token == _T ("ip"))# k4 q& d; ^& B) \
{
5 L$ s A9 ~( m4 |( W5 {3 n3 ^2 M1 i8 H/ / Scan.GetTokenEx ();+ j# G: M2 h6 `5 c8 o
/ / Strcpy (m_IPAddress, scan.Token);
9 N- q. r; {% T$ k6 p; n}+ E0 U4 }/ c7 P% Q1 v
And you created the solution.0 |9 z7 ` f. m! d) V) |
/ {! T. m% x+ A5 T# H) y
! ]1 s& ~+ X6 ~6 f1 {8 }" ^+ b$ K4 m, J
Then read the Neuz not the IP from the INI anymore. even if put in it9 d' y7 a( [$ L
6 e( ]& H% ^1 W" R% N% B8 R& P
Max skill's
) T* b$ M4 h6 m& z1 o5 U& F0 g4 Y5 @& H; X
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 6 k6 d a9 m1 u [9 u4 v% k& t
; J+ B. N$ F5 _- }With the TUT can provide the remedy it
/ F; L; D `6 z3 ]" G* k
: U9 ?2 p1 B4 T# 1 opens the file SkillInfluence.h
" w1 }- X6 a- n4 b8 @$ R# 2 Search/ }$ a2 H7 T% K; a- |2 w, a+ I
Code:5 O' \, C: K! l* W- e2 z) K
3 L5 S' ^% B) _4 B
# Define MAX_SKILLBUFF_COUNT 14- ]" p' }, h: I D! w" G: X
) l2 V" }5 @% G: ^ ^
# 3 Change the 14 to your number (eg 21) and save it from+ O8 Q$ f2 Y2 X& B1 y% Z
# 4 compilation and ready
8 x$ d7 a& e! N; q& F
* _/ P. V/ C2 L# ]; Z" P
6 ?2 o& F! s: W2 J. H% I. EI 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:: v- t5 B" Y) Y# Z/ @
) o/ L; V) v' r$ p
dennisdra/ V9 _3 e7 l/ e5 k1 M2 }
.Crasy( n3 J0 q- u' I1 L0 Y0 X& V5 d, d
©ross
- Y4 K7 y' s$ ? k: P0 N# e% _/ s$ ySedrika0 `" Z8 U( f- ^8 z- t: g7 l' {
Z. P+ _/ j f! q X2 R1 S. f0 X, p
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! ~# B. T Y/ O, [) c0 b
8 z0 E( q- {. R: W) h; a1 ~
P.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less6 w A7 f1 r# z9 P
y/ Z, n3 @. P X
5 V, F. q5 r! r7 i+ [8 IUpdate 1:
how to turn off "Profiler" in worldserver.exe $ q8 k) ~2 N& ~4 ]6 s* L
5 A! L, t' W9 L6 {/ S5 Z- W
; F' Z" g; \# fin VersionCommon.h of Worldserver Solution
, i( s9 b/ m; q6 s x0 uLook for6 g: f! z. x+ g; c0 Y/ h- Y
, s- E2 X6 B2 M6 ?- o: N! a) M
#define __PROFILE_RUN4 y B9 W+ `$ E( a7 [
. Y! t( T2 A6 P5 S" T
comment it or simply
/ [$ ?4 |/ m" s; S3 k3 `6 ]- p* @( v
% \# c! x+ _- x( t: A//#define __PROFILE_RUN 7 N. r% U$ F; U- J
& s2 _( I2 b0 s1 c
n5 D! _+ d4 e# ucredits 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投寄。谢谢。我添加更多的很快如果你有病加太
& |, C8 m- G- F% t, \ |