|
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 |1 v: g* M8 dchange level without Rebirth
- [& w, b. n `$ m+ P4 |1 }* x; s; [! c$ @( P& b W+ q
Now, let us begin.
, H- m7 [4 m2 ?0 y4 l* y$ W, f; F" Y7 o+ i: w3 h ?, @
Requirements:
1 i8 }: j+ @# g9 }- G" YSource/ [9 Y% I. C! s
Notepad / Editor
7 w8 N7 d1 J$ J4 S/ Q, \4 U" U3 G& W/ B( y6 q8 ]" Z
/ / Tips by Sedrika
' E2 i9 x$ y0 X1 n( Z! S9 X) E3 p- n. p! ]9 b) D- P+ r; c# K
It is up to you how you do it ^ ^
9 L/ G# ^2 C4 h- [$ L1 l: m6 L7 y5 T9 F! q7 V2 m
Go into your source folder and open the definejob.h
5 c/ {- K: B s; `/ {Search there for:3 y" T( B \! _/ j( h2 J
* e1 c) y$ c. T+ K/ h
#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå% g" e2 A9 a6 ^
#define MAX_LEGEND_LEVEL 129
- I7 j3 g, T& k' Z2 D: | {#define MAX_MONSTER_LEVEL 160
- K7 F: Z& b4 N. Y1 t#else // 15Â÷ è÷¾î·Î ·1o§è®àå$ ^& i* c5 [& u$ ~! C/ Q
#define MAX_LEGEND_LEVEL 121( z" b: j3 g, E: o" g4 ^
#endif // 15Â÷ è÷¾î·Î ·1o§è®àå
5 O5 G- a0 i1 N6 i! Z$ E& c# I; e
& j4 V, o/ y8 L+ i, F3 S( R" \; u9 J8 Y5 _
Red: Player Max. Level5 A. ? @# R2 s% _" j
Green: Monster Max. Level
" G5 ], G. g, M- g+ W/ S
1 t, s7 p$ C* {- p' EThese changes as simple as you want.! I v. C$ A2 P/ ^, J M/ |) K
. w- ^1 L5 e0 H+ R+ m' A1 s. \2 sThen you have to just recompile the World Server Files + and make your clientin the Definejob.h the same changes as in the source.
' H+ N- ^" B- ?4 B3 M w/ X& l Y G
. _, s. D( J0 u2 m. V1 K: y
Part 1 of blocking CE
3 G5 v5 W1 I; o0 u/ S7 X3 ~( k+ s5 u3 b
( ~8 ]; f3 ^# k1 G* w; W- iIn this tutorial I will show you how to change the Head of Mark flyff.$ U& {" S8 x. D1 a/ }. }) `+ m& I
The current Head Mark is well known, 5E, which results as a string ('^').
4 n% |8 E) F X9 c* T0 U( \7 F. ]: f* t- e# V ?. K
For this we go to the World (Project) and looking at the Buffer.h after thistext
) P& ]4 O6 E6 f/ g; M7 pQuote:! z' D5 g4 Z3 Q- o
# Define HEADER MARK '^' / / Normal messageheader
8 z) w: e( B; ?) |8 `: T# Define SYSHEADERMARK '%' / / System message header u- x% t5 o3 ]. r2 ~0 q
What the Sysheadmark is looking for is not even the top 5E.8 l1 y( D \2 d9 R; {, K
Change this and it makes the CE Not work on server.$ @3 ]6 s9 Z/ I! [) U7 y- y$ [
0 X8 E7 `' I! Y* r9 C ~8 C8 EThen Tom's anti-hack is no longer useful.3 a! q% B7 b3 {
R; B$ N) ^' Q; b# ^% V: SLG Sedrika
Part 2 of blocking CE # b, h- }# @6 L% \0 k3 l8 h: L
6 T8 A' y8 _$ [. 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.
3 U! ?# Y& F3 [: f( ^; bWhat does this have an advantage?
u3 Y0 ?5 |' X2 s) pThe editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself
+ e5 D) ~& G ~5 s0 l: o' u/ h: ~% U/ u, ?' M4 N7 D
9 o) I2 m3 Q& V$ Y: _6 ]First you need to get open source even know how you do it, is left with you, andyou do the project on the Neuz.! [3 f) T' A; ]+ ~+ w7 k
, d1 Y* k( r) l' [8 L% ?! Q- {* M. x7 H
Then search for the following content in HwOption.cpp 7 q( m! [' h& h) {/ Q; P+ z
$ z+ y! b6 S7 u& o
! a+ M7 R+ B5 o3 ~. dif (scan.Token == _T ("ip"))
% U0 w! Z, w0 h+ n{
( ]+ _4 J+ R2 ~scan.GetTokenEx ();
: Z" n% H: ? }9 V0 `, gstrcpy (m_IPAddress scan.Token);
8 [; r2 z& X- q+ H% v}
- N4 m% [$ F/ kand turn it into this:
6 O6 P _# e+ I3 M/ `Quote:
& U8 `$ v8 ?0 }( @& H& zif (scan.Token == _T ("ip"))* [, }5 _" n# \* m
{
! L5 T# `2 I6 h, i/ / Scan.GetTokenEx ();
0 g/ l+ J( z4 m2 a1 q/ / Strcpy (m_IPAddress, scan.Token);) s, z& {9 Q j c2 z( ?4 i
}7 L' d# ^" P- V: \* |
And you created the solution.
+ m# A _, l$ k- T
) U T; Z" Y# i( V( H3 Y. z. w2 g: b6 c' I/ ]) A
Then read the Neuz not the IP from the INI anymore. even if put in it
1 s* o E, [) B5 O y" j1 f; U) G( }' d- X6 \+ F
Max skill's / _0 P+ ~3 C& g( q& M+ u5 i
2 b$ `- g' g; R) a! UAll know that, 14 Max buffs, you get all the RM Assist Skills + Skills fromBuffpang and no more space for the YJ, Knight, Ranger etc
% u' `2 E, T( c6 h7 Q4 d" [3 E5 S( I2 m5 a
With the TUT can provide the remedy it
2 s2 W) T6 W3 m3 R* v9 i# Y" B1 K# O1 K0 s
# 1 opens the file SkillInfluence.h
: H9 ~6 U7 ?9 D$ ?# 2 Search2 O; V3 `1 S: }# Z
Code:1 F3 C$ S: U) o0 f
5 b+ [ }) B6 d4 b! J# Define MAX_SKILLBUFF_COUNT 14! ?8 n9 I, e: l' M% A8 M
6 o1 P& I9 u% l( K2 ^+ G6 `
# 3 Change the 14 to your number (eg 21) and save it from4 E2 U* m4 U, A+ e7 j! {
# 4 compilation and ready
- S) L& {* b2 S" D* D1 L6 k/ s3 F* K% P6 W8 C2 B
: {) ~1 H' }/ x# D0 Z9 F& U
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:
3 f5 m; e+ { @2 \0 `' \2 H: C; \7 c+ r( y- v S, n3 v
dennisdra
6 F$ v3 z5 b8 D' K, e.Crasy
: K% E5 u T# _7 M7 o0 }©ross0 @0 ?0 L" {" R' I. l( A$ W, J
Sedrika
# \) V+ k' x" f- O& r4 \ Z. k
8 `9 `. K) f J% z3 ~2 I; ]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!
+ G% e1 O( b% }" C! L. l7 N& \. B) p! l( k; E
P.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less. o0 s0 d: p, l; P$ U$ Y
3 G& C# G5 w7 t0 `/ n" V' C. ~0 L$ R0 H8 B: z5 L
Update 1: how to turn off "Profiler" in worldserver.exe % J7 m! J3 ?- f" e8 |
% x; R3 N) V h z, \
' l. B# x( D3 \8 vin VersionCommon.h of Worldserver Solution
4 Y: f+ o8 ` {' o3 O2 y( \% ^) ^! BLook for# V9 z/ ?7 ?0 S9 `% {) m4 ?) D
" N1 u: w k' Y. |5 c#define __PROFILE_RUN. g1 O( ]. N1 R D" S% P
" f# F& O9 Y# d5 O( {9 ~ X
comment it or simply7 F9 G3 s7 k' O' | _1 f4 t
. z7 u" C6 @+ U) R% o( {5 S
//#define __PROFILE_RUN 4 T" X0 a( N; q2 w# K
& O4 {( W& W5 x" Y7 J3 `
% q2 F% K; R3 o2 u7 ~
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投寄。谢谢。我添加更多的很快如果你有病加太
* ^7 G; R6 L6 z5 [/ v# E! F* `. o |