飞飞世界论坛

标题: 改变最大等级 [打印本页]

作者: 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
' J4 \( X* S1 r( _1 R' |
change level without Rebirth1 l4 M& o5 P* @# n

% f9 M3 p. Z* F9 y' D7 J+ p' a! ONow, let us begin.+ S9 l( b; L# m  i% Z
3 }1 |- G7 s9 L% u  T
Requirements:
5 c1 Z+ w6 W/ Q/ v3 t3 n( Z$ FSource
  `6 v' A6 b* E2 |  yNotepad / Editor' t  r/ f7 k; B8 U1 _- f
9 j+ ?2 E0 H- K4 [9 V
/ / Tips by Sedrika
8 A1 c$ |! G+ g  Z5 r
( D4 U( O8 e. }6 L- hIt is up to you how you do it ^ ^
: N( u0 ?5 Y& ^6 p4 U! Z' y3 a# Z+ R( G1 j' [
Go into your source folder and open the definejob.h2 c$ Y6 _) z  s9 p# F1 y: u5 W
Search there for:: D9 {4 t- _/ {$ S

2 k$ M, h$ S- K3 P" L5 z: \9 T#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå5 B6 n0 e5 B0 w! s: W' M% [6 W# V
#define MAX_LEGEND_LEVEL 129
+ z3 l& S$ F' V# v0 n8 O( t5 l! e: Q#define MAX_MONSTER_LEVEL 160! G5 w4 e1 ]$ C/ C. {
#else // 15Â÷ è÷¾î·Î ·1o§è®àå" G, b5 V& V3 S8 A
#define MAX_LEGEND_LEVEL 121
9 G/ S( X" m4 T) M" q. {#endif // 15Â÷ è÷¾î·Î ·1o§è®àå & G  M' j* d2 u+ U0 C

" R. K. i6 E% _
* F  g5 n( M9 ~+ }; nRed: Player Max. Level9 Y+ o- w) r  A( v: U$ X, B9 p
Green: Monster Max. Level! X# g( H4 M' _& }' g: {2 c

& X" ^4 e3 V6 [  j" A$ aThese changes as simple as you want.
' i6 K: ?% s) U% A! s% R# h8 R3 J1 P( b! j% K  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.# {# ~2 ?1 x; h; N( V+ q1 f" e; P+ G' t

% d7 Y. t2 M$ N; i6 c' f) d
Part 1 of blocking CE

! n/ F9 A5 ]" D0 @& |* l* `, P" n' t) V* n( m+ E
In this tutorial I will show you how to change the Head of Mark flyff.- ~" M: ?6 E, O% ~9 j; |$ F" m! m
The current Head Mark is well known, 5E, which results as a string ('^').) h+ h3 m' b  q7 `

- `$ @1 F4 I7 kFor this we go to the World (Project) and looking at the Buffer.h after thistext
7 ^/ `8 a/ G% L6 D) e: Y) aQuote:
2 _9 R( C2 F5 P, W# Define HEADER MARK '^' / / Normal messageheader
- X; [6 I5 P0 B6 v; ?# Define SYSHEADERMARK '%' / / System message header. C5 z! U6 f* p2 O# N' N& T
What the Sysheadmark is looking for is not even the top 5E.5 k+ l% h; Z, I% W7 e
Change this and it makes the CE Not work on server.3 H6 I8 B+ m- X# w7 G

- Y! r" w% z  f' t1 G" s; a# yThen Tom's anti-hack is no longer useful.
1 [6 R4 I2 z9 d( m% @) r0 Y3 g
: w6 ~4 t# C! QLG Sedrika
Part 2 of blocking CE
! s% M- L& f& p; v. @
; }1 Z8 E2 ]/ k& m4 h
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. * r9 N4 X4 r, C+ M) z
What does this have an advantage?8 r4 o/ M/ _  @* d4 E- X
The editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself # {1 m3 z- j( [1 `7 w
2 B$ m+ Y( A; m, Y* N- c
% i# m. m" A$ Z4 \% F& |8 K  T
First you need to get open source even know how you do it, is left with you, andyou do the project on the Neuz.
$ ^0 r4 m: J4 ^* A( P' K+ [% e1 z
' u8 I3 R  R" y' y( y2 S0 }- l9 |, |Then search for the following content in HwOption.cpp
  \! V" s7 i- ^0 J
1 f% E$ Z' A5 q; I4 N* i7 q, u) u* S
if (scan.Token == _T ("ip"))& z. P0 @! d6 e# ~
{, x; o) V- b9 _1 ~* O. k
scan.GetTokenEx ();/ _$ p0 h' B2 D$ W8 Y; H: T+ `8 J
strcpy (m_IPAddress scan.Token);! R: j& x" ^( ^- }; X
}
! ^+ C: r) J7 I: n7 {5 D& jand turn it into this:
. ]1 |5 H, c. ?' H( I! n5 tQuote:5 Z8 ]4 i$ r2 i
if (scan.Token == _T ("ip"))) r. m; j3 I1 [  H6 u
{
$ a  A, ^% A$ e" w' B/ / Scan.GetTokenEx ();  ?; i0 U! A1 ^, z
/ / Strcpy (m_IPAddress, scan.Token);
1 M) K! N3 |' G+ h}( i' k  r" o# Z
And you created the solution.& U% E" W4 M. v" T
' Z" j9 J- Z( q5 S/ Q2 W
7 ]! b2 m2 _2 J+ z  O
Then read the Neuz not the IP from the INI anymore. even if put in it* s7 Z; F8 g5 Q, t
  B) I8 t+ ?' i( ?
