飞飞世界论坛
标题: 改变最大等级 [打印本页]
作者: 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
/ l% a! X. V) U9 f% ~ y$ g" echange level without Rebirth
& Y5 Z3 H2 K( [0 X
2 g* \7 |8 j5 r: M8 @2 vNow, let us begin.7 z9 f$ F! l; g
1 K$ x8 @1 u, @/ r; L. L2 l9 r. T8 SRequirements:2 Y; Y$ t3 d; P/ K W) m" j
Source7 c' C& g, @# p1 K3 I4 g( k
Notepad / Editor
6 m! u4 O% J. x1 n+ p p- d9 i- H( d$ ]% w
/ / Tips by Sedrika: e$ x4 y5 k) _& A! L# d, ^
t& m; y* D* ?1 W- v) Q6 a% `9 o
It is up to you how you do it ^ ^6 `! p( k# v6 Z
: @' [0 K7 s& w3 ?& R
Go into your source folder and open the definejob.h
3 H- s- o2 z! cSearch there for:* ]6 K A. e3 T# \6 {
' e+ s4 g. R+ C* ^1 l
#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå. c* Z2 x Y: Y: \4 V
#define MAX_LEGEND_LEVEL 129
/ [4 v H; P8 d- r/ C+ \#define MAX_MONSTER_LEVEL 160
# }7 U- D, @( b) ?0 V; X: F#else // 15Â÷ è÷¾î·Î ·1o§è®àå
N$ ^7 q" A7 z' T! q, `! |#define MAX_LEGEND_LEVEL 121
$ O9 l+ }" i& Y# s0 M#endif // 15Â÷ è÷¾î·Î ·1o§è®àå
8 N) n: N. b' I5 g
: Q7 D# S- q+ ^ w7 l! @6 Z f' z" y' b i/ x
Red: Player Max. Level
# }8 G0 {" F' h: S- ]; G- _7 Z: KGreen: Monster Max. Level
9 T( U1 A% T9 H
) o9 N5 o. w* s$ dThese changes as simple as you want.; s3 k1 u/ E4 |' k( j
`# E* K' N* V' Q6 C( P
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 Q$ t& Y/ R4 \% F: D
9 m$ O8 b y1 K& y$ `. U
Part 1 of blocking CE
) V. j: g: y8 S' q2 S7 G6 K
1 f5 ^. F5 R1 q- ]* J& ^In this tutorial I will show you how to change the Head of Mark flyff.0 l. O. Q4 b, A/ F# E
The current Head Mark is well known, 5E, which results as a string ('^').
; T* x& y. k& e q! a3 m- f% T/ q+ u3 q2 m
For this we go to the World (Project) and looking at the Buffer.h after thistext
7 W t) P8 C4 CQuote:
1 ?) U" D% K$ L8 \0 W# Define HEADER MARK '^' / / Normal messageheader
b+ b/ {. E) }/ R# Define SYSHEADERMARK '%' / / System message header( `( g8 E8 C& A$ n, @4 N# q! G: ^* x
What the Sysheadmark is looking for is not even the top 5E.$ ?7 ~% X/ A" b3 @
Change this and it makes the CE Not work on server.. T f. F) S/ u8 G3 ~4 C
h4 }4 ?* ^ u' [/ uThen Tom's anti-hack is no longer useful.
6 F% \4 o! Y2 L8 m7 L6 {% u' G6 a; `' J Y
LG Sedrika
Part 2 of blocking CE
5 i6 I% i( j& @! L* [8 }; a/ R7 L# o, x0 ^) E3 _1 s
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. ; B8 ]7 e) o; s0 j* d$ W8 }
What does this have an advantage?* m* }+ U [4 T; h- g5 n
The editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself ; j9 W$ b" a7 y& M0 F
9 p# {' {- S$ c: B0 z# ?, O
% j4 d( M! e ]First you need to get open source even know how you do it, is left with you, andyou do the project on the Neuz.
5 Q |( B# b% K9 \ D
- [8 E- l$ v4 BThen search for the following content in HwOption.cpp
7 ?% }( t, p7 i
+ c0 O u9 y; x h) ^9 m0 B( l/ h: z9 V4 u$ d; v& q8 B
if (scan.Token == _T ("ip"))
* Z' U0 e2 w8 L8 d- w+ [{: J7 C0 K5 ~& L% `# Q* @
scan.GetTokenEx ();" ^6 m$ |( f& A+ E* D+ g5 ^1 @
strcpy (m_IPAddress scan.Token);
9 ?# `' i1 ~+ s1 z2 a7 `% n+ [, F}
: b& P5 N3 V3 |: x9 }2 v Uand turn it into this:4 }1 K. X7 @+ u( h7 e" \
Quote:/ v. k. ]3 Y3 K Z, z7 Z% t& }( l
if (scan.Token == _T ("ip"))# V9 P7 w% j! }5 ~7 p' }
{4 W* @) s* D0 t$ P P4 b8 Y
/ / Scan.GetTokenEx ();& i0 w( I& P1 B% _1 c
/ / Strcpy (m_IPAddress, scan.Token);( r. o# L) t% Z, t2 A/ M+ F- e+ o
}. n7 B2 D9 b ?. ]
And you created the solution.
6 `9 ]: o" [- B
% U! | M7 b4 p0 B' N+ U+ F2 E
( i3 K/ z; b& K/ G! S8 eThen read the Neuz not the IP from the INI anymore. even if put in it* O) c. D. a3 M
4 c8 ?9 x7 S! R r* C5 T3 j' d! X) m
Max skill's
, h( b* c& {3 j# | r8 A* m+ l8 O/ D2 ^. B1 w8 @+ F. u
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
6 n$ N5 l" ^3 e8 V! ?7 l1 |2 W
1 u4 ?( i* Z. H7 l! YWith the TUT can provide the remedy it
4 u0 l, ?! w N1 p$ [, T% \1 j5 t& I8 s1 n2 ~; J6 }, j
# 1 opens the file SkillInfluence.h' l, L2 Z( j0 T3 O8 g* Y1 \
# 2 Search; U: }) F' X9 X
Code:" U9 {: m1 W, `4 ?2 q0 z2 x5 o" K
! K u; G6 j$ Y5 z/ R# Define MAX_SKILLBUFF_COUNT 14
1 P# T# i/ H5 [2 S5 m" ^, t/ q4 ^$ r8 n
# 3 Change the 14 to your number (eg 21) and save it from
l9 \$ ?% ^6 _9 V( ]' r5 F# 4 compilation and ready
. V2 ~; C' T* D- x8 E
4 G7 Y, [8 q5 Q# n% E
4 }) {8 F6 A2 J% ?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:
+ a3 e: J; _/ u2 [1 @: f
4 w+ z" k) T% ^* x$ r3 Ndennisdra8 q: E# z: ~( ?: o
.Crasy+ `* X& e: |! o) n
©ross
4 Q; `# |5 P: _" Q; J$ l3 c5 _7 G1 }Sedrika2 y2 I( i2 B& v6 W8 u8 [
5 c' W2 i: i5 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!
; `, n- [# D0 B( r$ J" \& b, a X7 ^* j' q2 t- Y( {/ K, f7 {5 O
P.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less$ O9 }9 M( r5 K* i" b! Y# Q
$ o" w) h+ I$ q8 G8 B! j" P( t0 @) ~( C7 w- Z/ `) p
Update 1:
how to turn off "Profiler" in worldserver.exe
. k0 ]! G- j& p+ j) j1 h+ E
3 s& p) `0 N; C3 x+ t+ y
/ B) q" B% h+ n9 w- V: T
in VersionCommon.h of Worldserver Solution/ a Z) E1 y5 a, T. D
Look for! G3 W7 s" U4 Y$ ] @7 s7 X1 r* {. i
+ g5 M) L0 g) U+ } y! \/ j
#define __PROFILE_RUN
6 |1 F' I% W/ p2 w1 V. ]2 X6 W! v) p. _: B9 B2 a
comment it or simply
! f$ h- b6 W; d$ I7 I( t" @" L' Q1 D+ ?9 j, O
//#define __PROFILE_RUN # A1 S4 N) r: v" D/ E
5 N9 j% s( F2 l, e$ L$ h- }. K6 j! {; `1 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投寄。谢谢。我添加更多的很快如果你有病加太
: Y" r, \ q8 [3 X( Y3 w4 P8 X
| 欢迎光临 飞飞世界论坛 (http://www.ffwold.com/) |
Powered by Discuz! X3.2 |