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
/ l1 \, }! ]' ]& h- xchange level without Rebirth8 p' Z- _6 ^3 O: E2 I
# M/ \* n, M) R0 R! W6 F
Now, let us begin.
6 f: r) s9 u) Q% ]) R; c% b. N6 `6 e {
Requirements:9 ?! N* J/ s) M* U6 }$ o
Source) |9 q, _- _" p5 E+ J
Notepad / Editor
( B( p$ d9 J4 U1 ?0 [
- e" O4 X0 z$ C' h2 E$ x4 {/ / Tips by Sedrika
" q7 g" t: r) C! r- ]
) y, ^% |! ^- R# [2 w( ^It is up to you how you do it ^ ^. a, R$ m8 m7 J# \+ f
. |) ^6 F! E% g4 ?( X! N
Go into your source folder and open the definejob.h( s- `" V3 S: Q1 h
Search there for:
5 S: ~4 r4 E3 e% V9 Y2 j# i
! P( b4 L) |) k( c8 H/ v& n#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå; t O" ]& P4 Q+ _. `5 L6 ~; g/ r
#define MAX_LEGEND_LEVEL 129
4 m1 @ J Q' s) Y' O4 s! s% t6 X#define MAX_MONSTER_LEVEL 160" g& `; B9 P- G$ ~3 {1 v
#else // 15Â÷ è÷¾î·Î ·1o§è®àå. G. G; E. A' @
#define MAX_LEGEND_LEVEL 121. L" D- I9 Y: D3 V+ p
#endif // 15Â÷ è÷¾î·Î ·1o§è®àå 3 u* ~6 N& o+ x7 p! ?. G$ m
. z8 F- r1 l3 F8 {0 I3 R& j; D1 e& s; U% S4 R0 P1 u
Red: Player Max. Level
9 U$ E% n6 @6 U- kGreen: Monster Max. Level
4 N4 w) T% X. j0 n1 E' i6 S6 X
3 o" U$ Z' s3 H( C* ?These changes as simple as you want.
& Z4 ?& F1 Y; b! S# f @0 @3 p3 r4 h' }2 P0 H
Then you have to just recompile the World Server Files + and make your clientin the Definejob.h the same changes as in the source.
* |/ X7 v$ l) `
6 B$ E+ m W. s' q7 V4 x
Part 1 of blocking CE
8 \: b5 s: f7 |- }, o8 a' {
; U: g% A2 A$ v4 A, MIn this tutorial I will show you how to change the Head of Mark flyff.4 M$ Q3 P6 l" ]2 u6 ]; n. p
The current Head Mark is well known, 5E, which results as a string ('^').5 L. Y1 v6 `% Y( X/ {
6 S7 B: Q' x7 s# V1 a8 a. U
For this we go to the World (Project) and looking at the Buffer.h after thistext# i' y$ b7 D( F3 v3 w. o' m
Quote:0 W7 P: A( U g2 u) b
# Define HEADER MARK '^' / / Normal messageheader
J4 ~* P2 } }# n" v' T6 r3 D' ^# Define SYSHEADERMARK '%' / / System message header$ ?( } |' U$ M' h( d3 ?8 l
What the Sysheadmark is looking for is not even the top 5E.
! F! c" A( J" M& Y' |- u8 z0 n! `1 xChange this and it makes the CE Not work on server.9 [4 s( h. N7 }$ x. k& Z
( B7 B8 w# V' P: q" W& N; I
Then Tom's anti-hack is no longer useful.# s$ ]* e( a% f0 M5 q
& F6 z, P* e% I( j" B1 v% P! _7 Q9 | W
LG Sedrika
Part 2 of blocking CE 6 ?; f$ e$ o# k; D) B
( O' ^" [# @; }. s& V
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.
8 ]) y5 x* y* D/ |" D g$ MWhat does this have an advantage?
# e* d4 N6 R w% B. C- YThe editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself 2 i; i6 T( O8 d) Q( s. ], A" ]
& d: B; `- t$ s8 O: I; s
" m" U: i2 Z- S8 R; f3 tFirst you need to get open source even know how you do it, is left with you, andyou do the project on the Neuz.4 e/ T8 u E; ]% k: c
! A0 x$ a: v1 Y) E. _9 |
Then search for the following content in HwOption.cpp - y+ d x$ v x' } u! f
3 @6 r6 `& s% L
2 Z0 Z$ M0 m; X7 ~/ Z% G
if (scan.Token == _T ("ip"))
- l: r, \8 T1 c5 q5 g{
/ V; O4 Y( D( nscan.GetTokenEx ();
5 ^* ]# m' C* K, R- gstrcpy (m_IPAddress scan.Token);
) S# c0 K, i6 f! E+ v; J: g c" E}, C$ S) A$ s+ {; l% d) b# H- I3 w5 |
and turn it into this:1 n, Z0 ]" ^8 t/ _1 ]% `/ J2 S
Quote:4 t: L6 Q7 e2 B+ I5 U9 a
if (scan.Token == _T ("ip"))
( f: `4 P5 b- W i: @ m{; h" O( k5 q; ^8 w. H
/ / Scan.GetTokenEx ();8 A+ y& E" ?' A z% @
/ / Strcpy (m_IPAddress, scan.Token);
) h& v, j j2 y" v9 K- ?- y}
" O# x# ~) S* d5 p+ Y2 `9 jAnd you created the solution.2 v4 z$ r% H& h: U/ h1 F
% H( j! _% v$ R2 c% M7 B: \0 ^4 x# _" C' I4 e
Then read the Neuz not the IP from the INI anymore. even if put in it, J% G4 B' m6 R# W: l
( o: b+ o( R' S) G Max skill's
: |% h+ S9 K, P# t# w
2 y9 `( }2 }- t8 r7 X! _/ p6 _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
. B! X5 s8 u: F9 \7 ^6 Z. J4 c7 I: D; l+ c* o+ k$ s0 Y
With the TUT can provide the remedy it
) i H1 C7 c5 C( q: W0 A8 D2 o4 x/ O* V7 A/ |
# 1 opens the file SkillInfluence.h
' _! V# F- ?2 }( k# 2 Search
l- F' }' p5 N( g; @9 mCode:
' m, g# m" X1 `# R' E
. X5 P0 r, R, f$ a# Define MAX_SKILLBUFF_COUNT 14) l9 g: x {9 Y( |! H1 y, |* m
/ V$ ^' U( X9 K4 h% B' p2 }# 3 Change the 14 to your number (eg 21) and save it from
. b' o: r5 n. A2 y6 R/ d& F8 \) B# 4 compilation and ready
. [: F; Y% Z5 H5 |" n! J0 M. a4 j- C# k5 }2 m
7 e, y* d' w% c& a5 E( |7 p8 K/ c; hI 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:: X( w( W# N% c5 j _
" _0 P# S7 ?. T, v0 P- s
dennisdra
% p- ?2 M+ A2 [/ t.Crasy% ~0 X! _+ N+ c; R* X3 u1 A3 B$ A
©ross: \9 d5 `5 G2 X+ S$ d) X
Sedrika8 b; ?' A6 C0 c, N8 w$ K
4 l! ^% ?- u: z8 [, a# Z
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!
2 }: C9 q" R* n$ P" r D4 `5 J# I3 |- S7 e9 Z9 d/ \) o( a
P.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less
& k: \$ Y; h$ ^" |$ C
, S' _( |- n6 n1 A/ p# T* [3 w. g, Z# V1 l6 Y2 H0 ?
Update 1:
how to turn off "Profiler" in worldserver.exe & b$ Q9 a1 Q: G6 T
# C2 N J- | h6 |. a4 J8 h+ z2 o
/ Z' U4 W. ^& Z% U& }6 Cin VersionCommon.h of Worldserver Solution" X0 d8 X$ Y1 G
Look for) X+ V) |. ?, j6 p- j: l( o. S7 }
+ H) Y) P' D) h8 D' J/ n0 d
#define __PROFILE_RUN1 q" F1 x, _* I" p, k% z- y
/ @9 t7 N; B; W( ^comment it or simply& Y+ P% l P0 {& d+ w
5 F4 }0 O' f# X5 h+ S1 C5 u
//#define __PROFILE_RUN ( I" ~5 W7 t2 w- W8 Q7 t
, G" J2 R6 A+ X1 l: n) x( k
( X7 u. o, E5 D& N- X+ ^, }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投寄。谢谢。我添加更多的很快如果你有病加太
8 m, M4 u9 P* B# |) }* o4 J5 m+ o" R) u, B |