飞飞世界论坛
标题: 改变最大等级 [打印本页]
作者: 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
$ h8 u, m" o" n, P7 @) pchange level without Rebirth. z" T/ L# @) v4 x/ X
1 o. `( k+ ?. a) S, m# WNow, let us begin.7 Q5 A0 C! Q% H, B
" v3 M0 N: p% w, y% O" {1 tRequirements:# p# d% v- E e4 U6 L% x
Source" h, q% h& j) J1 d, C9 B7 V% ]
Notepad / Editor
: e" M) b4 D: w/ _" T/ z
$ |+ o4 O- \" s5 t. `2 R# z/ / Tips by Sedrika
: z# a7 Z" D7 j9 z1 P; Z8 R7 q2 S, w6 J, B) U" \
It is up to you how you do it ^ ^
3 N0 l; N5 F1 p) o3 a. [* h5 l! h" p4 d* H w2 B' M
Go into your source folder and open the definejob.h0 Y( i3 \) A' Y7 Z6 ~2 A
Search there for:, b: F% P+ B/ ~, s) d" `0 ]
' m3 ?4 A; ] D d0 @% l: O
#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå
( D' ^/ O! Z, G#define MAX_LEGEND_LEVEL 129
B+ _+ {+ i8 `$ p+ H I( W#define MAX_MONSTER_LEVEL 160
% o4 E6 Y4 f. c; l#else // 15Â÷ è÷¾î·Î ·1o§è®àå
7 Q5 k5 o" ?) w7 `* M, ]#define MAX_LEGEND_LEVEL 121& h. u8 f5 R0 ]4 Y2 S P3 k x
#endif // 15Â÷ è÷¾î·Î ·1o§è®àå 1 z+ e* d8 T s0 X0 N$ B
8 O5 u4 s6 `) R3 u1 W- E& I4 _+ k% A: l4 ]- J# R, L8 `; u
Red: Player Max. Level
! K3 u% l, F6 V* JGreen: Monster Max. Level$ r' x/ ]9 M8 y% h7 O
8 j$ \! p* o- a0 U8 I1 @+ {' l
These changes as simple as you want." P) l1 u4 P7 o, k8 M
# f* W. B9 U7 }$ S% z7 z' @* VThen you have to just recompile the World Server Files + and make your clientin the Definejob.h the same changes as in the source.! l( G9 T$ A+ \* p- D) `
@4 q8 B0 J& j7 ?
Part 1 of blocking CE
6 x! w- s* r, O! E
* P! ]5 @! k% b( [
In this tutorial I will show you how to change the Head of Mark flyff.
) ^4 B: N3 v: B- G3 p! AThe current Head Mark is well known, 5E, which results as a string ('^').$ O% e+ R$ F) i! {" m' \
2 Z+ H+ M" M4 M9 qFor this we go to the World (Project) and looking at the Buffer.h after thistext
# c' p! P* S3 s) j* [3 Q4 \5 x3 y, TQuote:! t: Q7 v5 c3 H7 z$ n
# Define HEADER MARK '^' / / Normal messageheader( y/ _9 P) \2 C+ i( h9 i: r1 {! k M
# Define SYSHEADERMARK '%' / / System message header: c# d, w/ e H' ^; A3 @
What the Sysheadmark is looking for is not even the top 5E.( Z) f5 ]: b7 U9 Y
Change this and it makes the CE Not work on server.0 j# Y) f6 @! Z5 u% h# R
# }* d, U+ O3 C
Then Tom's anti-hack is no longer useful.
9 L* i* S) b; Q. r5 y9 p
! d7 t) \+ X3 sLG Sedrika
Part 2 of blocking CE
" w+ `* s) ?' h+ f3 W. {* A
, g7 \# r# }0 N# Q0 cIn 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. 9 Z( }! o$ T3 O5 p* z$ N( V
What does this have an advantage?
) i) D9 M8 o* ]! v8 g' C4 f% TThe editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself 5 E* e5 |# w) B
9 {( F9 C* |2 M
4 l& {4 k/ }8 Y; F+ c5 y
First you need to get open source even know how you do it, is left with you, andyou do the project on the Neuz.4 Z9 e- a- K+ E
4 C/ J' P1 i: [
Then search for the following content in HwOption.cpp
v. C% x; w. c& f
- C; R& J; _! Y- D( A5 M
9 i3 w( G2 e' J3 fif (scan.Token == _T ("ip"))
2 X7 O6 E- \, b/ i8 |& n7 D0 ], Y{
5 y5 k0 V$ L: [1 _! Zscan.GetTokenEx ();; p% d+ i% X; L3 s5 T
strcpy (m_IPAddress scan.Token);
* K) j; [& e+ j. T8 a* |}
5 m. H6 d- c6 G' O3 v% \and turn it into this:+ f* F4 K6 _" L
Quote:! I/ ^; t* n5 n% u$ N+ ^, i7 u0 U
if (scan.Token == _T ("ip"))
2 b5 n+ H# s6 }3 e. w1 K{- v# L. Q) w2 @8 j1 [6 @
/ / Scan.GetTokenEx ();& d$ ]1 p5 u y9 U( K$ e2 [9 d
/ / Strcpy (m_IPAddress, scan.Token);, Y7 _3 u* I" Y7 i( r
}; j$ O% R1 n: Z. E7 K# R
And you created the solution.. K+ e6 t% d: K$ C' k7 ~
6 W/ P6 \9 J: F! x% ?3 S& f+ g. ^. X% g. X
Then read the Neuz not the IP from the INI anymore. even if put in it
& E, O, S+ r* v$ B; l: A# ]) N+ \! g6 U+ ^; K9 ^
Max skill's
: e& M/ r# D5 D$ V5 i& M% Z& |$ y
, v/ }2 v/ X* W4 _0 P% NAll know that, 14 Max buffs, you get all the RM Assist Skills + Skills fromBuffpang and no more space for the YJ, Knight, Ranger etc 8 L D, ^$ b( p) Z# s' l
; T0 u) `- o# O) u/ A0 c
With the TUT can provide the remedy it0 i3 [" `* K8 ^& T) U- j3 h4 F. h; O2 V" S
" ~0 B) V1 T6 J# 1 opens the file SkillInfluence.h
3 R, `) z$ a. L7 C; l: L# 2 Search
4 H0 C" V9 V% F+ hCode:
& V: Z7 [& m* x
9 L; G$ L3 F7 N& y# Define MAX_SKILLBUFF_COUNT 14
# v; ~$ C& i+ E+ N; H1 c9 ~ C
+ ^% {9 @7 |4 g6 A1 U# 3 Change the 14 to your number (eg 21) and save it from3 C0 y# q0 t; V0 ~5 R
# 4 compilation and ready
/ ~! b; y# ~1 z7 h4 n
9 d! V1 j& A: h- h$ \9 D2 `- L5 ~5 a# f" y
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:( {; \: W7 ^% P) X) [
. E; F8 t S# @3 J9 _3 V
dennisdra
* U& y) C* h) R- A. F.Crasy
- B. o# o' F8 t8 _' w7 l, M©ross
! q* C9 n) I6 P8 RSedrika
% i* X% n. g; f/ ~$ C, b7 j- ~9 ?7 o0 W+ t* x3 L' |2 `+ T( E A# `
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! 4 b! @; r, L9 j3 y/ K3 c+ f3 `3 D
& [% f3 v2 K/ x6 {/ j
P.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less
. Q: h1 d+ ?; H5 q4 c0 t/ ?% _7 Z0 {* k
5 J1 W1 ]( q0 L2 \9 u
Update 1:
how to turn off "Profiler" in worldserver.exe
4 n6 c g W( C
' m+ a3 I1 |: G7 p. Z
8 o& t/ u* b; P- i- rin VersionCommon.h of Worldserver Solution
2 I T) N- X5 z; g& Y% OLook for$ X4 U- @# F2 Z9 V+ E
. Q: R* X j% u" t. K$ O, @
#define __PROFILE_RUN; n& [" f- L$ U5 O6 ]2 c
* Q; V8 T+ ~3 L A! K) ycomment it or simply
$ A8 {6 i% E. Y- ~4 ^/ G1 g
5 I0 l3 N6 f! r" v5 `+ t' N//#define __PROFILE_RUN k; ]- }+ P. X8 I) \5 w1 q
3 V# H) A: q8 w
5 T+ _$ d& t* R4 Q2 Ycredits 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投寄。谢谢。我添加更多的很快如果你有病加太
+ D) o0 p. [9 _
欢迎光临 飞飞世界论坛 (http://ffwold.com/) |
Powered by Discuz! X3.2 |