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
# o5 \( w- g" h' Gchange level without Rebirth2 l- ~1 A* M9 z% z, ]
6 q% m; r+ M$ b6 X
Now, let us begin.
* \* _, F+ T4 d/ I7 ~0 f0 [
, q: u* I7 n0 Z, D3 v) HRequirements:
: L+ h& M4 l" o' QSource5 N2 [: C6 w4 B# G( m: S4 N
Notepad / Editor
; A4 m G. n1 z- s! C
: P- K9 Q7 W$ d4 u2 s8 ~8 v T2 d/ / Tips by Sedrika9 X9 N( P* n1 s5 `" {
+ B$ p* E v0 Z$ [
It is up to you how you do it ^ ^
: O2 X7 ]# L* v7 a0 r
* @7 y) e- C* _! M8 G% eGo into your source folder and open the definejob.h/ d( \, ?2 Z+ h
Search there for:
* y' W" [% v5 T4 q2 J4 z$ O- R% b& a! S- g
#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå
7 ~6 l3 C3 N# n& P#define MAX_LEGEND_LEVEL 129
, g6 o# [& {' g1 I1 o. \+ h% Z#define MAX_MONSTER_LEVEL 160) F' r/ ^8 B7 L' O1 C# L
#else // 15Â÷ è÷¾î·Î ·1o§è®àå
- Y- k- {0 `1 i! j3 C#define MAX_LEGEND_LEVEL 121$ V% d' ]( ^9 i6 ]) c
#endif // 15Â÷ è÷¾î·Î ·1o§è®àå + r" j$ o# O; \6 F
4 n- L8 A* W. }0 ?6 Q, S) V
7 K" c; ^ n& `Red: Player Max. Level# ]8 W- i% t& V; d7 z
Green: Monster Max. Level
4 y" A3 I4 ` V' o+ ]; z1 m, T8 N3 \& Q6 s
These changes as simple as you want.
N$ [& U( y- ]# p9 f# l+ A* t7 ]1 Y1 [. \% _+ V {9 p
Then you have to just recompile the World Server Files + and make your clientin the Definejob.h the same changes as in the source., y7 z5 l! p! y
( a4 f( M6 r$ v5 U: a
Part 1 of blocking CE 7 X" y# {2 Z5 D1 L( b0 F
+ i) P/ l* @3 b# h' W$ z% cIn this tutorial I will show you how to change the Head of Mark flyff.
% Z2 K8 T& _* Y0 i4 K$ z( g+ x# bThe current Head Mark is well known, 5E, which results as a string ('^').8 [% K4 v' S7 a ]/ P5 R0 `& P$ U
6 t* v" a% D$ M# h: l) d) eFor this we go to the World (Project) and looking at the Buffer.h after thistext( V& f7 u: y8 r: s Z
Quote:9 A% D; V5 G+ X
# Define HEADER MARK '^' / / Normal messageheader$ `' k/ B' |& B0 D d) O
# Define SYSHEADERMARK '%' / / System message header2 k& z u# W% j/ m5 u* _
What the Sysheadmark is looking for is not even the top 5E.8 k. y2 d# f2 j9 t" S7 j
Change this and it makes the CE Not work on server.
# l) A& i. Q' j
- k2 H# J3 t7 D$ qThen Tom's anti-hack is no longer useful.
+ b* w& j+ K$ }/ g# p6 D% X; l: J* W7 O; W
LG Sedrika Part 2 of blocking CE ( z9 ?) h# A. p% l, `1 b% x; o/ T
2 _7 G m8 B& r
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.
* l4 I' X; N* b+ B$ K9 mWhat does this have an advantage?7 R0 F g& a4 D4 |! k3 }8 z
The editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself
% e, |5 S: U$ P* ~5 M# q! d. o; b& v, \2 \
. \: z% p9 X& u8 A
First you need to get open source even know how you do it, is left with you, andyou do the project on the Neuz.
; B: v' L7 P4 l% R. B4 z5 j3 m) g3 I; A$ l' R% | u7 \
Then search for the following content in HwOption.cpp 1 z: P$ t8 ], U3 \; x& _* e
. F$ t7 V, ?+ g0 p% r5 y
/ S+ u! S# {! A5 x M* {if (scan.Token == _T ("ip"))0 d7 `8 d$ A& w) I" r: L% N
{1 f0 _9 N& A2 s3 k; H5 [) ^
scan.GetTokenEx ();
4 z6 W B* s! C# U0 x% m# Qstrcpy (m_IPAddress scan.Token);
9 E' S8 l; X- B. ?* r" w}5 E) d" r' Y/ `9 a" k+ X
and turn it into this:
0 A$ [$ N. m# m+ j: rQuote:* C. E) F! v* u% e/ s; y# q
if (scan.Token == _T ("ip"))/ |8 H+ E2 U' G4 A
{+ v* n% w9 q, d3 j
/ / Scan.GetTokenEx ();
) e" y5 g! b ~6 x0 t4 P/ / Strcpy (m_IPAddress, scan.Token);
2 r3 l1 ~4 E9 E _ ?( ]/ n}
, ~" |$ x* Y, p6 R. WAnd you created the solution.
. f% \; s- F- m% Q% B/ I# k9 \2 B" d1 a9 t
8 J: N% w0 i( z& }( ]Then read the Neuz not the IP from the INI anymore. even if put in it* U( }: A: Y- ~. @$ S
* E0 i, t, X6 |6 T1 _8 \ Max skill's
9 O* g3 k' Y+ N( }6 f1 s1 T4 h/ j
; w1 k; @. |: wAll know that, 14 Max buffs, you get all the RM Assist Skills + Skills fromBuffpang and no more space for the YJ, Knight, Ranger etc 5 D. \% G# W( o% Q1 g$ i% d
8 A. g- Q4 t# k# l C! M% kWith the TUT can provide the remedy it( @( j) F; X0 W0 v9 _
. _- M4 e$ i% e$ ?' p( Y
# 1 opens the file SkillInfluence.h
: s" z6 E1 g! r" [& Z3 Z# 2 Search
3 Z8 X9 `( v1 @& M% @; I2 tCode:2 F8 D4 p( @( s2 I+ t9 s4 C
/ ^& ]# `( x) _3 V# Define MAX_SKILLBUFF_COUNT 14
5 y, n7 i) h. [- q7 c2 @+ z- N9 x2 ?' F
# 3 Change the 14 to your number (eg 21) and save it from2 S3 s% v: N+ J1 p$ Y) o; g3 o
# 4 compilation and ready
9 e7 M8 M# R$ K0 T$ f) }* F# y: \
2 v2 `+ T; ?% g: X# B+ A
2 G3 }. U7 ?' l( |$ T. U' p( p* gI 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:
m% g5 V l1 f" F" U6 n' H5 N
0 G. W- m6 _8 E; x4 Kdennisdra) w7 g; G# w- X/ E
.Crasy
1 l/ _6 E/ g6 G8 K" O©ross
# I. m( ^$ k1 b }Sedrika& \/ t% T$ c; a1 {
7 K, G0 i7 O6 k5 w9 R! e
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!
8 ?. A: @$ E: w1 R# }$ S- }9 T% G1 c
P.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less
6 d- j8 j& `5 U3 z9 s# B7 }. x, ~1 l( L2 e, w
" ~0 J' Y, c) f5 `. WUpdate 1:
how to turn off "Profiler" in worldserver.exe 3 `( X9 ]# @, I3 V) R1 E0 C+ {
/ i* D! T0 p$ A: O% m% P' \4 _6 i0 h, a; h& ~
in VersionCommon.h of Worldserver Solution
2 i& {8 a$ e1 q7 n) HLook for
3 v. c* Y! f* Z' M2 \
) T5 }! q, S8 p8 M1 ]$ z' Z#define __PROFILE_RUN
6 z# S. _9 P: p5 k. S- V% I+ T0 ?
3 p0 d/ N$ f5 T) w8 c. q: |comment it or simply
! v" C3 ]* e, v0 s0 w
, q8 P9 {* S2 O( X//#define __PROFILE_RUN , C: \" O9 F7 O, q8 c0 i2 J
; J/ R& |" S$ o" b: N4 h# i t" B" P- |! E+ O& ?
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投寄。谢谢。我添加更多的很快如果你有病加太 - Z% d/ \5 ~( Q( U6 ?6 R4 f; n
|