飞飞世界论坛
标题: 改变最大等级 [打印本页]
作者: 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
9 J+ l2 y/ Q1 E3 e; a$ ~0 Ichange level without Rebirth
6 I, J9 M, ^3 p
2 C5 n, A: r; u9 n, f! DNow, let us begin.; S8 Q# q( I _$ u# e% r
7 m! j' ~" N# k4 K) D
Requirements:* \+ v0 X4 n: `3 C) ]
Source' \. K! s! l2 l; c0 f
Notepad / Editor0 j5 \: C% e5 N+ v
+ x5 C7 h% B" ^( Q/ F( D' |
/ / Tips by Sedrika% c8 |5 _: P5 K N; }1 m1 z" |. W
- `" g. t f x! l3 N4 R4 @& PIt is up to you how you do it ^ ^
* s# B4 _8 t/ M
5 V1 H, s/ E+ |0 V2 F, k8 f* N/ z. _Go into your source folder and open the definejob.h; W% \. H1 r! K& N! u" t8 Z3 A
Search there for:
0 C" o+ e8 ]6 K0 S3 \
* T" J0 V, u, F, U1 r7 A7 |#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå
/ J5 i, {* Q' N8 M+ Y/ R& }7 Y. D#define MAX_LEGEND_LEVEL 129
& Q" u" I& U8 A7 m. t: K#define MAX_MONSTER_LEVEL 160
) a6 J u- x; A1 O8 t7 ?1 _#else // 15Â÷ è÷¾î·Î ·1o§è®àå
, g8 X" c! v( @ ^9 U" H# d+ }#define MAX_LEGEND_LEVEL 121
* F8 H6 b8 N7 W#endif // 15Â÷ è÷¾î·Î ·1o§è®àå
. D. @ @( z; v( k' u* B% A! n) F
/ Z( G3 _+ G$ W; D
! L+ O( j5 P, oRed: Player Max. Level) d( W' D- T( i
Green: Monster Max. Level, A+ u# y! c" x n& e1 k, W" N
; Y( X8 M |( f5 C7 GThese changes as simple as you want.
4 {2 R: T) y- A0 W- `4 w% B7 H
Then you have to just recompile the World Server Files + and make your clientin the Definejob.h the same changes as in the source.
! E+ ]( g" g$ _5 K* G
* D: N4 z$ o& E% \9 j2 Y
Part 1 of blocking CE
; T; {0 I1 s. D2 d. |$ M
, p. g! N( A* g" c$ ]
In this tutorial I will show you how to change the Head of Mark flyff., S; T# ?8 h3 x& p% N
The current Head Mark is well known, 5E, which results as a string ('^').
# e) J* Z. u4 [% y) t; i9 c9 x3 n( J! G* u. @
For this we go to the World (Project) and looking at the Buffer.h after thistext
8 l) S# t8 u8 W" F6 xQuote:
- O+ a6 t$ o/ ~( n7 z# Define HEADER MARK '^' / / Normal messageheader
: _% y4 x8 R+ L% R# m# Define SYSHEADERMARK '%' / / System message header% X) f5 Y7 R V
What the Sysheadmark is looking for is not even the top 5E.9 X1 r% m- `" V- y; J. j: X
Change this and it makes the CE Not work on server.3 G2 q$ v1 F. _0 l3 d
# w" E% g8 k0 y9 G: `; [Then Tom's anti-hack is no longer useful.8 m6 J! v; v% G3 P0 t$ y7 R0 A/ f
6 j# X0 S- [' Q j5 k7 M. h" R! ILG Sedrika
Part 2 of blocking CE
$ y, K) X% v8 M
) Y6 h1 _ y4 q) V* S# I XIn 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. ( ?* U) F% L5 N |4 E/ R) r6 F* S9 b
What does this have an advantage?
7 i: H" x# [9 L+ U2 D6 oThe editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself
5 a! ~4 K; h2 v" T- _, t
" R) Y( r9 i9 K+ f" l9 _* F: w' r! e: M7 c
First you need to get open source even know how you do it, is left with you, andyou do the project on the Neuz.
- R9 q% Y) \% M; @) ^4 `. w- ^2 @" w% v+ k; a) x$ p. R6 _
Then search for the following content in HwOption.cpp 6 C0 N! i: U. G0 f$ _: M9 E
' r2 A* E" {+ l+ _& M
9 o9 b$ `% X3 `$ Bif (scan.Token == _T ("ip"))
7 z1 Z/ d( _. |# U4 V6 E{
8 h3 l$ j* ]0 i i7 i4 ~3 _3 [scan.GetTokenEx ();" q8 V9 w N$ L
strcpy (m_IPAddress scan.Token);
+ ?0 q4 n; E/ j0 ?9 V7 j# s}: k9 o1 Y, f( z( X1 j) M- c6 _
and turn it into this:
5 [- z7 p- J8 G6 }Quote:* x2 x+ ]6 \* L8 S# w
if (scan.Token == _T ("ip"))
e4 R* G3 Q6 u+ p0 }{
W7 [' ?3 \) K1 q/ / Scan.GetTokenEx ();" Q4 r6 J+ i: p# ?# N2 F3 \# S; y# u d
/ / Strcpy (m_IPAddress, scan.Token);2 f' |- O5 o! s
}& r; o' Q$ Q8 T: s" f" X8 X8 k
And you created the solution.
: q/ g2 E }5 G! K- P3 \ j/ I0 U" j$ ^
% c0 I, q' G1 T% S/ ?) c( t
Then read the Neuz not the IP from the INI anymore. even if put in it, t. e" m% f! i- ~ x. B. A
) \1 N# r0 ]$ Z, `7 l
Max skill's
; H$ X" B h6 S- |# Q# h' V+ \! `5 t
0 A& {) l" F5 p* j1 S# l
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
( w) V: s# b/ l) K& e0 N
; f/ j% z" ^$ Q4 }" d6 YWith the TUT can provide the remedy it
% Y& o$ j4 ?8 M3 T$ S. J6 g( V5 t) ?1 a/ \: I& w: @. c$ q5 I8 K
# 1 opens the file SkillInfluence.h
( g) I; h: e! X. h: K7 V$ c; L# 2 Search
* L3 V, T& i! h& x( u$ _& kCode: W% a ^# z' b" F. |( {. \* G& T( m
, M1 u. n4 m/ ~. }4 B# _9 J# Define MAX_SKILLBUFF_COUNT 14& O5 h0 N5 K7 i& k
( C5 i6 e9 H. a# 3 Change the 14 to your number (eg 21) and save it from
3 T5 {4 \( w/ Y u8 S$ p# 4 compilation and ready+ o" q6 C$ a n. W. V: q6 r; f
* V) x8 {" w I, c
" h3 [2 z9 n- v2 q+ w; t2 {. R( yI 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:
& d1 H3 B8 V- g' R
% s3 _1 H, j( U7 edennisdra6 i4 _0 s5 ?& z( F1 E- C8 A3 Q% Z
.Crasy
: c9 J4 m9 C8 O; P& ]- s©ross$ `: \( w9 a$ B$ R7 w
Sedrika: O2 S9 Q# o9 @" H1 Y( s5 T
1 C" k" T" v5 f# n/ Ieverything 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!
, I: T1 T$ G0 a* {% J4 p4 Y m% B- F) h. N9 S; g9 a* s
P.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less$ R- j' f3 G, y5 b; B3 X
+ ~7 |5 u8 O/ a' |. b$ n( x: k/ h4 h4 s2 M
Update 1:
how to turn off "Profiler" in worldserver.exe
$ f+ n% S' b0 `. S! ?* W) V# i2 P" }' \; d" a
4 A. M* O% E# ~4 A7 cin VersionCommon.h of Worldserver Solution+ w5 x) }- v/ b2 r7 z& {5 Y, W
Look for- [$ s/ X7 c; w: f
4 u* n7 h; O& @#define __PROFILE_RUN& o: J( B) |+ i6 E
3 H/ q" m% I4 c _6 X! g" acomment it or simply) R: e* ?8 }* v6 |* ]- [5 ^
7 a8 J: E" _0 l- x8 K) k: O% o: Z
//#define __PROFILE_RUN ! P1 B' c2 q: |/ H/ w
0 H9 ~! u8 D3 g& T6 D! p: y) _# m
1 N( A2 t+ W2 f- V b' wcredits 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投寄。谢谢。我添加更多的很快如果你有病加太
7 n8 T/ l& y% Y6 q! ~
| 欢迎光临 飞飞世界论坛 (http://www.ffwold.com/) |
Powered by Discuz! X3.2 |