|
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
& X. I3 [- Y8 K5 @change level without Rebirth8 D* n8 y6 M/ ]
0 k8 b: A4 P4 F/ h9 a& CNow, let us begin.) P. Z& y1 O$ }
0 l) G6 x. G; M) X3 W9 z% b; FRequirements:5 f6 {: }6 x, O( T: S6 V5 G- L
Source
# Z$ \" c1 K7 I! e5 o3 YNotepad / Editor
( P% ^$ u) ]1 n" u: Q) i1 j2 a" f" w; b3 S u8 t
/ / Tips by Sedrika6 e; D/ z* s" w) w9 U& l4 n5 f
+ g9 o l4 \+ S: G7 ^+ U
It is up to you how you do it ^ ^- X+ H& Z6 c9 q: d
7 o: o+ o3 s; u; O1 P. V3 v7 PGo into your source folder and open the definejob.h: L6 a' ?9 @. J! n* h) G9 |6 n
Search there for:
- s6 e+ T* R& i2 D+ ]
) q4 e9 q! D: Z! P, Z#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå3 P/ K: I8 E, O% C+ E" O
#define MAX_LEGEND_LEVEL 129! e- ^, J g" Q
#define MAX_MONSTER_LEVEL 160. w% ?: w4 H/ P9 L$ F5 Z
#else // 15Â÷ è÷¾î·Î ·1o§è®àå: U# ~! ~$ L' M/ A7 Y7 V. D6 r
#define MAX_LEGEND_LEVEL 1211 i* |% I' N: Q. V7 m# B; i
#endif // 15Â÷ è÷¾î·Î ·1o§è®àå
5 v$ W( I2 Y7 P; ?2 A: {0 Z' o9 r; R# `/ _+ }% R5 A" v9 g
+ J4 v0 e4 H& K! _5 i m
Red: Player Max. Level7 f$ w, c* K* W; q# T; t/ g
Green: Monster Max. Level
' }% z5 S2 H7 d/ Z/ T4 t, t f+ ~4 K! I, S
These changes as simple as you want.% V; e {7 H* Q v
1 v9 k; C8 v# A7 ?; u
Then you have to just recompile the World Server Files + and make your clientin the Definejob.h the same changes as in the source.* l2 ^7 A! N I1 w& i
, }& X, K1 @) [: C) ~) L3 ~# [
Part 1 of blocking CE 2 N) H; R2 ~4 s5 Z$ I; f
) A p$ W3 A, d6 t7 a/ p1 K
In this tutorial I will show you how to change the Head of Mark flyff.
$ R U, @# V! M$ _2 C& TThe current Head Mark is well known, 5E, which results as a string ('^').
, d ^4 @8 N3 n% J( f. N% u
& ]3 w3 _% f- b) Y7 X0 qFor this we go to the World (Project) and looking at the Buffer.h after thistext) U# N/ p6 F: i# r. n& {- Z2 c8 ]& X
Quote:
0 o4 N3 _# w# d2 V3 `# Define HEADER MARK '^' / / Normal messageheader. z& @5 k h" W
# Define SYSHEADERMARK '%' / / System message header
" x) V( ?. m1 L6 f1 g2 f2 S5 CWhat the Sysheadmark is looking for is not even the top 5E.' O. e6 r/ w4 C7 E
Change this and it makes the CE Not work on server.
% W8 A( t% w! P8 a! G4 s& e: S6 x* w& Y- d
Then Tom's anti-hack is no longer useful.9 |9 ]8 c8 d! j) c4 p9 @: H# j: s
& ]% D# \# a; P* B WLG Sedrika Part 2 of blocking CE
" v8 }/ t4 z# K2 k/ v0 {, ?
6 {8 K5 W ]+ r) lIn 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. % {9 {& a( S) D! N; e9 A
What does this have an advantage?+ K- R# l6 u8 Q l
The editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself
0 Z2 N; H5 \# g: @: v( E# G" _0 T! [+ w8 [( |* A
5 X& T: u7 I/ \& G! T* sFirst you need to get open source even know how you do it, is left with you, andyou do the project on the Neuz.
2 n7 m% h& o7 a/ G( @% W) j% }5 D% ?; t4 \
Then search for the following content in HwOption.cpp
s" B/ c' v3 r% q( G+ s# k8 s- B: N& S: }( I3 N
4 { N. a+ ?1 n* @. v* ~/ t
if (scan.Token == _T ("ip"))+ D( z: q O: U
{* ^+ o' l" ~$ D% [9 X) I
scan.GetTokenEx ();
4 Q& H" s' R) W4 @strcpy (m_IPAddress scan.Token);, N! P# N! M; d8 ?
}
- u0 }7 |3 m" X2 p) R1 l0 cand turn it into this:: L! n* S: a" ? r' P4 T0 r0 v
Quote:6 }1 I# I5 c3 C4 a1 ]7 z
if (scan.Token == _T ("ip"))+ z3 y8 a u& T$ g) Y q
{* A0 o) P3 I- k, X) |
/ / Scan.GetTokenEx ();; O0 A& x) K* `% \$ R
/ / Strcpy (m_IPAddress, scan.Token);3 f/ h& n( Z8 a( Y2 R5 S; m
}
( y3 G- N6 b. @2 X% k. Z& lAnd you created the solution.4 [6 @2 B2 O4 n9 x7 @- f
' [7 e" `1 U/ q$ T
9 w1 B: F s4 K3 B! tThen read the Neuz not the IP from the INI anymore. even if put in it
' b% q& o) R& C9 O& r' }3 Q+ O: m! ]3 P
Max skill's : p/ [2 P# ~1 H" V/ p n
4 E F3 @! w9 t) Y9 gAll 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 M$ R/ W1 y6 }! ~/ d; g6 J# n5 n8 y" B
With the TUT can provide the remedy it
# ^9 ^) A3 |9 Y7 J5 a B
& ]) H3 U# n d5 ?, C* x# 1 opens the file SkillInfluence.h5 [+ A! f0 \2 I% |$ Q- s
# 2 Search! F# p8 q3 E% X4 T4 ?$ X
Code:
8 k+ \9 }1 e, y" t3 }$ |) I; H6 M& k) d# c9 G L3 q7 t
# Define MAX_SKILLBUFF_COUNT 147 i5 S; K, N4 @8 h9 \ u
4 S4 n: z/ A4 U5 M( E# 3 Change the 14 to your number (eg 21) and save it from
& e7 N3 z0 q% p2 p) V/ d6 m# 4 compilation and ready/ J0 x4 P# K* S5 V) C
, C' P- B3 `# M( V% L/ J
4 U1 q6 c/ t' O6 `
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:
% O2 A; o3 U6 }/ ]* f( e* I0 a& W1 i0 m# ^: n( F# H) }
dennisdra: i% U1 ]. ~/ y0 ~% c, b! u" }
.Crasy
7 I5 M4 R, O2 d# g! o©ross# n' Q4 w! j; i7 ~3 m* w2 s( Q8 u K
Sedrika
/ H0 l7 x9 M* Q* ]3 ~
$ |5 w" d# K( _7 `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!
" ~" G8 K/ M2 H& i/ p8 S1 Z% W5 {: y: T6 l4 a
P.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less
$ {9 e0 m& ^' x( ]% c4 q0 @! g: U G9 m0 F) b6 K
. D5 }+ A8 @; mUpdate 1: how to turn off "Profiler" in worldserver.exe & j5 W4 _5 [, \+ ~9 }
7 u! M1 Z @7 l/ Z n6 U3 p8 u! N8 d9 T( ?
in VersionCommon.h of Worldserver Solution9 P& n0 J9 b9 x- s- j; \- C' o
Look for
9 ~/ W3 t! Z# H! ?5 `9 N: [- ~2 D/ p4 R# U% N7 W5 |
#define __PROFILE_RUN
$ W. n, R2 Q; S* K6 U$ E' o
* d3 p* z2 u9 F7 h" `; K+ W; Wcomment it or simply
/ | d5 q) b5 u2 ~1 q4 o: E7 W
% n3 {5 g8 x7 w; \1 b' v4 r//#define __PROFILE_RUN : D+ m1 i3 a7 A; K
8 a+ o! W8 S" X2 r3 b" p: B6 M6 u8 h- g
) o) }, `" o6 F) r4 ncredits 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投寄。谢谢。我添加更多的很快如果你有病加太
) w7 a' F( S+ l* |* t# D2 j; E |