飞飞世界论坛
标题: 改变最大等级 [打印本页]
作者: 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
2 r+ B0 s3 g1 I* U6 `change level without Rebirth7 B) b6 T5 {; \0 }% [
9 ?' ^6 R3 m- M7 xNow, let us begin.
& h R8 U; q" o+ |, ^4 [# G$ A3 G+ ] R8 m( M. c- A$ y
Requirements:) o- m6 |( R5 j; k, I5 `& K/ h" Z( D
Source
3 {( C+ \% A c! f+ y2 GNotepad / Editor, N x* Y+ c- g: i5 K' C
, | N! m$ ~1 m; E/ / Tips by Sedrika7 K+ M/ r7 h2 k- t0 b
5 y4 K8 y3 v7 }' w! w8 }" I* mIt is up to you how you do it ^ ^
7 B* o0 X9 V6 `7 Y5 r3 F1 }
7 `& A; a, Y% M7 v( l2 M* ~Go into your source folder and open the definejob.h
9 L: z* V( b% G6 d! c( `6 N' _8 mSearch there for:9 ^* w6 i9 ^- D( p+ L
5 c/ h. U+ D, h0 M2 v9 @
#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå0 Z3 |! v3 u0 d, o3 s
#define MAX_LEGEND_LEVEL 129$ _# x! g6 b; c
#define MAX_MONSTER_LEVEL 160
; t0 ]' i4 C0 H! h; E#else // 15Â÷ è÷¾î·Î ·1o§è®àå
3 G( |# F) A: v3 T#define MAX_LEGEND_LEVEL 121
1 h7 z5 u0 g$ K$ Z: E#endif // 15Â÷ è÷¾î·Î ·1o§è®àå ; R9 {9 @6 N" `/ h' j" {
) V- N- C. c0 w/ u
0 U' Y4 f* _3 j7 f8 x) K0 uRed: Player Max. Level
* U" o0 a+ Y2 ^3 VGreen: Monster Max. Level" f5 B: D* j- a$ ^8 T0 y9 ]
* i: }; `4 b' [. V$ E rThese changes as simple as you want.$ Q' w% G$ G! V/ [" Z* m& x. _+ W
1 X: v% g% U6 vThen you have to just recompile the World Server Files + and make your clientin the Definejob.h the same changes as in the source.
" X* Y% {8 ?. S. i8 e ~! M" q4 L0 v, N0 z4 J$ i4 O6 v
Part 1 of blocking CE
& ?' ?, g# K: f, P1 Y2 k$ t. C k0 \3 K( }
In this tutorial I will show you how to change the Head of Mark flyff.+ d! z; Q% _" K9 Q
The current Head Mark is well known, 5E, which results as a string ('^').; Y* Y) y/ }/ t$ _# h& S
/ K: t8 r" R' B6 S3 l) K& a, B& dFor this we go to the World (Project) and looking at the Buffer.h after thistext; g* ?; t) W7 S+ e
Quote:
, g1 o2 H: \# Y9 A* S Z) Q$ t# Define HEADER MARK '^' / / Normal messageheader* w* Y+ H# v0 ?- e3 Y) W- x6 i: ~! N6 L1 `
# Define SYSHEADERMARK '%' / / System message header6 ~( Q G: ~% I7 V& v
What the Sysheadmark is looking for is not even the top 5E.
* x" Z+ e9 ^ o, K% ^Change this and it makes the CE Not work on server.
" s( _+ ]+ N1 ^5 [
; l$ L/ \6 i7 p! ^6 Z* LThen Tom's anti-hack is no longer useful., k/ h0 l8 [9 A8 n6 ?4 ~) V
% {7 J* x, D6 _LG Sedrika
Part 2 of blocking CE
( b0 H6 F' z% E. N
, x/ F2 H' ^8 h: w+ K$ _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.
# w6 \/ W! S0 O1 c) y7 fWhat does this have an advantage?
5 K A f* ^9 n5 v; MThe editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself % h" S; a, m" X6 B3 M3 Z
6 W. w) Y# x9 m9 N* Z" S! M1 A. E! S$ w) ~ Z6 ]( W) u
First you need to get open source even know how you do it, is left with you, andyou do the project on the Neuz.
# V) V' g8 N9 [( G8 Q" X* _+ a0 e$ u1 A2 F# f
Then search for the following content in HwOption.cpp * F- o$ C" B5 G$ A! }3 M
C( |- P1 q& ~* ~0 l j- q: }' l+ h
if (scan.Token == _T ("ip"))1 D3 X9 l" ?8 J0 l
{5 b# s/ f* m# r% g" O# b
scan.GetTokenEx ();; }9 w& E# y& l: {/ m* ]- M
strcpy (m_IPAddress scan.Token);0 e# C. @! b! J: X4 o, V: C" x
}7 n) r7 S" T6 H7 e5 Z( C
and turn it into this:7 F4 R: r$ z" `! K
Quote:
- C9 Q" m7 d8 E- I' E, uif (scan.Token == _T ("ip"))
' t% Y- X4 M+ ?, o5 ] e* Y. H{' h# N0 R" A" B1 F7 H! d
/ / Scan.GetTokenEx ();( H* }& b; H! w3 \: A6 @
/ / Strcpy (m_IPAddress, scan.Token);" w5 n; i( M0 c
}. v& U# r% z) j' c1 f7 ?
And you created the solution.' ?/ ]* J- O' e8 I9 S9 H
7 E1 E# q8 e2 X9 ]5 i& M
) K( w; ?% k/ d4 n2 c, Y) V
Then read the Neuz not the IP from the INI anymore. even if put in it& ^2 C% g; c; E/ T, S0 Y
/ G' C, E0 S7 a- D
Max skill's
2 i* p( P$ J3 @* q
8 Q6 ^9 Y6 i& J) W, M/ c, \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
6 Z& k, G$ X& P/ ]* y( C
: Z+ \7 `* ]" C' N! V8 BWith the TUT can provide the remedy it2 V) t: I6 K( g/ X1 [
0 M2 ^. C+ O' E# 1 opens the file SkillInfluence.h
8 q& q! l5 e5 o# 2 Search
% n7 T# ^0 P! T) S2 q" c F7 I( JCode: F2 e# w% t( q# w: K: y
& }, f0 x' ^( f; o. }
# Define MAX_SKILLBUFF_COUNT 14
, Q# W* H s: R' |1 v+ p, M: l& k( Z5 ^) p! m4 D% s0 ^
# 3 Change the 14 to your number (eg 21) and save it from
& a. x7 y6 b. R' s4 N# 4 compilation and ready
@0 b. c n( V3 b5 {0 D/ h
8 I0 P* ?6 Z9 T/ v
2 t+ C/ b) ^. t8 N$ z/ v1 O9 ~- iI 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:* x7 `2 o6 Y. a9 t4 J' |
# A0 z* P" ~% T0 S6 a2 d; \, z" x7 }( w
dennisdra
; r7 i# s7 D+ u V2 l- T+ }.Crasy' o# p4 y, f, p7 y
©ross! k4 T& Y% }# Q* r
Sedrika
* W' X P1 C( Y8 }: p, n2 P0 q1 D9 \& {& j) X, l
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!
) \) b7 y# f2 t4 ^6 _2 o: ^& a6 e5 J7 a4 s" C2 C5 E/ d3 D
P.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less
6 H7 F5 x% x ~2 `; [( R/ ?, c) M3 T
; n( E" } Q0 v W7 G4 w
. A/ y2 ^( l' v$ Y: Z6 uUpdate 1:
how to turn off "Profiler" in worldserver.exe
8 [% o, H" _. X8 n$ l
* l; k) J2 q: E/ T+ K, O- @" r( K2 N: h' M5 |' i+ i7 Z6 ^
in VersionCommon.h of Worldserver Solution
* C, m: R6 L' v; x3 X. dLook for
# I( i8 i2 x% b9 t9 u; i- q, |# `/ |& t7 M% n
#define __PROFILE_RUN( v9 T+ c6 o9 v8 g: c! a( P8 Q
, v4 R3 ^4 @/ g2 Mcomment it or simply
0 D- M% b: w# W( K& O, w) t! Y
. `/ t9 P- g- O6 D& c, n//#define __PROFILE_RUN ! f" y. F0 Y1 v; f
' w0 b3 p6 _' ?) p& O' R
) S( R# A* B Ucredits 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投寄。谢谢。我添加更多的很快如果你有病加太
, v4 q, J) Y2 l) ~& y
| 欢迎光临 飞飞世界论坛 (http://www.ffwold.com/) |
Powered by Discuz! X3.2 |