飞飞世界论坛
标题: 改变最大等级 [打印本页]
作者: 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
8 C1 q7 b6 ]9 o+ M
change level without Rebirth
7 G' B5 n `% K
$ B6 T/ y3 G S. k9 E! g) CNow, let us begin.
, F6 \; t- z# R/ ? ^: F1 W# d7 Y: e
2 [2 P7 G0 ^) S5 dRequirements:
K; X' V2 R$ ySource+ A3 s& p+ C$ F$ _0 k# b
Notepad / Editor
; Y9 }2 O+ f: P- o7 ]9 C
/ e5 y! s4 h2 O+ y- I/ / Tips by Sedrika
8 C9 h' N# k: H0 O5 L
Z( ?' g$ E$ bIt is up to you how you do it ^ ^) h4 @0 w6 z, T# W7 f
7 n7 o2 l# i; f7 }: _! j3 {
Go into your source folder and open the definejob.h
1 Q3 ?1 {( X; c0 aSearch there for:+ g! a) A( j% r) q6 z- H7 U
8 k" ^1 [3 j: G#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå# i. c, i" v- B( n
#define MAX_LEGEND_LEVEL 129: P6 N# c* |* C' [. R
#define MAX_MONSTER_LEVEL 160. W* G1 m+ X0 P8 v" h4 f$ K
#else // 15Â÷ è÷¾î·Î ·1o§è®àå
6 s5 J6 b6 R4 ` y#define MAX_LEGEND_LEVEL 121- Q/ O; D) P& Z* t0 _, N4 U# n
#endif // 15Â÷ è÷¾î·Î ·1o§è®àå ; S5 ~$ w) i) e+ r$ o+ [) F
- U5 d) q8 C2 x( {& X
: P. R# X2 ^+ U( _; ?: X- VRed: Player Max. Level
) b4 J% p7 x5 l$ `- w) s3 fGreen: Monster Max. Level% K2 V" W& Z( H" X! ], k+ m/ e
1 N6 V. p; W/ d4 kThese changes as simple as you want.- P) Q. M2 s5 ?- U+ I( \) [
1 E) I( d0 i6 f; k$ i: q6 S6 hThen you have to just recompile the World Server Files + and make your clientin the Definejob.h the same changes as in the source.- ?: w% i( o4 C, b) x% p
1 D0 @5 _* T+ M- x) [' Y3 Y b7 C* v
Part 1 of blocking CE
' k1 U7 R F& v4 w4 Z2 w9 X2 ]- B: H: c
In this tutorial I will show you how to change the Head of Mark flyff.
5 K( b+ W2 A ?6 a" `The current Head Mark is well known, 5E, which results as a string ('^').
/ v# X" @, t' D9 k, t* T
4 M0 d. G4 C8 Z2 T) @1 fFor this we go to the World (Project) and looking at the Buffer.h after thistext" F% }: E$ L: T3 Z/ k
Quote:6 l; E) r) q" K/ D# R( I! j
# Define HEADER MARK '^' / / Normal messageheader
8 `+ z7 U1 ^8 O# Define SYSHEADERMARK '%' / / System message header+ N1 b% Y4 {! r8 z2 C! O% T
What the Sysheadmark is looking for is not even the top 5E.
$ g& A+ o# D7 k+ t2 i4 CChange this and it makes the CE Not work on server.
! V3 o; L5 s9 i9 f3 z$ V
# A9 q1 _7 I H: t( L- cThen Tom's anti-hack is no longer useful.
% a' s$ |2 U3 x5 I+ R
+ n$ B# b8 @) C7 w" @& hLG Sedrika
Part 2 of blocking CE
. j2 ~/ x) ^% h" h2 ?$ P/ F
4 i' w# k6 E9 C |8 E+ g" dIn 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. . A" _5 i0 `% p |# O- \# }, ~
What does this have an advantage?0 U+ `! s+ `) ~( A# g3 q
The editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself
1 u# \+ l% q. {" X E+ e: f8 e9 Y( E6 ~6 _7 e
3 ?: ~2 m( L' b4 v3 ?, ZFirst you need to get open source even know how you do it, is left with you, andyou do the project on the Neuz.4 p. e2 f' w# w# ? | B" J( [
- {4 S% y3 s' }+ D( YThen search for the following content in HwOption.cpp ! c4 ^ W% N1 G+ q7 d8 m
) g8 g2 q- Q% C- ]* M( Y7 _3 Z
; A( g# o1 j+ ?% a2 cif (scan.Token == _T ("ip"))
* \$ g/ I, P7 r0 |4 _{
3 k! e/ |$ H9 Q( r( qscan.GetTokenEx ();
& r9 B- l5 {5 q1 ?strcpy (m_IPAddress scan.Token);0 W0 Q+ B6 a5 m0 k+ S0 O4 {
}- r& x4 h% H' J% X! A. T2 ]5 i0 ]' N0 c
and turn it into this:, _0 H3 W7 g5 T3 K
Quote:7 Q3 d* i/ E7 W+ ^8 j. l2 a2 M; S
if (scan.Token == _T ("ip"))- y' D7 q8 L+ O' a- p
{
2 f- i; K9 W0 Q& g/ / Scan.GetTokenEx ();, a; A4 D! k) _" P. u6 X
/ / Strcpy (m_IPAddress, scan.Token);' ^. W8 [/ I- b8 \% O
}5 k8 b/ I/ c% Q# a5 h d
And you created the solution.
/ k1 z3 M7 W& ?6 ]! {4 t
* q* j6 Y3 L# w O- @3 H F. {$ Y3 b+ i
Then read the Neuz not the IP from the INI anymore. even if put in it
' u0 J4 j6 O" T+ r% ]
6 A1 e: Y' k' U8 |6 E# U
Max skill's
/ m1 o ~: m8 v/ H( q$ x
8 X7 N4 _; X+ B- EAll know that, 14 Max buffs, you get all the RM Assist Skills + Skills fromBuffpang and no more space for the YJ, Knight, Ranger etc + S _4 c; S. v+ i8 \
2 o) e3 @ ]& c% y. X& f! h' c/ P
With the TUT can provide the remedy it- X k+ G$ i! N. c! P% f
5 d, x) ?6 z6 u0 E. Z) s8 L$ n
# 1 opens the file SkillInfluence.h
1 v# j- l7 R3 l9 @+ n8 J. O5 D8 c# 2 Search( J1 {; z5 `; J) P+ P# s
Code:5 j! V u& A7 ~( [
7 E6 M8 u5 Z( e: y
# Define MAX_SKILLBUFF_COUNT 14
! _8 w0 } z3 z! _! i3 A! a- Y
" V2 O" N) i- h- P2 c& o# 3 Change the 14 to your number (eg 21) and save it from
* X! l* O1 x0 m# 4 compilation and ready" T6 c! n# U; x4 I3 s0 p g/ W
* t' s5 q- I: f% v0 L3 u6 g0 A" i) i5 b3 ?1 D; n2 i
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:+ F8 G# \7 p0 i1 R% J" {& S
* |9 O1 o) u7 `3 H b3 [4 Tdennisdra2 m8 V9 I9 ]9 y
.Crasy
- ^: ~$ p: G' M* v1 S8 a/ O- J: a©ross
) d [/ H; m/ G7 F9 @Sedrika: v0 z9 q }9 B/ B- B6 @
" `, |1 v/ Q9 F$ Qeverything 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!
b1 S* \* g+ P( j( `1 f: L+ b. S/ V: G$ D6 m/ y5 [' ]' B) n+ H- E6 N' [
P.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less
: M1 p+ B+ Y% i3 P( J. a* x0 e. Z" J# c4 n8 _# N, B4 u; c
; e; l3 I! b( U: m0 {7 YUpdate 1:
how to turn off "Profiler" in worldserver.exe
1 S; z0 F& d- {! ] J$ U3 ?# E: v2 E+ @/ i0 q
6 l- h8 W1 t0 ]1 P& Oin VersionCommon.h of Worldserver Solution- R, ~3 x8 H/ u r# q9 j
Look for7 R/ O. Q0 n; t0 B5 a
- O+ c' Z6 u0 x# ~6 ?& }/ [#define __PROFILE_RUN9 g- R6 M5 } I5 V: ^. s1 V8 N
$ x3 `5 Z- c& F6 Y; w
comment it or simply n! M7 B3 Y8 k0 ]! `! [7 A) X
U, b% T& c4 {8 E! k! b//#define __PROFILE_RUN
: J2 ?1 O P3 o, \6 a0 A
* M4 Y0 d( [; K; q
/ i! M; U& M& t9 d0 \4 Ucredits 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投寄。谢谢。我添加更多的很快如果你有病加太
0 u" d7 \+ p' ~0 ?3 n9 z
| 欢迎光临 飞飞世界论坛 (http://www.ffwold.com/) |
Powered by Discuz! X3.2 |