飞飞世界论坛
标题: 改变最大等级 [打印本页]
作者: 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
: q% i9 |" n \2 [: x/ d
change level without Rebirth
# U$ n T6 L% R- W5 E; r8 N E0 v* L; h; N5 L4 ?- Y* n; t
Now, let us begin.
( Y w& _) ^5 _! m) T3 ?* h. l4 B3 U3 v5 ]9 i
Requirements:; T* \: ?+ Z* g! V6 E% J% k$ b
Source2 e+ o- o& B- D
Notepad / Editor
" ~. @7 B' ~! B/ _/ C# Z! s( G. K
6 |: q* s/ o; c* Q# d/ / Tips by Sedrika# H o# F( t: h" i& h; k
+ y6 I2 n W. e' A# u- s, |8 JIt is up to you how you do it ^ ^+ @; x* G6 c- N5 k" X$ R
6 |5 H: d$ {9 N9 ?$ d: V1 W2 c
Go into your source folder and open the definejob.h% d2 S* H. E3 n* f2 h6 x7 F
Search there for:
5 P& ]9 i2 `6 o7 j% @5 X9 j
2 q: a) @% ^) {8 V; \) s3 {#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå0 `$ E6 e4 Y a0 x' P
#define MAX_LEGEND_LEVEL 129% \5 E+ _ G4 u
#define MAX_MONSTER_LEVEL 160
% U& Z# D8 `# d0 W#else // 15Â÷ è÷¾î·Î ·1o§è®àå: N3 {' r) S, v7 R* x
#define MAX_LEGEND_LEVEL 121
+ Z$ ^$ r, Q" {% b/ H* x% F#endif // 15Â÷ è÷¾î·Î ·1o§è®àå
9 ^- P% t- f# r1 o" W4 B5 w. r0 y7 R( M1 V ?2 n
; e( u$ _/ W" U* m8 [ V
Red: Player Max. Level. |4 ^2 X$ O! g( b1 M
Green: Monster Max. Level% n( ~" G G( O2 ?
; g- B- [4 ^5 K; G u! A2 f% aThese changes as simple as you want.$ F3 t# A, A# t4 b0 B5 x! z
+ R+ @5 S0 y9 Y. c1 a' o8 [Then you have to just recompile the World Server Files + and make your clientin the Definejob.h the same changes as in the source.* s) v6 \2 o. \+ n: I
3 p+ L7 U+ q: v/ t
Part 1 of blocking CE
6 Y. R& `7 n' r# s- F1 F% G: Y- C7 \3 S4 F
In this tutorial I will show you how to change the Head of Mark flyff., H+ T6 X% p$ y
The current Head Mark is well known, 5E, which results as a string ('^').) Y" q7 [; N; h Z
0 Z0 U8 Z" v9 t6 o$ a( B% ^' c3 n
For this we go to the World (Project) and looking at the Buffer.h after thistext
* ]4 H- N& ~, m( e/ P7 BQuote:
2 e- s: C; C+ H+ O% ~# Define HEADER MARK '^' / / Normal messageheader& }6 _. v# G: m0 w9 m
# Define SYSHEADERMARK '%' / / System message header
3 X' E) a% l! N: m1 g: kWhat the Sysheadmark is looking for is not even the top 5E.) ]' N1 X1 @ K
Change this and it makes the CE Not work on server.
! C+ ]1 `" S: A4 `4 X7 p- N9 p& u* D: k; d3 y
Then Tom's anti-hack is no longer useful.
R8 y7 x N! v* z
& a& e- |$ _: @( N1 aLG Sedrika
Part 2 of blocking CE
, m5 m0 N* O- |1 x
! P6 \! w8 k4 k0 x3 c+ S# @! a$ g+ rIn 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.
$ F: y' I# T. S) Y2 O" YWhat does this have an advantage?( e2 L4 p- V& c' i/ g! g
The editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself
j! r$ P2 F2 s7 @; C4 c
4 H W) Q/ v& C9 z( G ^! T) }9 [! g3 [
First you need to get open source even know how you do it, is left with you, andyou do the project on the Neuz.
7 Z' N& X! a/ F( F# k
& r6 g. _1 [6 p# }# JThen search for the following content in HwOption.cpp & T3 j$ K% N" h, R4 \. ?
8 y0 A& n/ K8 x4 b
7 {, Z) G* F7 T; v$ X9 O
if (scan.Token == _T ("ip"))
" P" l+ s# C: m2 Z2 {! A{
! A0 m o3 i7 q; N) dscan.GetTokenEx ();
0 A! s' j0 n( _! }* t' _strcpy (m_IPAddress scan.Token);( n t' b9 u- k$ \" v( ^
}( D* l3 z0 B7 ?" n) S/ N7 b
and turn it into this:
, N7 n \) K0 ~/ O* n5 UQuote:
' ^* R# r" H/ B2 G2 |9 a# Wif (scan.Token == _T ("ip"))( N+ @ E/ u2 @5 v$ n4 r
{
# a+ v3 W X$ ?. m- R8 B: G/ / Scan.GetTokenEx ();# }+ J1 Y: V# l& [3 H) N% A
/ / Strcpy (m_IPAddress, scan.Token);5 h; K* `; Z1 j9 l, a
}
( I0 q5 }4 w1 T+ o% O5 x0 h" N+ {3 EAnd you created the solution.* @3 P% z2 w% s: x; B( F+ {+ b
9 o1 h% K H- C6 v
I4 X* U5 S: rThen read the Neuz not the IP from the INI anymore. even if put in it( D4 ?1 S* X2 z9 j6 u' q
& z& S4 h0 w c; p( R( E- R# ]
Max skill's
! J. W1 V# J' ^4 J: ^& A# K: Z6 p' S. d$ Q* 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 / S' {0 n: O( C% t8 R* i" t1 d
' O& s) ~$ D! z4 L4 ^& U8 RWith the TUT can provide the remedy it
8 M' F1 C8 Y4 n) l# z$ B8 Y4 @& P2 L1 M" f, W
# 1 opens the file SkillInfluence.h1 j0 g, |2 a" o: V/ C# U; O/ j
# 2 Search
& t. \8 k) a' f" {8 {4 eCode:
" w. |# l: a6 }
) b4 e' o+ g" \2 t- |$ a, ^# Define MAX_SKILLBUFF_COUNT 14
# W' a0 N- a* P8 h7 B5 x- z
2 s% ]! }1 y8 y$ e. C2 ?) h) p0 G" P# 3 Change the 14 to your number (eg 21) and save it from+ U% y& |7 a" _
# 4 compilation and ready9 B1 z& | l0 c7 {+ X
* Q2 l- k/ G* j* l% x% v
( p2 d' b4 ^1 fI 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:0 T: g8 M- y: {6 p$ o7 T& ^' G+ O
, c$ v8 D2 d e
dennisdra
K# x! ~; U0 o.Crasy+ s9 L4 d. j& y
©ross$ D: Q9 j8 y% m2 m
Sedrika1 R; u% x/ H' O0 g
- c6 d; C# t2 i( m) M
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!
+ D, ~! ?1 b& W1 V& h6 R
7 @# I+ U. e0 t- s* e$ ~) |P.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less
' Z2 m$ i) N/ y& z- B `5 M5 i" E k5 I/ m6 q D" {
& T% s& S# x$ j5 @, b$ HUpdate 1:
how to turn off "Profiler" in worldserver.exe
4 _) a- \. a. G2 a- }/ V6 x
3 J7 n4 `. u5 m9 q% k# R" [/ o5 {9 [" y! \% J( p' m/ F. b+ N
in VersionCommon.h of Worldserver Solution
L V9 y$ \: W5 W$ a& jLook for
4 Y. W* @6 q% V0 r
3 s. F8 h: l! m" A7 P" e& H/ l#define __PROFILE_RUN2 X1 H% ^7 K, I% ^
) G5 _- y5 k0 Q5 n! ]
comment it or simply z0 q7 \3 ^; z4 Y1 m. }8 T4 {
; i3 E2 B: }* x; F+ F" A" M* k6 M! m1 J
//#define __PROFILE_RUN * Z9 j2 \2 x8 f' R+ Q
/ F/ w! T, n( T: T4 ^7 j4 ]) D' ^
( f" c; x5 e) M- vcredits 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 x( T' z) v
| 欢迎光临 飞飞世界论坛 (http://www.ffwold.com/) |
Powered by Discuz! X3.2 |