飞飞世界论坛
标题: 改变最大等级 [打印本页]
作者: admin 时间: 2016-1-10 03:22
标题: 改变最大等级
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
+ [. C1 S# N* N ochange level without Rebirth0 B3 j% R2 |- y
5 ~, B2 d- C' y' T) HNow, let us begin.6 O7 ~9 C4 t- k
0 f( B( c4 O. O, ` u
Requirements:0 ?) ?, M, v) t$ f
Source
* O k# q3 b0 G1 b. j+ aNotepad / Editor- ?2 i- m, M/ u$ u) Q7 N5 _% u
/ O" O5 o) ~1 m" s
/ / Tips by Sedrika
+ V: ~8 g0 ?7 s) s1 n; b6 Z& u5 ^$ o' K0 F! ]6 @* y4 f! w& }. ^' v
It is up to you how you do it ^ ^" A8 i- L; s! j _% r; D
. |9 G7 j. E" ^0 P. ^ E
Go into your source folder and open the definejob.h+ |0 d! J7 a' F; g; t. H. K5 A
Search there for:
9 g& T6 Y1 y4 Q6 J4 E; s7 b( r, Y o+ f. Q' t
#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå
, V- ?5 w1 }. r" e; o#define MAX_LEGEND_LEVEL 129
% j6 [2 k6 w$ e& x$ R#define MAX_MONSTER_LEVEL 1602 ~. N/ k. l; s
#else // 15Â÷ è÷¾î·Î ·1o§è®àå
2 j7 b3 f1 F& s#define MAX_LEGEND_LEVEL 1211 Q3 J. F! [2 G- a+ k
#endif // 15Â÷ è÷¾î·Î ·1o§è®àå
$ J% }$ N/ n$ V) q; \& l, Y
1 A3 i( w# @( K, x: R: ~, N
! x/ ~3 a. |. R3 u1 e" P9 C! x! I" hRed: Player Max. Level( }, [+ U% P7 h! d# T
Green: Monster Max. Level# J# _: B4 p! \+ C2 A! z8 c% p
9 c+ w3 k6 N9 b5 U8 u: z) c' A! Q9 @
These changes as simple as you want. N5 o5 _$ l/ M% t a5 A" q
( o) _; i3 N- Q% ~7 d% K
Then you have to just recompile the World Server Files + and make your clientin the Definejob.h the same changes as in the source.
0 m/ a/ T( V+ b% S, t
) k, o+ }8 i( l4 b M0 Y' A
Part 1 of blocking CE
: n2 B! C/ b0 [' x) P# j" r$ l/ _
' U% g; P0 |% x$ X4 [In this tutorial I will show you how to change the Head of Mark flyff.
( l# x# Q- g# t. X) T0 xThe current Head Mark is well known, 5E, which results as a string ('^').
+ d9 x: z: h( t2 k8 @0 Z. ]: e- p
. Q& a: m# U/ h- ?3 oFor this we go to the World (Project) and looking at the Buffer.h after thistext
+ k$ X2 N! y0 k# A. A$ yQuote:) s% h' w% D* A) B
# Define HEADER MARK '^' / / Normal messageheader
) ~' ` F' q& x; @# Define SYSHEADERMARK '%' / / System message header9 J9 s' ~/ D/ ^0 j2 f0 _' j" a
What the Sysheadmark is looking for is not even the top 5E.
2 u. S; R0 B0 \Change this and it makes the CE Not work on server.: x2 |; `% G* r; Y1 p0 T7 a
% O! d: K& H- G9 `" O- ]$ X- ~Then Tom's anti-hack is no longer useful.
) [$ s5 a5 `# S; |
' b) r6 v! ~5 wLG Sedrika
Part 2 of blocking CE
. }" G" J) E% A1 j( p' R' [( V2 o5 c* e# n
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. - [5 o3 }& X- A. \ ^
What does this have an advantage?
+ C P$ \+ S8 U% N) F( |$ sThe editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself 6 C2 k) O% J1 Z
% i2 J* f8 {0 @) {& q
: r: a4 n( J" ?/ J1 e' M6 d( t4 @( J
First you need to get open source even know how you do it, is left with you, andyou do the project on the Neuz.
% l0 R( M, x. F+ l% l& {( n/ c' o1 C# ^+ _; i. G* s5 r
Then search for the following content in HwOption.cpp
4 H/ J+ S4 b( P1 D$ b& ?
2 [: @* i! Y1 }* I, T, | N/ U" _2 m& ^6 C
if (scan.Token == _T ("ip"))
4 L7 G- m' N' u8 Z4 A7 H{ f* ]$ L/ R! g
scan.GetTokenEx ();
3 b0 s7 r5 a( [strcpy (m_IPAddress scan.Token);/ Z* s/ T+ E+ m" p. Z" S
}
, i4 X4 B& Z1 H( H% tand turn it into this:, U$ A( z8 o$ ~' A3 }$ P4 f# L
Quote:
" v% }/ h2 h( t! yif (scan.Token == _T ("ip"))& f/ {$ n' P3 K K$ k+ y
{% e H# U6 d- h) C6 c+ y
/ / Scan.GetTokenEx ();3 A: O8 R) x4 @" ]7 u. D
/ / Strcpy (m_IPAddress, scan.Token);
3 m6 F8 s% L9 K# l" C}
) C4 x. n7 C8 ~+ KAnd you created the solution.
2 f6 f4 ~& Y6 a) D" g) P
& ]. r' z, c- @( g5 |( U8 N# }6 U% D' ~ E2 _# Z {
Then read the Neuz not the IP from the INI anymore. even if put in it; C8 G; l/ C) i; b' x
s# w: a& p9 [( n) ^7 q) C
Max skill's
$ l. w; p9 T5 V- ?! o
7 Z) J& n4 O" b c$ CAll know that, 14 Max buffs, you get all the RM Assist Skills + Skills fromBuffpang and no more space for the YJ, Knight, Ranger etc
+ n( C' ^6 ]& x6 g$ _8 ]- f4 ~% X: N5 p) z- s
With the TUT can provide the remedy it8 v2 c2 z$ L$ }$ [. A
5 f, D2 f! V* w; ?# 1 opens the file SkillInfluence.h* S$ f3 y* [. X* x
# 2 Search
( s; T: j4 Z0 q$ R* rCode:- V! L0 t* _6 @3 B. Y# j
+ Q& X+ K' q+ J
# Define MAX_SKILLBUFF_COUNT 14
) k1 {7 u0 V E/ W! A* A2 Q. f8 Z% r, O, E$ `# N" t, O* l
# 3 Change the 14 to your number (eg 21) and save it from
# n% R# S; C6 j3 n! Q# S+ @# 4 compilation and ready$ @7 M% d. Q. S$ a' ^2 Y# p
# H/ ]0 c7 _* j4 j1 N
0 ?0 u: C4 K4 ]" M. N3 II 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:
5 { f% r$ k9 G: |* b6 k
* |3 b: h4 M6 x/ wdennisdra2 v2 @9 l' Q0 f* A- Q }% G9 i
.Crasy) x+ c) w4 R( ^( [; ?
©ross4 W1 t, h3 j" p& N! H
Sedrika$ }) |$ c1 M# F B+ O N1 V
9 O. b; ?6 y% {- Z( V$ g
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!
& O* J& a. \: \/ C/ Q1 N C7 ]
& [/ N' |# H( o! ]; R% lP.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less; S+ s- a+ v3 E" v: t( x
s* y- ^: S Y. D
7 ]7 \4 n4 z& {5 @0 N: DUpdate 1:
how to turn off "Profiler" in worldserver.exe
+ R( z% b4 `6 S; o: [ V9 Q0 b
/ D$ _" _8 X9 L; F+ z% H$ `: R
: k) \$ L: |; ?& j* H0 ]# gin VersionCommon.h of Worldserver Solution
: p' F7 V/ x7 e! s4 PLook for5 R) H# B- ^8 Z. e) j
; L% v! B. ]: v
#define __PROFILE_RUN
; a' G) t2 O4 W) E) Q# k* U& v) L7 a8 \% o% Q- m j7 V
comment it or simply) |7 `5 K1 j* u1 ~6 f
. F, w/ B- q7 }; s7 b: N( y1 y0 A//#define __PROFILE_RUN 0 `7 u, t% {6 ]5 @3 [: J
0 _3 s5 e0 S$ y A# b% c* Y* f s2 P+ 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投寄。谢谢。我添加更多的很快如果你有病加太
+ w N4 z+ c8 v) |$ x+ g
欢迎光临 飞飞世界论坛 (http://www.ffwold.com/) |
Powered by Discuz! X3.2 |