飞飞世界论坛
标题: 改变最大等级 [打印本页]
作者: 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
- C o% b) b2 P d# r, O& _$ }change level without Rebirth, A' m i, _7 a+ L6 G" R' h8 v
' m1 _; U. H XNow, let us begin.
H1 _" F6 }; u9 ^) J6 E+ \1 S; N2 R
8 @+ h% @+ ~+ M4 C% w/ bRequirements:) F" t0 E8 R! O( n& b
Source$ C' L1 k G. E8 E- ]) ]
Notepad / Editor4 L" T; v! f9 J6 Z+ c
7 B8 y/ _/ F: I: S$ h3 G
/ / Tips by Sedrika5 p" ?! }: k& P0 o
6 P/ d2 Y0 o0 h; \. c" AIt is up to you how you do it ^ ^2 w4 S- y, P1 k- @
8 x7 c3 r7 u Z3 }# MGo into your source folder and open the definejob.h0 b1 ~- w- l* |. l3 A e
Search there for:
: p2 a) q9 }8 ~) f3 r! o* h
# V) U- ?0 W# Y: p. u#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå8 L0 l- G! I7 g
#define MAX_LEGEND_LEVEL 129
# C' @, T2 Z& h& r#define MAX_MONSTER_LEVEL 160: N5 Z4 ~/ o3 d/ e' y: m/ }
#else // 15Â÷ è÷¾î·Î ·1o§è®àå
9 R: s4 e) E' l, p( j: l4 A& Q#define MAX_LEGEND_LEVEL 121
, G6 V4 I6 n: i4 @7 d#endif // 15Â÷ è÷¾î·Î ·1o§è®àå
& C3 e- \0 T4 R# b8 d
4 ^" P& T4 a" \9 Y% x2 m) N; z9 F( u" j- C! g
Red: Player Max. Level8 m8 t4 [( K( f4 J
Green: Monster Max. Level* h& |; r: H: V3 D+ ]- Y+ p( v
! |/ a9 q& N4 Y# N1 [" t
These changes as simple as you want.( N P5 H ^1 g- h# K
! k; p! g: I0 ^3 r5 y5 C
Then you have to just recompile the World Server Files + and make your clientin the Definejob.h the same changes as in the source.
`: P5 c. }, V( F( M
5 o, o& d# \* z8 ?% ?! t% G8 V
Part 1 of blocking CE
0 S* x; w/ }- b' P# i: J* |
4 _% J& t, }5 ?! o( d
In this tutorial I will show you how to change the Head of Mark flyff." V5 _! Y& b3 s% l
The current Head Mark is well known, 5E, which results as a string ('^').. M6 j: M3 W3 Y3 x
: ]$ t5 b! |% Q; Y2 x. r- @For this we go to the World (Project) and looking at the Buffer.h after thistext; {# t' G6 w; Q! Q$ I' h
Quote:
( ^. s% S( d4 x4 O# T# `) J# Define HEADER MARK '^' / / Normal messageheader: c8 q- t) J5 U2 z; d
# Define SYSHEADERMARK '%' / / System message header4 B' I( U: P% Y* B
What the Sysheadmark is looking for is not even the top 5E.
( h2 i9 e3 \! B. i8 ?9 KChange this and it makes the CE Not work on server.
3 O: B/ [* Z1 a5 g' ~
6 |7 S- l) ]2 a# DThen Tom's anti-hack is no longer useful./ T1 ?0 i3 W3 q7 Z4 t" r+ u
& p+ E3 H0 O- i* K
LG Sedrika
Part 2 of blocking CE
1 g( @* v. l' k. P
8 ]& _4 [( k' ^4 K# F- VIn 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. , p. u, j5 A. g0 b
What does this have an advantage?
1 ?. p+ X; s- a1 V I$ H! qThe editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself " @ e p# m- [7 f' O" p1 T4 f5 X
& S* [: ^( u$ Z0 i
. X: N/ R# L. k; M! h5 s5 ]$ r+ wFirst you need to get open source even know how you do it, is left with you, andyou do the project on the Neuz.8 D0 E7 m3 w1 w( E0 H: k5 N* a: [
" T) }# B: d$ h8 S4 q, n7 l1 rThen search for the following content in HwOption.cpp
$ V* n& C6 w3 P. l5 S2 ?
# [: r+ \$ T A. M- `" D2 }' Q2 i$ g% K
if (scan.Token == _T ("ip"))
, u |9 _) T# B+ e' ]# b{
7 Y( f; I5 k3 _! Vscan.GetTokenEx ();
5 t4 f6 }% F4 }# V V( wstrcpy (m_IPAddress scan.Token);
( N3 Y0 X, [1 b' k6 a6 r" U}
* \# }" v4 T3 a) Iand turn it into this:7 j1 c0 {( B; w7 Z
Quote:% K5 i, D. R0 h2 i% @: |! ~
if (scan.Token == _T ("ip"))) O4 F# D( k" L$ ^
{4 |# u" p3 E3 h8 T
/ / Scan.GetTokenEx ();
' t# t9 P. @, {4 T7 d/ / Strcpy (m_IPAddress, scan.Token);
5 E7 o( }/ i5 W# g}3 `! U9 u6 L4 P$ n' H# k% c2 [& b; x
And you created the solution.3 Z, _3 W. r# Y+ U; g g J
! V. {2 } f9 i3 c0 h0 l
: ^( A/ C* z" H: q
Then read the Neuz not the IP from the INI anymore. even if put in it
3 R" x( U( y" y. K9 Z
9 j0 l$ k4 C" D; L
Max skill's
/ g! ]. \3 S# G% v
; U1 F5 v8 k h
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 9 U' |; v( z, [4 u0 X0 F
% o# y7 ~9 p. @0 p1 x4 x" H }* wWith the TUT can provide the remedy it
5 j5 q# ~+ I0 F& i) Z1 I2 ^1 ~8 s3 d& D
# 1 opens the file SkillInfluence.h0 q# G! ~6 M* ^ W0 q0 g2 T
# 2 Search
, @" f/ ?5 X# C" o" W0 Y3 uCode:( Z: Y4 ^& i4 X" _
, G, B6 i% C( T( p: u# Define MAX_SKILLBUFF_COUNT 14
7 T, b7 \% H O8 a# M) E- f* l
, p8 h. C `' q3 F7 K3 I. b; m# 3 Change the 14 to your number (eg 21) and save it from# L$ T' P, K m# s# ?2 d: v: O
# 4 compilation and ready! H. O, \! s3 V2 Z- H
9 W2 y% S4 G @7 k6 t6 Z% ~1 `) q7 b4 V: g3 Q: l3 G0 }1 K
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:
3 \6 y, b$ r1 @5 _/ P) m4 k8 ?. B# A" g& C2 A. j# b7 j4 \
dennisdra2 D% X; N1 b5 s1 @! m; `2 U+ ~9 M1 D
.Crasy2 G& q$ J# e' L# X* f, J. Q" V
©ross# G. z( D) b! Y9 O9 I8 s
Sedrika
+ l9 Y; \% W1 I; [( I" b
4 {: b8 s, h# \5 _% }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! . C* U6 Z' w u/ k
8 w% v) D3 P* mP.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less! E1 |" J* F, ?4 K7 W. ?
+ Q6 p% V6 G1 y5 Y; Y* i7 a% L. e
i4 } A! ~5 l) P9 u# A, u u! D) o0 fUpdate 1:
how to turn off "Profiler" in worldserver.exe
7 m( K p2 q' W* S s
: i( G+ h1 K# }
/ O. _2 t: T5 O& m8 `4 F, z, r" r8 q
in VersionCommon.h of Worldserver Solution3 a& L* o6 G; e
Look for" a/ j" ]8 ?" x' W* j6 u) q; V
( K# w7 L+ m/ k$ O/ z1 \; X#define __PROFILE_RUN
, f4 Z8 `9 h ~2 [- D P. K4 }# _; N3 n% o
comment it or simply$ p* Y1 H( } e
" g! K1 K3 n% \8 l0 L
//#define __PROFILE_RUN
$ v& k5 `1 w' Z5 {/ w. _& Z5 z* b+ u$ _! V# y4 r" s
& p- [ K8 ?2 T7 i$ y; G8 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( @2 P* J9 D+ u
| 欢迎光临 飞飞世界论坛 (http://www.ffwold.com/) |
Powered by Discuz! X3.2 |