飞飞世界论坛
标题: 改变最大等级 [打印本页]
作者: 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
( v5 O" I3 Q$ T* rchange level without Rebirth
3 f& a7 l; z! S M3 o0 M2 m+ F/ J* P$ s+ J9 |- O, ~: t, ]& b4 f, L
Now, let us begin.
& l: l; c6 ~; x) ^: I! {2 H0 \' k* i
. Q7 S/ O/ o/ F- |% g9 g' v7 HRequirements:9 C& {- D2 O2 H# L; ]
Source! H, x" G. L! V0 i5 G
Notepad / Editor: W- Z2 |: W7 }" z' k5 `/ J. f* e
7 d Q- ~- J2 N
/ / Tips by Sedrika; v! d$ N% _# {/ H y) q
; s8 A3 Y0 w" s5 V( HIt is up to you how you do it ^ ^
8 j5 h/ Y0 r4 {8 q2 L: l# ]
6 _0 X4 o5 X' w3 kGo into your source folder and open the definejob.h" y6 ~' C0 L! `& h5 G0 l
Search there for:
% `9 q* {# S7 y) ]! Q( _) @8 J0 ^+ _, Y) Y( w- V
#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå
7 i5 Y3 @& |. Y8 z1 i) B9 t#define MAX_LEGEND_LEVEL 129" ]; n+ T4 J) I: J
#define MAX_MONSTER_LEVEL 160% S- r. Y- O7 h3 ?2 D2 r7 \
#else // 15Â÷ è÷¾î·Î ·1o§è®àå
$ l& Z8 @7 ^* m1 P7 m#define MAX_LEGEND_LEVEL 121' c1 d8 r7 ] @) v" d9 Q
#endif // 15Â÷ è÷¾î·Î ·1o§è®àå
, t3 ^* |% c8 _( }
5 q$ A: Z* M% W: {9 E& R# Z( @7 K* Y3 y7 _1 l
Red: Player Max. Level
5 _ e. k# w1 L# kGreen: Monster Max. Level
3 q3 h/ D# Z$ j1 |6 L1 d( o F, _+ G7 H) T s( N
These changes as simple as you want.
( x% D8 c9 z3 r7 g* e4 T
* Z0 A% r8 o' [, ^Then you have to just recompile the World Server Files + and make your clientin the Definejob.h the same changes as in the source.
1 ]3 X1 E0 ~: f5 P! ] m% I8 `& R# J2 N
Part 1 of blocking CE
) S/ A+ @) c4 n
, a* P5 V' g K+ _8 KIn this tutorial I will show you how to change the Head of Mark flyff.* N0 X3 A4 R5 v- o8 S
The current Head Mark is well known, 5E, which results as a string ('^').; Z/ i. |! \8 v3 ^
) H, s9 H) `( d8 h- ~, J7 O
For this we go to the World (Project) and looking at the Buffer.h after thistext
7 e5 L |! Q( f* c) q7 M& V9 g# BQuote:
3 c& h1 y& S# H8 I9 D# Define HEADER MARK '^' / / Normal messageheader
. j9 |' f) ], g" R7 H' x# Define SYSHEADERMARK '%' / / System message header
/ t& s9 e% P/ J3 GWhat the Sysheadmark is looking for is not even the top 5E.* k( _/ b9 ~% a# ^
Change this and it makes the CE Not work on server.
+ v, O) n5 F9 [9 N- D* E$ }; Q2 l4 U1 [) Z- N
Then Tom's anti-hack is no longer useful.
" t+ Z. ^$ D1 `$ u" `6 }
9 X! I' d0 Y* D: VLG Sedrika
Part 2 of blocking CE
6 |- o+ [6 \6 C. ~6 @* {' i# p( C
. R1 A1 M/ ]2 N" {
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.
! q/ ?+ N3 l6 K, Y+ CWhat does this have an advantage?
3 Q& o: R5 L; L3 P, m$ j/ XThe editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself 0 ^/ b6 L2 B1 B: |) O
$ x" A q! h) Y4 R1 D" A# s# v- b3 u2 q: z9 F4 P
First you need to get open source even know how you do it, is left with you, andyou do the project on the Neuz.
: Z( | Y! o. T
: c# h% b: s6 c9 `) D, GThen search for the following content in HwOption.cpp
, `& i; u; Z% G7 _
- M+ ?7 o( i) G2 t9 ?" N
* A9 h' ?5 c" G E3 mif (scan.Token == _T ("ip"))! O: Y& y1 D% n5 y, z1 t
{
" Y. Z+ M# L7 c2 nscan.GetTokenEx ();
% S# i4 g: }0 A. p7 F# i z$ Pstrcpy (m_IPAddress scan.Token);2 i, B/ B2 a: L i8 S/ r& a/ k
}
' v6 v+ i4 f: I# t3 L, |0 x+ E6 gand turn it into this:
! y, b8 i c4 L, i2 p' yQuote:7 v+ [- L8 K: X' R
if (scan.Token == _T ("ip"))
3 B. c$ _0 _; ]1 @+ t5 I9 |{& o: K* n, u2 a6 z; ]
/ / Scan.GetTokenEx ();
* X! |- _7 x: [: H- m- ^& W/ / Strcpy (m_IPAddress, scan.Token);
% Z9 H4 Z0 H' n, \% a+ m, L}' p; y: S: r, Z' I
And you created the solution.
) m: [' P7 f% M: @! e+ D: B, \/ W+ r+ ?; a
2 B/ P: p4 [7 V" f* e$ n4 f
Then read the Neuz not the IP from the INI anymore. even if put in it
* I! l+ i4 }3 S
* x2 c; ^ r( W7 k, E! s* P
Max skill's
7 T8 F8 t3 w! m
) x! S; A! ~4 R( g' P/ P! _$ S% B8 D4 Y8 m
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 / \+ Z$ t& P8 y( ^8 Z1 |' O8 l1 M! t
) j( G9 l$ t- E+ wWith the TUT can provide the remedy it3 @( B1 ?3 N9 o! `
% }1 i1 `6 h8 [# 1 opens the file SkillInfluence.h. H5 c6 q5 ]- l! S' C2 B1 f
# 2 Search/ P. W( r( {* f. \0 Y
Code:
& q& p9 @# v$ L8 i, @3 g) g6 v2 e. k# u" Y
# Define MAX_SKILLBUFF_COUNT 14
1 x* _" A& ^! u+ ~: t8 f2 h) r" E1 o3 r ^+ t8 Q
# 3 Change the 14 to your number (eg 21) and save it from
2 A( z& d6 r$ i: L% }, `9 @! a# 4 compilation and ready7 g, k% |0 D% x1 S# D" _
2 H) S" v1 q. @/ s7 q
+ ?+ @, a- q& D/ }/ C* V8 V
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:9 q- ` r' ^1 \8 D' |8 }
9 w3 M4 I: U8 @% |1 e
dennisdra& F# O$ {' P3 e
.Crasy
1 ` V0 ?8 o7 L/ {% u9 s# l% Z* |©ross
# P8 e; p% c* {Sedrika9 B4 G$ c$ ? O7 R# q5 B
4 l% z- z' Y& Y% i) L: E0 O
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!
) `5 d9 F1 b% y$ r; i* S8 S& l0 @% ?* q1 _
P.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less
' X1 I; ?1 C' o/ B9 ^3 E- f0 g, A" d8 @
. C! }6 v! g* V' ?Update 1:
how to turn off "Profiler" in worldserver.exe
- m) _# v" Y2 J& D0 a8 B! @
0 t: v- k- ~3 K9 ^6 y- O! p9 \! h, N/ }' s
in VersionCommon.h of Worldserver Solution
1 _! z" T7 T; o4 ^( }% [8 CLook for8 h+ A+ `0 ~% U5 R/ @( J
. ~. b! _7 X; A* l5 @8 i#define __PROFILE_RUN
- I- m; s$ ?$ f7 k. y3 G5 T
8 x9 e% g, t; N+ k) G6 p/ n- A0 X6 `comment it or simply" ^3 H3 i/ h4 s! {) i
- z# w/ k, G4 d1 H' H
//#define __PROFILE_RUN 3 P5 l9 T1 p, O O( e
, V4 ?- d7 @9 g$ d7 a3 C$ t1 b6 o! C- O* e5 i$ f7 T: p) k
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投寄。谢谢。我添加更多的很快如果你有病加太
: m, `- z0 b5 `- o
| 欢迎光临 飞飞世界论坛 (http://www.ffwold.com/) |
Powered by Discuz! X3.2 |