飞飞世界论坛
标题: 改变最大等级 [打印本页]
作者: 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
3 P+ k7 p. X' j, @- z
change level without Rebirth) ]7 j* P* l2 p" R8 i
4 g8 c# T. ?2 T) v+ U+ M- d4 [
Now, let us begin.4 D4 Q' }9 f, Y
- O; B7 {9 @* b6 Q' ^1 x: R
Requirements:
) G# |$ N; ^0 N# JSource0 H. H" f. E/ q1 B/ V' a0 d% f+ ]
Notepad / Editor- K( S7 k- s6 Z! }2 w
! L1 m" O" z1 G/ @/ / Tips by Sedrika9 ?3 ?0 k: C* \0 i: h
, i+ s; t7 |0 G$ ~. [7 DIt is up to you how you do it ^ ^" Y$ a! F% _ P/ u# h! ]
' I4 ^/ O4 n5 l/ C
Go into your source folder and open the definejob.h
% u/ ~+ X3 r B+ H( cSearch there for:" R+ m$ ?. o$ @- J; j
" J& i) m1 k# {- v* J#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå
1 l$ Q& i8 b4 ]6 U( C* i" C; z0 e#define MAX_LEGEND_LEVEL 129
0 L# ]) a3 Z4 `#define MAX_MONSTER_LEVEL 160# z* V0 C$ Y! ~# e+ ~
#else // 15Â÷ è÷¾î·Î ·1o§è®àå
9 r& Z( _( p+ a#define MAX_LEGEND_LEVEL 121
0 h2 D9 B# @4 P' S#endif // 15Â÷ è÷¾î·Î ·1o§è®àå
8 R( g0 Z; w8 D. _% N* H( ]' b, e- `+ J! z$ T+ v
1 X5 Z% |0 d! p" ]) X/ f/ k
Red: Player Max. Level3 m4 r4 Y& K+ t0 g+ t7 _" ^7 G1 t
Green: Monster Max. Level, Z0 {; a U* G6 S/ D" E: |4 _) J
- a8 `0 s$ [6 y. WThese changes as simple as you want.
# P, `( V: {8 J* A, u# y4 b7 }# H( e* g7 R' U4 r
Then you have to just recompile the World Server Files + and make your clientin the Definejob.h the same changes as in the source.
& T, X* _& Z6 D* Y
$ K- @3 O* G7 Y c
Part 1 of blocking CE
' q) i# M. L% b+ O' u. G; T, q1 g
Y$ q# j$ Y+ p( |# {: K% K% kIn this tutorial I will show you how to change the Head of Mark flyff./ d9 o( }* K, {7 V. P, u
The current Head Mark is well known, 5E, which results as a string ('^').
9 v# `! v3 k, W* N# b7 Y/ b! F8 Z7 v. m$ m% ?- ^3 F& u4 S
For this we go to the World (Project) and looking at the Buffer.h after thistext
, [; Q0 ~8 w7 P/ G$ @, F- bQuote:7 E' x: R) o4 I' `7 s+ g# p
# Define HEADER MARK '^' / / Normal messageheader f/ v, [/ m( P3 C$ k5 e
# Define SYSHEADERMARK '%' / / System message header* J. f" H# r' b- r- p; E
What the Sysheadmark is looking for is not even the top 5E.
; e# T1 ?+ W4 KChange this and it makes the CE Not work on server.4 N& z/ s. m/ L2 a9 z( A
+ I+ p/ @( P6 x+ ^Then Tom's anti-hack is no longer useful.! s# g) ]$ s: w4 b+ ~' h& C% D& b
/ U& ?" d, Y3 D+ P. t8 M$ T4 fLG Sedrika
Part 2 of blocking CE
- j6 ?" X* l1 v, K7 v6 T
1 A& A/ A5 @# _- tIn 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. : F: A2 v) B3 h6 L
What does this have an advantage?
" f8 [8 ?# o0 j" i3 C, @The editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself
# p1 t/ O+ ]6 x
& n' Y1 c) X* Y* t2 ~5 V2 I
& z D% x" C0 _5 V" A/ \First you need to get open source even know how you do it, is left with you, andyou do the project on the Neuz.' _! h& `, ^- o
7 {& G% ~* [' p i9 P; @Then search for the following content in HwOption.cpp
2 A% }( {& W t+ T0 y# H- F! K }( P4 y; U
8 t4 R4 h/ T& Z
if (scan.Token == _T ("ip"))
7 F2 v2 I1 U! q+ K L1 C{4 E9 t6 z& F1 q! }- ]
scan.GetTokenEx ();
9 T3 g3 @$ V: @& dstrcpy (m_IPAddress scan.Token);1 n$ ^' G/ v! ~2 L
}
8 I+ ~$ W8 i! [5 J. pand turn it into this:3 n' @0 z- g- E: y4 f, F8 p3 q
Quote:. K* m- x; P% r1 T& _* @
if (scan.Token == _T ("ip"))
+ p: p/ x/ E; N" W{
- e* ]& \+ X! V, u+ x7 a! e/ / Scan.GetTokenEx ();
8 h$ `8 y( t& @6 z/ / Strcpy (m_IPAddress, scan.Token);7 H; r9 Q0 o/ i7 f0 D* z- d
}5 p$ B( r, |# @1 p
And you created the solution.
- F. U5 r6 u- Y' M% Y9 a3 y+ l2 o- p# ~; M3 k/ @! I
4 D( s. e8 t6 r
Then read the Neuz not the IP from the INI anymore. even if put in it! G1 a8 N# u2 I
1 u) J+ o! K4 i7 U8 R/ v9 j
Max skill's
* S( f1 _5 A$ i3 A5 l9 g) M; W# J, _- i" @
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 ; I+ g! g1 P' X6 d1 D. s8 q5 J! C
) x9 ~0 f0 y$ z" V% ?3 S4 Y
With the TUT can provide the remedy it
8 I; V- D1 g9 W) [" U0 A+ n# C) y9 N1 H$ @
# 1 opens the file SkillInfluence.h
L/ F( {: u6 j1 [- \- c; h# 2 Search
4 ?! R- y9 x PCode:: k W% K. j# `+ N8 H6 {
# H e" [: q" k4 z0 E" @" W: a
# Define MAX_SKILLBUFF_COUNT 14
- ?* t' n0 G m# b# Z8 `. _" W# i, }' L5 r% w
# 3 Change the 14 to your number (eg 21) and save it from
: A5 u$ j2 f' I6 N( ?% A# 4 compilation and ready
4 C1 T0 }* u- G, B) j
; z1 M/ ^# {1 A1 k8 [4 h
0 g5 X4 z; W2 f9 ~0 t7 }/ UI 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:$ x7 g3 @6 i$ V+ B* c9 w
" E/ o$ ?/ ~) Z0 d9 m
dennisdra _3 V3 Q' {$ t; J: j9 _
.Crasy
( h: t' s/ y3 R# n©ross
/ a* \7 k7 c3 I( V6 Z: Q; C3 W8 RSedrika
! d2 j3 e8 k9 h8 H
. q. D7 [6 F7 }1 o- R, P% reverything 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!
! l6 W. B" k( L2 ?% m! O- M5 o# o8 S! k& s, [2 X
P.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less& p1 [% S& n. H; A) v) ^' h
: L$ f, b2 D6 u5 X( o' r& H
7 V- f1 y& ~8 jUpdate 1:
how to turn off "Profiler" in worldserver.exe
p- q* \' i. h/ @' z3 V: q6 }; j1 U9 x1 o; E* ?# w
% f- e9 I/ f9 z: i6 D4 W6 ]/ y
in VersionCommon.h of Worldserver Solution
- y4 k2 _ a: z& g5 x2 YLook for
3 l8 l, p) |2 m9 Q
+ a3 ~4 Z8 Q9 N#define __PROFILE_RUN; ]6 D2 ?4 b0 }! E9 |# C2 q' Q8 t* Q
" t/ E8 L5 ~2 p7 p4 i- mcomment it or simply
, q0 _' w6 {* `; k
' n. m+ ~, K3 u- n//#define __PROFILE_RUN
7 _8 Z& z! n# q5 z8 U
" M$ X9 Y& t. o( ` Y q
- o) o/ d' N: S2 ^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投寄。谢谢。我添加更多的很快如果你有病加太
# X$ n) z% p1 x& V1 R" e
| 欢迎光临 飞飞世界论坛 (http://www.ffwold.com/) |
Powered by Discuz! X3.2 |