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 J, r& s) x+ X0 kchange level without Rebirth w- R2 B$ [' E% v7 \- y
! j# X, {: p G Y: w7 f. K: d4 hNow, let us begin.! j7 h6 }, c7 l0 p5 r* G# b( Q
) L. B, r! |+ yRequirements:/ v, [) a/ s! A% h" T5 L4 v
Source
( L/ y! N/ o; Q8 uNotepad / Editor7 Z+ J- A2 Y; m! e: u
: A: M0 K4 w I# V5 J7 b/ / Tips by Sedrika
+ N3 E1 s9 J2 @) l
* ]( `5 p! ~8 y: v1 i1 }* K4 vIt is up to you how you do it ^ ^
$ ~" U d# y0 N& v9 U4 a
9 v* }* r" `" L; ]. T) a5 TGo into your source folder and open the definejob.h% D8 @( S0 m0 W+ L2 x1 o
Search there for:
4 N' Z+ x4 L3 Z _2 x2 I; l( c* a2 Q' \% C/ M- K* W5 X
#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå
0 D9 O1 O. L' d% a' W+ R, C#define MAX_LEGEND_LEVEL 129
b' {; j& a* X0 Z- n& u#define MAX_MONSTER_LEVEL 160
6 ^5 y/ ] V2 a* F4 f#else // 15Â÷ è÷¾î·Î ·1o§è®àå8 l/ H7 p! X) `9 x3 I7 @
#define MAX_LEGEND_LEVEL 121
, d4 E/ C% L. N#endif // 15Â÷ è÷¾î·Î ·1o§è®àå " j0 b9 y* e% Q2 p5 H+ N4 B+ b% N
' V! l. U: Z6 I# P2 V
9 @- z# V% Q! s. fRed: Player Max. Level
9 }4 m ~$ w* I# Q) aGreen: Monster Max. Level
8 v1 I6 D. m( F& i( {( u/ O# K, c6 n1 R" N7 X2 F- |) {, b9 t
These changes as simple as you want.( \/ I1 k: l3 T" K9 S# X6 G8 }
# I( ~) K9 N$ q+ K/ D! KThen you have to just recompile the World Server Files + and make your clientin the Definejob.h the same changes as in the source.
. s' K( U- z9 ^, | k# B1 x( q. P
7 d5 V) s' z# S* x# x) D$ S
Part 1 of blocking CE
3 \$ Y8 \8 B- K$ ? e: n }+ d7 C7 b" |4 J/ A1 F- T: S
In this tutorial I will show you how to change the Head of Mark flyff.
; G7 g! W, F3 c' t6 g1 k) t4 t- H2 pThe current Head Mark is well known, 5E, which results as a string ('^').! T- u5 a, r9 X& U& ?9 \/ c
9 A1 C: l0 T7 ?- v: @0 m5 _For this we go to the World (Project) and looking at the Buffer.h after thistext
$ |0 l7 f7 i9 XQuote:* v/ O6 @/ g$ r
# Define HEADER MARK '^' / / Normal messageheader
8 E( X" e: B! P; z1 h" N+ z* J# Define SYSHEADERMARK '%' / / System message header
0 p3 p3 w& s7 s- @4 s; {What the Sysheadmark is looking for is not even the top 5E.& U" o3 J; }, @& F8 I/ L* c% K+ V
Change this and it makes the CE Not work on server.: Z9 z9 i# C4 I; `! n4 B# [
% E# W7 e( S9 N, t
Then Tom's anti-hack is no longer useful.
$ H3 ?; ]3 Y/ O; Q2 x
' p$ G7 a- y& W: ^1 ]2 w; JLG Sedrika
Part 2 of blocking CE
! o2 \8 u3 ?$ }4 e, J) H r! M2 n" c- [3 j) h( l: J
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. , f: h& z% b" w2 u
What does this have an advantage?- C, V2 V$ Z, }" ~. j- d
The editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself
* o: K; ]6 s4 y- S4 f! G+ I6 }- D6 K }3 d$ @8 I, k6 G% l. i f" g
6 Q$ ~( D9 b7 v1 w+ Z3 j& ?5 BFirst you need to get open source even know how you do it, is left with you, andyou do the project on the Neuz.3 g2 W$ q+ K/ A$ u' I
' s5 G ~5 p# f t8 V
Then search for the following content in HwOption.cpp
' m4 `3 h6 e1 D& s) G' h2 p5 y- o c+ j2 c" ^* j6 p
. B u' ?+ Y! r5 g: {; a. Q. Jif (scan.Token == _T ("ip"))/ x* P: k) d. ]
{
* a1 J# ~ e5 p1 D: `% Lscan.GetTokenEx ();. g2 p5 i# n Q: W& U4 d
strcpy (m_IPAddress scan.Token);
( f, I5 R6 z+ u/ U+ W}
- {5 Z, P/ x5 V: k$ L+ |; xand turn it into this:$ m9 J" p! g# f1 S) u- J# m
Quote:
+ J7 f, n' o# s# Q' mif (scan.Token == _T ("ip"))1 j$ d2 K% W% m0 g0 ^/ s* n! _
{! l: p0 @" Y v- a$ _. P
/ / Scan.GetTokenEx ();! y4 ~( t% O! l5 |! B
/ / Strcpy (m_IPAddress, scan.Token);
& n5 n1 Z3 S3 |}
' k6 Z% V# Q" t$ @. KAnd you created the solution.
# I! o4 X+ h% a( C, c! T5 S1 P7 d8 S# g/ A7 D; X( X
: a: Q% V0 I& T" d1 H: MThen read the Neuz not the IP from the INI anymore. even if put in it% H {# p( L$ _% `
7 @8 _2 @% P, l5 T. i
Max skill's 5 @1 V$ M5 D, Z7 E" Z) U; M8 x, `
- H$ x6 ?6 Q) ^1 h- E6 L
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 ! h! v) n, S! p- |$ O
9 y6 {- C5 m, H" M$ o/ G) VWith the TUT can provide the remedy it( r F: E9 w: r% c9 p
) h1 g7 S/ n/ m4 F5 k' J
# 1 opens the file SkillInfluence.h8 S/ B' n5 D. _
# 2 Search5 x+ d' r) I3 z- }" `; I# m
Code:
! `! j) ?6 K, P
$ V6 U# V7 `$ ?+ r0 G; M# Define MAX_SKILLBUFF_COUNT 14, Z$ N- X, l) W# g0 A) X7 ]; Q
8 r% H$ o' v2 b' w4 i# x2 |* O2 Z, B# 3 Change the 14 to your number (eg 21) and save it from
5 x1 @3 U! C3 L! F ?8 W' J4 E# 4 compilation and ready
2 u. |/ f" ^8 K) Y1 \/ `% o
6 T% z5 `$ A9 a9 J8 U
- R) p. n2 k/ h6 EI 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:2 l) Q# p3 l* p8 y* a
5 E( O+ r F, X$ p
dennisdra3 n0 w6 C/ Q- D' y2 o# G- M
.Crasy
3 D- f& p8 ]4 j" }- e. [3 ]©ross/ m) W( }9 i- W$ b, ?
Sedrika3 c" Z% e, B$ J& T
7 {3 p3 @) N) w& X) E& ~. beverything 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! 7 |/ ^- {' v* s* ^
0 L$ P3 p _0 J6 MP.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less
7 i, Z, J" n6 `$ \2 s: W3 a/ v: R
3 x" S7 o4 k& m; ~2 I
Update 1: how to turn off "Profiler" in worldserver.exe / b& J- w% a1 R2 g( L: R
5 A! }7 D( ]( ^& X, g* e
( G' H8 `' K s; v/ |in VersionCommon.h of Worldserver Solution
. {$ `& |( n. F* Z4 \* y6 sLook for
, u' g/ E* O% s9 Y' r; Y/ N! Q% d
% g$ S2 \5 O2 G#define __PROFILE_RUN
8 a5 n5 H- F* t% y- ]! L
- R0 u- p' u, i4 V+ k% T+ U( ncomment it or simply
0 w6 I8 k7 E/ N& A0 @8 [$ T" d
) t7 S1 Q, N7 g. `" e; `9 w4 J//#define __PROFILE_RUN
- u9 B) ^! e: o1 R3 a9 Q
# _$ d% N4 w" x) x1 \' F
, T( r5 R! K8 Q& ~- k/ i5 i6 a" I4 icredits 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投寄。谢谢。我添加更多的很快如果你有病加太 4 w. ~, {9 G* a. m- ~2 k# S8 Y
|