|
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 2 \1 Q# {/ ^' } \# O0 |
change level without Rebirth. a0 Y0 d0 g+ r9 {& k
+ ^) u6 e/ X$ l$ Y/ X/ L, C
Now, let us begin.9 E& s2 H' ?. ?
' p5 ?" u4 {' V. zRequirements:
/ @5 n# U, z- W5 g: A' |5 a. nSource7 J. T, l, G! x$ h' T3 I
Notepad / Editor
4 g& z" `7 F) W2 M- R' e3 p1 y3 c4 a" F+ v& d& Q; w
/ / Tips by Sedrika6 A4 Z& Y) H3 N% V, l' w+ ~
5 }1 d* A! [0 b
It is up to you how you do it ^ ^
! C, \" @) P& I/ @4 P* n% E9 B. R* D) `0 K% ]# C
Go into your source folder and open the definejob.h
; a+ t _# J ?5 Z) ^1 ?" G8 {0 cSearch there for:5 E9 {/ T/ K& j' I
. h w9 l- F* j$ Y- [! Y
#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå' E( n7 N$ G& m/ H$ @: p
#define MAX_LEGEND_LEVEL 129
; Z3 s) S( p. o2 a% G, t5 H' J#define MAX_MONSTER_LEVEL 160/ j+ A4 w2 ^, M C! @4 o9 R5 n
#else // 15Â÷ è÷¾î·Î ·1o§è®àå
k* d1 M) O5 t4 i3 [0 O( }8 E#define MAX_LEGEND_LEVEL 121) s- J, Q) I) j0 u' [, {, j
#endif // 15Â÷ è÷¾î·Î ·1o§è®àå . w; D7 L3 K) n- I+ @; K2 }
- y, d$ F3 ~& ^+ t
9 u- e+ e$ `- r2 N9 QRed: Player Max. Level
' J, f' M$ Q9 |6 \% c1 NGreen: Monster Max. Level
6 ~/ l- S" B1 n+ y2 E6 f
4 B2 L1 R; ]; ?# V& X$ sThese changes as simple as you want.
1 F- a0 S3 z$ m; ]! Z. Q( r
0 r2 ]8 n' ^7 L& ]$ C7 D$ Y) RThen you have to just recompile the World Server Files + and make your clientin the Definejob.h the same changes as in the source.) }7 a# _$ g+ M' }( ?
2 u2 u$ O2 v1 h" i% R9 e Part 1 of blocking CE
) K5 d6 y# i% D1 Q% Y. ^; J
, u% A; F/ W1 u" DIn this tutorial I will show you how to change the Head of Mark flyff.4 g7 r: c; g$ [9 T
The current Head Mark is well known, 5E, which results as a string ('^'). L3 D! [" g8 q C( N3 Q; J3 s
% ~3 v, J# b# F" t* F. ?* V! [0 DFor this we go to the World (Project) and looking at the Buffer.h after thistext9 P! t) x! U# r4 x) j
Quote:9 v- Q5 F) [. C4 }
# Define HEADER MARK '^' / / Normal messageheader' p5 C# h3 S+ T1 e8 ^/ ?
# Define SYSHEADERMARK '%' / / System message header
2 X( k) t& A5 w) [( P% LWhat the Sysheadmark is looking for is not even the top 5E.; [( U0 `' k7 q6 M! Z# W
Change this and it makes the CE Not work on server.& J j* h! c" e. S. K
" g8 S. v# l, g+ |' E: O4 K- [0 i
Then Tom's anti-hack is no longer useful.0 w; M. C) p) \6 l" K/ }1 n$ z
0 Q- Y X, @1 \( R8 E" [LG Sedrika
Part 2 of blocking CE + j6 x8 a; K4 N% X
" Q* h. h+ k4 M+ {$ g
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.
. v" F6 M4 C( a. _1 f% a- O3 L/ z6 cWhat does this have an advantage?/ V2 s2 l' u- z4 m A0 v
The editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself ; H1 Y4 I2 z; z9 J2 a y9 e
, a/ h, D" h% I1 Z& B2 r9 }/ Z0 G
8 z: R) V. Q C+ ~& fFirst you need to get open source even know how you do it, is left with you, andyou do the project on the Neuz.
: B8 P4 ?' o% L& n3 f0 Q f) S) C: D: I$ K' B6 q+ l. l
Then search for the following content in HwOption.cpp : u% p) o3 Z2 _& r- \/ ]
l9 c3 s7 L5 N+ n2 T+ N7 q
1 _2 P L# f0 {3 E3 W; K% T# R
if (scan.Token == _T ("ip"))' \1 k+ f+ C# K* B* f
{# y {9 n/ c; J) ?) q
scan.GetTokenEx ();
. @# Q* d# F6 Q( d! Estrcpy (m_IPAddress scan.Token);
3 B' S: o7 v# H$ o9 ]}/ p( C$ }7 _+ }0 q$ I
and turn it into this:
# y) j; q6 W4 XQuote:7 A- i$ W" [* ^! J J. U6 ?% G5 R
if (scan.Token == _T ("ip"))
2 b) u$ _5 s8 m0 A{: u; T+ {- i' x$ d; o X
/ / Scan.GetTokenEx ();( Y0 c; i- V4 |( f5 ?) B
/ / Strcpy (m_IPAddress, scan.Token);
, t( j9 y) N- N! g. v}3 Z5 y3 g9 J7 |0 r$ U
And you created the solution.
7 \6 r9 @4 m, @! r4 o: @0 _7 O+ a0 m, h% V. l! h+ A. w5 H3 W: ]
; E% L6 H2 U1 T7 I; M( U7 m
Then read the Neuz not the IP from the INI anymore. even if put in it3 j/ V$ _& T" o6 O/ I$ n( O( j d( K
4 T& k) b6 Y' l8 \( q
Max skill's 3 [. {; p' w* R" ]; A) W
- W6 l. o$ _* L3 x FAll know that, 14 Max buffs, you get all the RM Assist Skills + Skills fromBuffpang and no more space for the YJ, Knight, Ranger etc ) h5 Z- u7 p3 d" n/ Q/ o! W
a! i% {$ j6 P' |, k6 eWith the TUT can provide the remedy it0 k. E1 v8 |- C9 f7 v7 l+ Z
% p2 {$ u. i" ` b C5 R
# 1 opens the file SkillInfluence.h# s, ^5 H- v- b6 q) Q
# 2 Search
, \" V6 l% M+ E; eCode:
6 y/ A2 ]8 x' S: i7 y( R7 g. `. Z7 |& _
# Define MAX_SKILLBUFF_COUNT 140 e0 i& W* @" P) X6 @
6 N; l) @% A0 s: o# m# 3 Change the 14 to your number (eg 21) and save it from) X3 b, `6 h% Q* f6 |2 ~" _
# 4 compilation and ready, t$ M) J2 V2 M' [3 [
+ k) A3 c: {7 x5 P9 B9 W' f
, h$ S: W# I) D u: i9 aI 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:+ ~. ?: C5 O w+ }# f5 O! V3 E9 b
1 A( g3 q/ F5 ^5 ~, D+ ^dennisdra) b) S1 t. e3 \: t: o5 R- I
.Crasy9 s4 i( g7 [. i: x: w! O7 ~' j
©ross9 s% }! y, C g' m$ h V/ M, o% m
Sedrika( Y w' N, E# F! W+ B' `
9 o% W5 t# d5 ~3 @$ @2 [3 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!
8 V# r7 N! e0 v$ |/ i U1 K0 ]# u3 W+ k$ h6 R
P.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less0 k2 |- l9 ^5 L* T
) C' p7 H8 j# N- _# d
6 Q! ~ F2 I( U% S1 K$ }
Update 1: how to turn off "Profiler" in worldserver.exe
6 D7 e' t* B& Z% [- W( ?9 K. J+ S v _1 H0 h3 h
; v2 |$ W- |0 H! I/ u [/ e: T0 N
in VersionCommon.h of Worldserver Solution+ M# [# H& p( V9 Y& ~, V: C* f& m
Look for
, V* @* G! `, X( y7 r! Y! x3 c8 g1 u& `
#define __PROFILE_RUN6 ^+ I M2 I; C5 y, i1 A! U4 p
2 k8 m& e. V$ c# Z, Ccomment it or simply
" ^; Q4 p2 k/ f& \1 @- J9 N8 Y E$ ~$ j5 B/ {# M
//#define __PROFILE_RUN 1 Q; ~# M E4 z" S, M
* ?. S1 Z0 y% K; S' P+ O9 }
7 s; Y" X, | 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投寄。谢谢。我添加更多的很快如果你有病加太
9 X, w6 p' K+ i. [, f; `4 T |