Max skill's
+ w5 x; |" ~! }% V
8 X; S1 C* b, Q9 s
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$ j7 i# K. s. h% V
. J# Z( o4 ]$ J) ~7 ?, I
With the TUT can provide the remedy it
7 c& _8 H7 b# K/ A- A" y. U* V( ], J) B. H( P; `7 p% C
# 1 opens the file SkillInfluence.h
4 k: V# Z) Z; `, i1 @# 2 Search4 ~$ ~0 o- T) m6 U
Code:  l. w8 k3 n$ @" b1 u2 c* A

- h2 X, g) Q: Y. I; n4 G% v+ _# Define MAX_SKILLBUFF_COUNT 14( Y$ R' g4 y/ B: n4 u: ^
/ i  T+ x% r+ Q! \7 q& ?
# 3 Change the 14 to your number (eg 21) and save it from0 y1 K1 f1 }& T
# 4 compilation and ready
+ `2 ?& l2 h( f0 P9 }. h* z! _7 I/ a- l: X0 n( Y. ^6 W( S

$ L. w: r1 I& qI 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 \6 r2 p6 f/ }" ]
# y# B% \; k. O7 S' a, s, zdennisdra
3 [% n1 D6 c8 r) U. Q.Crasy
9 h' f1 F, E& @! w" a©ross3 E! I. f7 R7 i9 V1 ?
Sedrika
' M+ w5 c- z. u+ I4 e
6 w! n# E% O3 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! / w/ X5 {2 M# h8 O( t5 H8 K
8 M% B0 ^  m" M
P.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less. M% p- z8 R( T9 O) y# \' c+ V8 j

8 `  W5 Q8 `" \
  v$ q( Q9 D, m/ R4 q$ RUpdate 1:
how to turn off "Profiler" in worldserver.exe
+ K3 l/ e, Q6 k

! ^0 C8 i4 w3 ~9 Z" f" ^1 `
/ d3 }$ x+ B3 W, Rin VersionCommon.h of Worldserver Solution6 U$ A/ v0 y! B, f
Look for
4 N2 M, I2 C( E: b' X: c* Y" t1 P" }# X
#define __PROFILE_RUN# _& o8 }5 L: c4 P

# h1 l3 Q2 M! s' }2 Y5 q) tcomment it or simply4 p# ~& M/ x1 Q0 ^* h1 O% n
  A( W# @  P8 Q- a* Z3 q
//#define __PROFILE_RUN
9 ]! j% V! r8 l8 \
/ V: g- A$ z( v. U8 S8 _7 ~+ p& F4 \+ }7 W1 ]- a5 q2 K
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投寄。谢谢。我添加更多的很快如果你有病加太
2 r6 m- k7 }7 Y# ^+ x( K





欢迎光临 飞飞世界论坛 (http://www.ffwold.com/) Powered by Discuz! X3.2