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
( g! s3 U, ~* X( x" z& Xchange level without Rebirth
' m$ f; R7 ^! v
) x7 E# l# o4 r3 \ F; W" x% fNow, let us begin.5 Z2 X8 S% ? a
" y* Q2 T4 }: E! }" p
Requirements:1 [3 o( H: u$ I+ K4 c7 ^
Source) ]" p0 h+ z: {
Notepad / Editor6 Y# ]- p$ O1 M) f) g3 Q1 x. n
a- p3 D8 h5 V) G+ u. B& Q/ / Tips by Sedrika! p, d3 z5 w7 F- T8 `# X
3 Q! u3 ]9 d4 f0 q" A8 z
It is up to you how you do it ^ ^
5 O: @: c' f! `0 J+ T0 u( s, E# h- G& S& I7 A* W) s: Y! t1 L$ k
Go into your source folder and open the definejob.h5 i! s$ X+ ?! b7 E
Search there for:
% e" a" {) s8 M( {! Q+ z5 T) o3 K' }* q4 G1 P& j' d4 x* N
#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå
! Z' {. r* J1 o$ Q#define MAX_LEGEND_LEVEL 129
+ I6 i/ d& |9 X3 A6 x7 d' o4 b#define MAX_MONSTER_LEVEL 160% ~, |/ b+ w7 j& `$ g
#else // 15Â÷ è÷¾î·Î ·1o§è®àå x, |) e7 s* B6 y4 c! y
#define MAX_LEGEND_LEVEL 121' ]0 a: n- w0 P9 A/ X4 H" I+ f: d- {
#endif // 15Â÷ è÷¾î·Î ·1o§è®àå 3 e, N5 |$ C w6 g0 j3 b
6 M4 C o# {9 A% w7 W: |$ D3 H0 Z, J7 G" d2 |
Red: Player Max. Level
; w4 b& U/ S4 Y' eGreen: Monster Max. Level' C) D% @+ D; d0 o6 {
& ~7 Y! ^+ C# P; m# ~; b3 `These changes as simple as you want.' N4 `: i X2 b% `5 N; f
: R5 ]% B. [* F! D' F1 Z* g. EThen you have to just recompile the World Server Files + and make your clientin the Definejob.h the same changes as in the source.) |/ W2 F/ E! P- ^1 j# w1 r# s0 M
6 G- h5 O( Q. Y: {5 W
Part 1 of blocking CE 1 M! C8 J) ~# R1 Z! S3 k7 ], T
& m7 l" g8 s! E D8 F% W8 z
In this tutorial I will show you how to change the Head of Mark flyff.6 [, H* Y1 [$ w/ s- H
The current Head Mark is well known, 5E, which results as a string ('^'). [2 z1 V( Z6 @" l! a S
' | o% c, Q& J0 u' N* ?: gFor this we go to the World (Project) and looking at the Buffer.h after thistext1 l. U0 D+ z( N2 p3 W6 ]; ?2 V
Quote:
! k% N6 k% N' Y& i1 d" b' F1 f. H! N# Define HEADER MARK '^' / / Normal messageheader6 F. X/ y* H8 H5 D$ {5 t1 F y9 b
# Define SYSHEADERMARK '%' / / System message header
+ a/ ?* M: |) S+ P; O2 RWhat the Sysheadmark is looking for is not even the top 5E.2 ]% s- Q: }& M6 r9 p" Z3 `% o4 ]
Change this and it makes the CE Not work on server.
R; s, O" [; ^
- S- c* s$ L4 r: NThen Tom's anti-hack is no longer useful.( Y1 W# l M3 v+ \7 d7 ^
& p3 A8 S; u k$ f2 ULG Sedrika Part 2 of blocking CE 7 V3 g1 p. A! h+ ~2 B4 G* _
" [! g( A4 R0 q7 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+ d `/ v; v$ e* @- Q
What does this have an advantage?
6 l/ G4 }/ t; l( G" `1 _The editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself
# C, s) @ F8 \! x8 H ^8 E
$ X4 R$ [4 S y- p }$ z
0 O8 p4 S# ]$ |& [, eFirst you need to get open source even know how you do it, is left with you, andyou do the project on the Neuz.# v8 k0 X7 j \2 B* D
7 G4 F4 M) o" [' z' Z7 \! X
Then search for the following content in HwOption.cpp
4 U. a6 t8 I- b- G; ~6 @ S& n" ?+ P* l
: B' f2 b0 L- ^1 G; p9 y4 u( R& Fif (scan.Token == _T ("ip")), p2 I, Z* E. d; u) u" k4 a
{
6 K* `* P" X8 r k' Mscan.GetTokenEx ();
5 } x/ z1 H2 M" H. \7 ]1 [; a$ |9 @strcpy (m_IPAddress scan.Token);
2 [5 N( Y& }6 s% D) D: ^. }( ?}+ J0 Q* N' O; \
and turn it into this:
; L% a0 B* f6 qQuote:8 X5 O, |+ G f5 {8 L
if (scan.Token == _T ("ip"))6 G- r1 w! K) j; N
{# C, w! ?2 C' G3 {
/ / Scan.GetTokenEx ();' t; ^; k& r7 P1 a! o3 ?! G6 J0 L
/ / Strcpy (m_IPAddress, scan.Token);
- |( K' a# O/ r. T3 x# ]}4 [: ^. R& R% l, ?) `
And you created the solution.
2 y1 \5 G7 l/ y& ^8 r" x
* v+ H9 s3 l& l+ K4 k5 T1 k3 q/ u- X. P |: P8 p* t
Then read the Neuz not the IP from the INI anymore. even if put in it
3 g6 b1 X: r l. ?
2 T' L# `- q8 {$ N0 Q5 K Max skill's . P8 c$ F; N: m$ d Q j
$ J1 ?3 v0 x8 W# b e& J. 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 / h6 j2 H" ^. J; K
% @% x& @/ v H
With the TUT can provide the remedy it6 q9 \) K4 j" d: D3 o% p
1 ?* ^; m- V, P- {$ \# 1 opens the file SkillInfluence.h: s3 m; s& O* L# P# \! ~3 e
# 2 Search
2 y" E0 K! y0 ?9 D5 Q# dCode:
f3 U3 n |9 E3 {4 i z. i6 O: F# X2 m9 [$ Z
# Define MAX_SKILLBUFF_COUNT 14
: B8 b9 ~# m; `5 n9 I0 w2 D* u. S% ^* r5 K0 V- R2 { T/ D
# 3 Change the 14 to your number (eg 21) and save it from
5 O# D8 L& `; [/ o! @$ P# 4 compilation and ready- H7 W" ~5 _$ `* N+ i
$ h, P E' ]2 ]- S# i V
+ d* ]$ _8 u3 a( o! ?
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:
7 R3 W6 R: Q# G+ d* z! N
. }* G {8 q# D/ S+ ?2 ?dennisdra8 y% V$ W' s1 v8 m5 h" a
.Crasy7 E& T7 k9 Z2 @ W( k* y
©ross+ Z* N7 B( Q1 {- z
Sedrika! \, E8 z ]* N! z) w6 m) v
9 u8 r7 Q1 y' N' v/ @# \3 ~
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! ; h2 T2 Y) W- l$ ]$ b
1 Q/ K) H& q# a6 H- _( e
P.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less, L7 o+ [7 I6 z9 `
0 f0 \* @3 {: f+ |) B( \/ |
, y2 f6 M# v# i0 bUpdate 1: how to turn off "Profiler" in worldserver.exe
0 x; X, V: M' B4 B$ Z/ L. [, `7 k( e
! l8 P, d) a3 D& L6 E0 f! d
in VersionCommon.h of Worldserver Solution( l& \% K0 P/ f1 i
Look for
0 Y2 H# B0 X8 ~" Q. }& h/ H
1 w |: ^6 N# W) ~' |#define __PROFILE_RUN
* b* S$ ~; u% O. d
" F; z: p: F% j9 e( x( T) xcomment it or simply
, J8 f: I/ S9 e9 g) ?
; |& l6 X$ D7 ~7 n3 p! r//#define __PROFILE_RUN ! F1 n4 O; X! o# l/ S
1 C/ Q6 _3 t$ {, i3 I: ^$ p# ^4 \. k" v H$ B# f% o( P) m+ M
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投寄。谢谢。我添加更多的很快如果你有病加太
6 K* _% l& e5 O- z! ]& {) w |