飞飞世界论坛
标题: 改变最大等级 [打印本页]
作者: 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
/ y/ Q3 m+ P2 ]8 T8 X2 I
change level without Rebirth
3 u- ]6 _' D) i/ O5 x# l: @
5 o1 A0 o1 s( {Now, let us begin.$ s6 S, c$ ?+ i# Q
+ f" H5 b% C5 y0 m, D6 F8 @! v
Requirements:
9 ]4 c: H$ e c- {4 c: L4 @Source
; E3 a/ q: ^) _Notepad / Editor
2 T; @' g! v0 Z) u3 Q) }1 z& v3 e- `& t" k* v9 y A5 W- }
/ / Tips by Sedrika
1 c8 d( |5 ^4 P9 A d1 Z
# `2 C+ J: S% S7 Y7 A8 f! hIt is up to you how you do it ^ ^
$ Z8 A& s; O: f, U9 _* a( ~: f
% k& K& M- b+ ^Go into your source folder and open the definejob.h
7 O/ t4 b" c$ W# P! P; VSearch there for:
, o; M' ]9 q* z) n2 N1 W
8 S/ ?6 U% C$ C. ]$ N' _5 v#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå G8 N; F/ P6 p3 N! u. d) p
#define MAX_LEGEND_LEVEL 129( g! q I7 n: t- B- p: Q6 K) \
#define MAX_MONSTER_LEVEL 160
: B$ ^: E$ u# T2 T1 g3 B#else // 15Â÷ è÷¾î·Î ·1o§è®àå3 f7 C: H0 P9 e; j4 Q# \6 U
#define MAX_LEGEND_LEVEL 121
+ r* ~# C. k* v#endif // 15Â÷ è÷¾î·Î ·1o§è®àå 4 o8 Y) E3 T$ f0 \7 n# ^; P
# W0 D: C" I" R
7 K& H1 m; X) k+ x: JRed: Player Max. Level
( w/ t; y V( M: z+ x1 U% a8 o) mGreen: Monster Max. Level* O+ |- o5 I: }
# C6 n' ^9 h7 Y- U. EThese changes as simple as you want.
9 {) W" U1 O* D W+ h- [ f
& _- ~1 k/ H$ Q) g& w9 ]0 i8 N: hThen you have to just recompile the World Server Files + and make your clientin the Definejob.h the same changes as in the source.
! M4 f5 Z G5 B z9 }/ i! u$ I) Q" S( s! P
Part 1 of blocking CE
$ u' h% q3 X4 B: Q1 h
0 n2 c3 z8 ` _* S
In this tutorial I will show you how to change the Head of Mark flyff.
- e, w5 b; k$ t- G9 DThe current Head Mark is well known, 5E, which results as a string ('^').1 W1 g7 H! O. x: Q; \5 V
$ ~1 ~. V4 r, D. O$ s. d) D
For this we go to the World (Project) and looking at the Buffer.h after thistext) }' N" ~9 G( b# p4 L
Quote:
( S' Y9 W8 y7 ]# Define HEADER MARK '^' / / Normal messageheader, U8 D$ r; H; O% G
# Define SYSHEADERMARK '%' / / System message header
0 F2 k& t9 _* K, e$ Y: |What the Sysheadmark is looking for is not even the top 5E./ ?3 b% ], M, b4 d' J' J
Change this and it makes the CE Not work on server.+ i" o8 u* W' g+ H# n- T6 N* k
2 p& w( j8 m& Z0 v N3 }7 ~5 e
Then Tom's anti-hack is no longer useful.$ u8 Z6 `# ^9 ?; j* j" x
. [* [6 R/ y( L! _& w1 U* X3 [( tLG Sedrika
Part 2 of blocking CE
( b# f; {1 _. f
4 R( C! v5 k( o9 T5 Y; f/ s+ ^" oIn 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.
) [$ ]4 b% t; U: ^ \What does this have an advantage?
# s H9 Y' i. p1 O% F3 }The editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself
% Q# ?1 ?# h" E- e2 T/ y2 j# b5 a9 h# z! }* w
$ a# N% M5 X- b! O3 E% D" t" _3 oFirst you need to get open source even know how you do it, is left with you, andyou do the project on the Neuz.
. r$ l2 q7 W' [& |8 g8 K8 r! q% Z8 D' Q1 y+ `9 d: a
Then search for the following content in HwOption.cpp
! ]& g* L) W# E u, g' _6 r+ g a6 |! K7 w. P
4 N+ n/ X8 e. H- L, oif (scan.Token == _T ("ip")), n# `5 q: e8 ^0 i* V
{
/ E5 u* y7 V, S+ _' o: Cscan.GetTokenEx ();
: Y. h' ?, A* kstrcpy (m_IPAddress scan.Token);
- b: \% ^+ b- X( a}$ a C0 p( \7 k! g! m* G4 R" \
and turn it into this:; c( j8 x) N6 z5 J
Quote:
8 P; d, _% w, yif (scan.Token == _T ("ip"))
$ Z! l$ e$ k$ r$ `" ^{
% G) e5 T, S7 _- Z/ j9 O$ a% Y/ / Scan.GetTokenEx ();
- J4 u& p; [+ t/ }/ p& W o* K C/ / Strcpy (m_IPAddress, scan.Token);
! m R4 v4 [0 B" b' U8 G} ?. i( m0 y* L7 ^/ X2 I/ b
And you created the solution.
' x3 h& i$ a7 g7 k/ j0 }# ]
* ~: G- k- @+ c* z5 W) Z4 T; ~! p* s8 y
Then read the Neuz not the IP from the INI anymore. even if put in it4 D$ h0 J7 C$ }, ~5 t P. j
" [" `2 s/ F8 B% o a* \- M
Max skill's
) Z4 V3 \" g& E8 H" W) e4 j
; {4 |- \: y2 q2 @ Q( t# e5 YAll know that, 14 Max buffs, you get all the RM Assist Skills + Skills fromBuffpang and no more space for the YJ, Knight, Ranger etc
5 i8 O3 G# I9 ?% I. a& J a1 @* i' y% x; j- x& K9 H; Y" I1 w
With the TUT can provide the remedy it' U( B) o, Z( c! K" } }& {
+ H: R( V8 {: P3 W# 1 opens the file SkillInfluence.h) u- p' j$ N4 j+ x& d
# 2 Search }2 j% ~' C0 X3 l$ q
Code:
* \: f! S, E1 T; X( t9 s7 ~
1 C7 F& V9 I7 U# Define MAX_SKILLBUFF_COUNT 14: {) b# O; X7 V* Y
7 l b h3 {5 j/ h6 I- b
# 3 Change the 14 to your number (eg 21) and save it from
7 Y. z5 e& R6 W# 4 compilation and ready$ i e. }2 N, K$ G
* U3 ]# S6 _* \* {4 X. n4 u
* o) G3 J: D7 z8 Z) V2 `& Y+ p! g
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:
4 i L0 f2 P' N& e* i" U" t7 X4 X2 o
7 [( Y Z; t9 o! w4 ~" J& `& qdennisdra- h' i& `( }0 z% A9 D
.Crasy- z: R) F6 r2 n& N
©ross( n# r: N" D* z% [
Sedrika* t2 K: ]5 f1 B. d6 Y* M
5 o }+ { K5 y8 _7 ^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! ) l7 J7 b* y; K
" Y6 F- z* H9 b- @' _- Q6 ?P.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less8 k; [2 Q# u4 w5 _) A: E
" c5 k; ?; L( Z1 w5 T/ C
! |, R# @! x' O7 s5 P) z& xUpdate 1:
how to turn off "Profiler" in worldserver.exe
2 H2 f# O0 y( J/ H3 U
" T% g$ W8 U& B+ b; z$ s1 Y! j/ F2 C
in VersionCommon.h of Worldserver Solution/ B& T( b4 X9 ?/ d7 k- x# y
Look for
! s3 Y$ M% c" ?5 o' P
9 ^& h( X! `2 x/ g& k! `& f& N#define __PROFILE_RUN7 ^: n7 K `+ f6 q$ X1 f( B
0 w! n) v" J; r" O' p$ t7 n4 \
comment it or simply
! H& A) T, T/ O- p* y: {+ b5 M* e
//#define __PROFILE_RUN
: f: d( e! E7 m) R3 k4 e
( ?+ _5 B% r0 T! O* M
, ?7 r2 o3 {' E' f9 J1 xcredits 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投寄。谢谢。我添加更多的很快如果你有病加太
) N9 b1 P: y7 T2 q( ~! V
| 欢迎光临 飞飞世界论坛 (http://www.ffwold.com/) |
Powered by Discuz! X3.2 |