飞飞世界论坛
标题: 改变最大等级 [打印本页]
作者: 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
a# Y1 k, D8 S+ K' S
change level without Rebirth
- k3 v& s, U, M, X$ q. M! w
. I2 u5 P) y1 V% x! u/ ~ R: PNow, let us begin. e1 V4 e2 Q; x5 \7 l1 Y C# ~
c- v4 V2 d* G/ `0 b3 I3 Z) q+ p
Requirements:
' X3 u" U. {8 ~$ KSource
. q# O [) D9 Q7 p% ~! G, H2 PNotepad / Editor
: C/ M9 U4 r6 J3 Q( z7 g. Y7 x" m- t% Q* U4 q
/ / Tips by Sedrika. s8 F& Y% a. M
. G2 i& i: M* bIt is up to you how you do it ^ ^
2 N# r( T7 N6 s5 }% l6 I+ r" S. @: i- V
Go into your source folder and open the definejob.h6 t6 v, ~/ b( G, D3 g3 j* O
Search there for:
2 X; J# j1 A' @. _
! `2 \& c9 r7 m8 r8 A3 A. m#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå: B7 ?+ j& [5 m6 p- t% Y
#define MAX_LEGEND_LEVEL 129# c8 W2 P& X0 F9 b% F( p! r
#define MAX_MONSTER_LEVEL 160
4 R2 h0 W/ B9 o N) e% U" T& w( g#else // 15Â÷ è÷¾î·Î ·1o§è®àå
+ K, V, \0 V. o3 ^" e4 m/ O#define MAX_LEGEND_LEVEL 121
1 A$ f3 v! S7 H% p" G3 b#endif // 15Â÷ è÷¾î·Î ·1o§è®àå . X' G2 Z! A' g& J0 i
8 _3 y( V/ k, A7 z1 w; k1 Z( K$ m/ ?7 b
4 h8 H1 V* q% ERed: Player Max. Level
- D% u$ W+ u! A) oGreen: Monster Max. Level
5 X: [; P% D- |9 K1 p
! O7 l1 Y$ {3 @0 x6 ^6 Z9 K# ~: IThese changes as simple as you want.# t. y# ^% |" b# S+ L3 K. E
5 T: N. _) Z8 pThen you have to just recompile the World Server Files + and make your clientin the Definejob.h the same changes as in the source.
: ?7 ~+ e, w* k4 w1 {) {. `6 [4 X6 f$ a, `% m" Y
Part 1 of blocking CE
+ q4 D$ l6 o# n" E
- G# B: K+ L) U- l( Y. ^In this tutorial I will show you how to change the Head of Mark flyff.
% |: D9 x$ H; w! Y3 s. `The current Head Mark is well known, 5E, which results as a string ('^')." j/ i. w3 e& j3 K7 v
2 N0 [+ x& U0 G- _2 G4 EFor this we go to the World (Project) and looking at the Buffer.h after thistext
- e, E( n$ k$ H1 f0 QQuote:1 Y) v0 ~8 x: o+ X
# Define HEADER MARK '^' / / Normal messageheader$ r0 |/ |" }7 N1 U
# Define SYSHEADERMARK '%' / / System message header. ?$ z: E2 `( f }6 O [* t
What the Sysheadmark is looking for is not even the top 5E.
! ]. X/ O. r' Q# Q: lChange this and it makes the CE Not work on server.
% {1 R, b3 T9 l% Y- k2 _' K
7 C# b% m! `. r& q' R' W8 JThen Tom's anti-hack is no longer useful.- Y U6 Z! p- T7 L4 d
7 R8 s) R9 h) e) {
LG Sedrika
Part 2 of blocking CE
* x% N" s% ]1 n' |1 J% h, _8 ^, {5 a. ?- v# i& _4 l
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. U2 q) @0 J' N: D
What does this have an advantage?
: U! A" S2 ^( I" BThe editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself + q* v! u, v) W8 F
( n" S! u6 C5 F+ y6 o/ U, m$ z. x6 O( c" 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.
: o6 Q! \6 Z/ s" ^5 Q9 n/ g5 i0 Z, I2 ]5 ]. `3 o
Then search for the following content in HwOption.cpp
* E+ G5 D s j- R: K( Z' }) b# j5 }7 D( N/ k. _
5 A1 L( l5 ^3 M& F+ g$ r8 w; Oif (scan.Token == _T ("ip"))$ K6 _( o/ j% `, E6 N
{7 m) }, z, O7 T B, `" u
scan.GetTokenEx ();- a% k) ^- m# q& Q
strcpy (m_IPAddress scan.Token);
' @& _: ?9 ^& L0 X' k5 u}
! {& ~9 R$ W" E/ zand turn it into this:
+ a# u% N$ ~7 H0 QQuote:
( _3 n" J# a) V6 y' Hif (scan.Token == _T ("ip"))
" C `4 r2 `5 [. X{
4 W3 w% I0 G0 C {) e' D3 T" M2 q/ / Scan.GetTokenEx ();) z( N, p* o# p* Q# D0 u
/ / Strcpy (m_IPAddress, scan.Token);. m% w5 Z1 I# k/ U" H$ A6 ?, r
}
4 }5 }1 Y( Z5 F6 ]* AAnd you created the solution.
* b6 o' ?9 r3 U6 y5 f' z7 e& C% v3 Y) `: N1 v4 Q3 _9 {. {
& w f/ w2 c6 U% [, lThen read the Neuz not the IP from the INI anymore. even if put in it$ o/ S+ T* |4 J7 a9 r
! p! `2 w$ ?. J: Y. q4 c% q' }; {
Max skill's
3 @* F5 q1 L. g' @6 s6 `. t
, ~1 O' m8 t. O% D9 O2 iAll know that, 14 Max buffs, you get all the RM Assist Skills + Skills fromBuffpang and no more space for the YJ, Knight, Ranger etc / w5 p: C! g7 G% j
. w0 r- i% S o) |; m
With the TUT can provide the remedy it" F$ E, X5 r* A0 @( m) h
6 d; R! n+ W# r! C i
# 1 opens the file SkillInfluence.h' C$ p! L' E9 g' s1 U% r: u
# 2 Search- K$ Q# a" N3 y$ y8 U/ s3 [
Code:
( l+ W6 P& [- T# o/ q! I5 w" f: Z( T2 @" n5 ~+ I
# Define MAX_SKILLBUFF_COUNT 14
/ N/ g1 C! n8 m& {4 [4 D( C! @8 n8 e3 f2 x5 h
# 3 Change the 14 to your number (eg 21) and save it from
, y' b- U- `; ]( w) O) [3 a# 4 compilation and ready
5 K5 h# L7 _4 }9 V/ i' K! T3 T/ k, H) c: h9 U' r
. L& A! u7 p& A5 c( L- X5 hI 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:; @8 O9 R+ }) A/ w% H# @1 d* g9 n
/ F" f* F* Y+ O( H, L- t6 Z5 j xdennisdra
/ ?1 f+ K9 d* [* A! @$ J2 U* [9 K2 e.Crasy1 L7 [; ?3 J9 r! r
©ross0 j. h: L$ l: ^; S- B
Sedrika/ k0 Y1 O3 ]& V4 @' O, v
$ B/ u( Z2 l% C) z8 i( W3 j
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! 8 [& J) y; T: Z- ?8 q7 E
* i* n n$ F$ lP.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less7 O' Z2 Y" X$ I1 j; ]$ i5 U
+ Y- V* B; N6 g2 ^# X3 D- Y0 ?& n/ x$ D* t, q1 ^: ?( Z- X( [3 H
Update 1:
how to turn off "Profiler" in worldserver.exe
$ t3 ~9 r+ g- b
* g( c5 d6 d$ O) w( q/ r
2 @( ?# C1 K+ }0 L8 B/ jin VersionCommon.h of Worldserver Solution! m0 ?/ ~2 ^8 ]8 Y0 P
Look for: N4 X: E# i) p8 _/ l
2 c$ ?! l+ Q4 `, b# E/ V* @- `#define __PROFILE_RUN
1 R. l1 C1 G+ Y: q9 `& B7 Z1 l( t4 z j
comment it or simply
+ P5 g7 u0 V8 R2 o7 x9 k
) k, n( w: {* Z' c8 m$ D- c8 \//#define __PROFILE_RUN
# L. ` N4 K" m" p; _- l- d
3 ]" W' _- E1 B& |7 j8 \. a8 I1 r
, S5 S) c6 P& O5 ^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投寄。谢谢。我添加更多的很快如果你有病加太
4 H' b0 |8 |' h
| 欢迎光临 飞飞世界论坛 (http://www.ffwold.com/) |
Powered by Discuz! X3.2 |