|
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 & s7 j9 d6 _' ^
change level without Rebirth
# ?0 V' C' v' R! u6 B1 \2 f# E! Q) ? O9 h
Now, let us begin.
3 N* p1 X8 A. D$ _3 Y
z3 k: l& O7 |6 ]" ^Requirements:) Y% N9 Q0 p7 c8 J1 T3 D; P' t
Source7 O2 A7 E0 u& m% y/ N) w
Notepad / Editor
. i8 [& k) _2 ~$ J8 v
; Q; d) ]: s2 k' {" x6 G$ ]- M/ / Tips by Sedrika3 H8 Y( H% }7 I8 j; S
1 W, n# `; f9 }. g8 ^ p& g: v) E6 h2 }
It is up to you how you do it ^ ^0 T; z6 g- |! j: M; w: O
9 ]- A" i( U' w s. h+ ], @5 s
Go into your source folder and open the definejob.h+ D$ `5 v# `& V# o
Search there for:
% p: e$ I0 E4 J+ t$ y. v, P5 s
* {3 `& R8 O4 @& q- N#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå7 W/ _' K1 @# U% c2 h
#define MAX_LEGEND_LEVEL 1293 y; j4 D0 [; B- u5 r
#define MAX_MONSTER_LEVEL 160
; R7 h& C1 q. \4 j! R#else // 15Â÷ è÷¾î·Î ·1o§è®àå1 ]# C/ a" L5 L/ |: c: n+ E
#define MAX_LEGEND_LEVEL 121# t0 @5 o E* K. A/ @3 m" ~
#endif // 15Â÷ è÷¾î·Î ·1o§è®àå
, {# J' ^0 P: L9 Q% x8 g3 o# d& I% ]5 a4 Y. }9 c' j$ D% A# X8 {
5 x3 u" ~4 c- I8 d
Red: Player Max. Level: ~! C8 X; i+ Z2 P# q( x" h
Green: Monster Max. Level
5 m: {6 r, s) @3 }/ K9 V3 N6 k
These changes as simple as you want.7 K: i) U y% q, m) I2 x7 v
5 u' Q# y$ L, f. ^; M: 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.9 l) z5 N/ j p
' v' o4 ?9 U; Q. C% Y1 O) k Part 1 of blocking CE
# b% ^8 z. k0 g8 P0 b8 [' O& ?; o6 Z2 [: u# K" g
In this tutorial I will show you how to change the Head of Mark flyff.
* r$ d5 Y# V; o. b5 jThe current Head Mark is well known, 5E, which results as a string ('^').) @" f/ X- ~" y, ^2 i) x; e$ B
0 o" K2 T/ _* Z. hFor this we go to the World (Project) and looking at the Buffer.h after thistext
" j4 j# B$ x& z' Q3 t( XQuote:8 g& z# z r7 ]: q$ ]7 P* j
# Define HEADER MARK '^' / / Normal messageheader- ?5 U3 L4 R- g$ r
# Define SYSHEADERMARK '%' / / System message header
8 Q9 ~5 f) E! \5 TWhat the Sysheadmark is looking for is not even the top 5E.
7 \4 k+ t$ A" x) V3 k k! N, L$ FChange this and it makes the CE Not work on server.5 i& n5 k" z4 |' }( B
/ r0 [" b* v; t; Y' }, I1 s
Then Tom's anti-hack is no longer useful.# P& y! G6 C# }: M
' g3 J6 R4 m3 `( d
LG Sedrika
Part 2 of blocking CE
# K" s; `8 X/ Z- U& W5 a$ b% H) k5 f3 R% ?& R. q( O2 k- f
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. 6 `8 r: ]! J& i0 M- Q3 Z9 f
What does this have an advantage?
7 V# X* x7 H0 G- rThe editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself
^" l: S' v2 Y% H- y# ]4 k! q' O! s2 f7 `0 {/ m9 b7 t
5 k5 _% h+ F) ]0 I6 k% ZFirst you need to get open source even know how you do it, is left with you, andyou do the project on the Neuz.
# V9 z t- H7 v9 z; U% b' Z2 I3 G9 W# h
Then search for the following content in HwOption.cpp
" F2 `: Z. B1 }. Z
- \# w) P7 n( k8 E: G9 a, ~" h1 G' [3 i; e* N) b
if (scan.Token == _T ("ip"))" m& ]* R4 ~. y0 }% u
{
/ k `* N1 s& sscan.GetTokenEx ();
! w, B: k5 ~# b% N( v% V& Kstrcpy (m_IPAddress scan.Token);# {' ? V3 {& F% l+ m
}
- A+ }$ F2 p1 Z" a/ S* Y' Fand turn it into this:
6 i+ F: g% |8 FQuote:; t- k: q4 y9 R0 r3 l
if (scan.Token == _T ("ip"))
" m- d# R- z' k. E( S3 I3 V{
% @+ r3 ]& x9 B, O n7 _% N D$ `1 W( P/ / Scan.GetTokenEx ();
3 K' Q7 P' ]) C. ^4 a/ / Strcpy (m_IPAddress, scan.Token);
0 i8 X6 P% T; U- N! k/ W}
/ U) ?5 Y- X" Y* kAnd you created the solution.- ~2 d! f, O5 K. T6 Y# u
' J9 f- P/ R! R- `% F- f5 R; W, R: O. x# h% R' I: Z% H
Then read the Neuz not the IP from the INI anymore. even if put in it$ u; U+ S- ]/ n* k5 {" T
* n8 h8 v" t9 V8 {
Max skill's
$ E- y3 ]; h5 k8 |% H, c3 p7 c7 k1 f/ D
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 8 x; u( W+ M5 S* M4 k* G7 B/ D2 O
: r; [5 b( Z& i" a' `$ U6 [6 d
With the TUT can provide the remedy it( O6 c% ?; f; {1 E5 d F
4 R! f5 R. a8 ~9 A+ o+ y# 1 opens the file SkillInfluence.h
, F" d ^9 c6 |1 _. L7 @- s# 2 Search
W3 e8 ]0 a2 A/ v4 yCode:+ e& Q2 T0 m% R2 {/ ^9 p
# k: r* n$ S9 }% F& x, `' a. C
# Define MAX_SKILLBUFF_COUNT 14& t+ z+ Y& e5 U" R5 Q+ e
+ R* b9 n7 t& S9 P# 3 Change the 14 to your number (eg 21) and save it from
9 z- W2 p# c8 M1 r8 R( b# 4 compilation and ready
. C) R( V# u1 G" ^' v( R9 |$ G% a1 r* X
) K" g4 @+ X5 K4 DI 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:
/ j& N8 X/ ?5 ^: l6 m Y2 _! I
& v; [9 A- r" Odennisdra1 Q( v8 U5 A( Y8 i6 u% \
.Crasy
, k2 X7 i; B# B/ m$ Y2 [9 P6 q©ross. z2 r8 x3 C8 I- {3 ]9 e% Y
Sedrika% V4 q. _+ d; F
9 N; [9 @# m6 _/ n' h+ Ceverything 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! ; {. p$ J! }8 m# ?% b% V
* R: R) j2 O& y6 FP.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less3 d1 d2 e7 @8 h* P5 d' ~) ?
5 _' c+ W' A' G/ X' O& R7 F2 }
/ ~/ z2 j# C# l( y8 q+ H8 Q& aUpdate 1:
how to turn off "Profiler" in worldserver.exe * n% N: g! s. P
2 G1 U1 z0 [5 `! `! n: ^, o8 ?! _ G: i
6 }( @/ d% d* d! i. S5 \1 `in VersionCommon.h of Worldserver Solution1 O' S: H$ d1 n K3 @; v# T: X$ V
Look for
( H7 r; j" ], H
+ x. T- x$ _' k/ X, d8 Z/ h0 q#define __PROFILE_RUN9 L: e1 W3 }1 N4 G9 @# W
8 s! b; I- f+ U; ccomment it or simply
' [5 Q f/ H% M4 Z
7 o- z! U$ ?. z//#define __PROFILE_RUN
2 t1 ~9 J# `" u. @3 T. l3 `. _; y+ V: I! Q
; t/ O3 F6 v1 r* {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投寄。谢谢。我添加更多的很快如果你有病加太 - d$ G1 G: A+ e
|