飞飞世界论坛
标题: 改变最大等级 [打印本页]
作者: 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
$ R# L5 a; Y8 x" C1 t. P. \ L6 e
change level without Rebirth; b- B* {3 y. O1 \" I
8 y, _: F7 A3 J& F7 B" B5 F: x% q
Now, let us begin.' c/ @9 d' f v: }5 t3 h9 u
: o4 Z. A. N8 r/ sRequirements:" c$ V* t" e' ?5 T: X* R
Source
9 |9 I/ }& a5 O7 k1 DNotepad / Editor
9 F3 [; F/ E% w9 W9 x- p* r8 r6 Y# T; {" V6 F* c! y& ~/ I
/ / Tips by Sedrika
1 o9 P& W7 ~9 r
0 e% x, a. X4 b, w5 fIt is up to you how you do it ^ ^8 W2 K9 C% t6 C7 [
2 b ]6 t' k' |9 N; ]! u0 QGo into your source folder and open the definejob.h
' e0 u- v/ u- l0 g/ Z+ X6 d% SSearch there for:
( o2 c9 l2 u) j0 s& V3 _! [" f2 {1 f% D$ t. \/ b
#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå+ Z. H% M5 d& G" D
#define MAX_LEGEND_LEVEL 129- I% z; y4 N G5 P+ j* |5 [ F
#define MAX_MONSTER_LEVEL 160
( i/ h5 l, W4 I) c) M/ t5 W7 _#else // 15Â÷ è÷¾î·Î ·1o§è®àå
1 U0 R/ @6 U/ R' p8 d#define MAX_LEGEND_LEVEL 121) M8 I6 r$ r/ C8 E
#endif // 15Â÷ è÷¾î·Î ·1o§è®àå $ P( u( r w- L( Y/ B
l( T2 @! q/ E
1 T! L3 q" i* kRed: Player Max. Level2 C2 L8 C- X2 q+ X; N J7 E7 a
Green: Monster Max. Level
; Y. W5 Q" f, u7 G+ e- B9 E* w" h& d+ ]
These changes as simple as you want.
2 D9 b9 x1 A2 U. I/ X$ }1 | I7 @$ ~. S }* ~" X. l' S
Then you have to just recompile the World Server Files + and make your clientin the Definejob.h the same changes as in the source.+ Z# H* q, }- Y
( l" M5 z( \; }
Part 1 of blocking CE
& B8 v* r3 N9 Z$ w/ y' N
% l+ {0 d r: u/ E* _In this tutorial I will show you how to change the Head of Mark flyff.* c$ { S& d! a v
The current Head Mark is well known, 5E, which results as a string ('^').
& d" L. A- X) R& Q7 O& }# ~: k
! `2 i# ?9 ~" }For this we go to the World (Project) and looking at the Buffer.h after thistext
7 }0 a4 v9 h9 q; C. ~! O0 CQuote:
8 N5 I5 U" \# {' Q# y. W# Define HEADER MARK '^' / / Normal messageheader
/ J) ^/ l7 a( l" `9 }& g$ z7 r# Define SYSHEADERMARK '%' / / System message header; d3 q# f! x. O: v
What the Sysheadmark is looking for is not even the top 5E.
[# T: ]3 F" D mChange this and it makes the CE Not work on server.
. g) q* U+ m( ^8 @, T4 t* Q, G8 X% H
Then Tom's anti-hack is no longer useful.* @! M; \% N P
; @, U7 l' j ^& P0 s9 \
LG Sedrika
Part 2 of blocking CE
$ o6 n, ?& w6 }" I7 ? C0 Z4 O
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.
% _* j `; k/ C; }' V$ PWhat does this have an advantage?" M, K: E5 z7 m, V& _. J
The editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself
+ Q+ r9 @6 G9 l* h7 c* \6 O, x0 I
9 l% V, z) U9 ]! s
* k4 \" I' M0 b9 [9 X. [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 e) [- h$ }* W$ m0 Q8 e4 U( }6 J0 d. ? w9 S, G" d
Then search for the following content in HwOption.cpp
6 i0 x/ z$ m. h g$ k) S8 H7 P+ E( Z: ?% A" Y# M
; B# `( R0 c z: p( y
if (scan.Token == _T ("ip"))3 D4 Y% I- l5 M; N% A; P
{( n7 i* V: M. b) Z$ w
scan.GetTokenEx ();$ ]' _: F0 W, R6 t; e% I! ?
strcpy (m_IPAddress scan.Token);
4 n7 s7 ~" W# I2 R}& E7 q% [% H% b1 g) P
and turn it into this:3 g" s6 f2 @3 W8 x$ W& c
Quote:# ^* G& \2 m) ?# `
if (scan.Token == _T ("ip"))# z/ {) Z# s, d2 Q; x; ^
{+ b3 j$ X ^! w$ U7 F
/ / Scan.GetTokenEx ();$ o2 d& ]) E! i" n/ N7 j* ~- V
/ / Strcpy (m_IPAddress, scan.Token);# w2 D/ s1 a5 u! \3 d* R/ E w
}. V# o# B r! t
And you created the solution.; C; ^+ T- Q# b: R* N
/ [$ h' i/ a6 m& G* B: X: n4 _9 r) l* b! m1 W+ U( }
Then read the Neuz not the IP from the INI anymore. even if put in it" C8 K; p' V* p# w& R4 G8 K7 _
+ r0 C* T, A2 B8 F- r# D! i
Max skill's
; O+ W7 l* g; Z# G) v; g/ x3 @: O
7 q6 x& V2 ~4 a; Z( O
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
9 x- Q- j0 ] L* M& ~' O: d
* T4 t7 d& w+ Y3 k" }' k1 F/ z+ mWith the TUT can provide the remedy it
# P- v3 q. }0 Y/ a/ C
4 |7 i1 o; s: w7 [' e# 1 opens the file SkillInfluence.h) s: A+ Z, m4 u7 k. x- C3 t
# 2 Search: v# D0 C8 D5 Y$ @( m
Code:: i/ ^/ S4 _ O' J
# ^ |5 b1 A7 ~
# Define MAX_SKILLBUFF_COUNT 14
6 V) \! T, x8 n# e+ g6 ^
' d. j* n3 A a" ^) M# 3 Change the 14 to your number (eg 21) and save it from
5 Y0 N+ E- l' y3 Q( a. @# 4 compilation and ready! d8 S+ E C# m
5 b8 J* E0 y% m: N, f
# q3 `% A/ k/ O: E
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:
- U* Z/ U# E3 j. F/ M$ s* I, c' t0 h4 W
dennisdra2 N3 I7 z: Z' F$ x+ W% j& D
.Crasy: w+ t1 {5 X# f5 t3 v; M. {
©ross
! w: H+ N& {! |' l! ^) i9 hSedrika
8 Y/ x$ f$ V, H% X+ G2 N+ ]- c! S+ o# Z9 W) z7 z
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!
0 M+ t4 c8 S6 ~& i4 C! K7 S
8 z, b. @0 y! {P.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less
8 Q7 p' X. S' ]2 b- U: {0 R( N+ \$ h. K5 {! w8 j2 V: m
, W$ H( o2 E$ n% B6 _% E; C; J/ q
Update 1:
how to turn off "Profiler" in worldserver.exe
/ \( I) k, l& }
& q7 P5 }* S7 {: `% _; U4 T4 y
in VersionCommon.h of Worldserver Solution8 V! q1 B4 d0 E; k. H
Look for
# \9 H% H0 F6 I& W, Y2 Z" z& R# M
3 |9 S Z9 ~. h& _5 S; y1 @$ _#define __PROFILE_RUN
- u* ^) v2 x1 K/ I8 \7 q( Q. F% m9 p7 \( x1 |8 l
comment it or simply; p+ v6 U' u$ G& a! F w: S, ?3 i
( D0 s; S8 M, |, Q5 @
//#define __PROFILE_RUN . Y/ b' X# w. w& `
; c; u6 Y7 |0 C0 u, C; b$ @0 t
5 X9 n+ J4 C$ A) ?1 I( `
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投寄。谢谢。我添加更多的很快如果你有病加太
8 d. a) j L/ Q/ `' f
| 欢迎光临 飞飞世界论坛 (http://www.ffwold.com/) |
Powered by Discuz! X3.2 |