飞飞世界论坛
标题: 改变最大等级 [打印本页]
作者: 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
: P9 J7 [1 O2 H" w( \4 s" N: u
change level without Rebirth z7 v% b$ h: a; o% d
) R9 C" ?7 [1 {& {4 l: h9 O
Now, let us begin.
( } h4 i1 B2 T+ E+ m( g& S" |( F3 ~. h# d
Requirements:% v9 R3 @, K% G4 y% |# m9 X R5 s. @
Source; u* h6 P- f- S, v
Notepad / Editor
/ C+ W9 Z2 } ?4 S/ H9 i9 K- T7 [
, @+ r+ K7 P$ J" ]7 H/ / Tips by Sedrika5 A& ]4 }4 h1 p" C0 @, B
# P+ {. M8 q8 [" L3 m
It is up to you how you do it ^ ^
% N9 \1 N( @( x* |& m8 Z
' ?' W0 K& I- @( @6 C/ @- ]0 _1 rGo into your source folder and open the definejob.h/ ~" y! |5 ?* t2 ? Q
Search there for:& H0 X5 X2 F) h4 n; \3 y, p1 G
1 R% ^% G: F* D# e" M# I K
#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå6 v( n, w0 {% B. q; V# [9 X, {
#define MAX_LEGEND_LEVEL 129
/ W6 O. d0 v" Q$ t#define MAX_MONSTER_LEVEL 160
- [4 D3 E H# ~#else // 15Â÷ è÷¾î·Î ·1o§è®àå$ `, r" v E7 r2 G; B/ U* Z: l. s$ M
#define MAX_LEGEND_LEVEL 121
0 y1 L; y: a* s* h7 o#endif // 15Â÷ è÷¾î·Î ·1o§è®àå
* l# q! E. G+ @0 |
) c: I5 I) ^3 A2 ]; ]$ ?
6 U8 i( v3 Y5 bRed: Player Max. Level9 w7 j5 b1 N, u' ~, ]. |
Green: Monster Max. Level( f- s; M$ h6 @/ ^$ C
# R3 Y; G$ A5 F$ h9 q4 }
These changes as simple as you want.+ x( L o1 m9 w1 o% \" U. u
1 Z; F S3 e# U; s* fThen you have to just recompile the World Server Files + and make your clientin the Definejob.h the same changes as in the source., B" K) s, g6 U' X3 q7 x: S% d
/ u1 |. V/ A# K
Part 1 of blocking CE
% T: a. K' }/ t% G1 Q
+ l, _! @6 @$ y$ yIn this tutorial I will show you how to change the Head of Mark flyff.
B; Q$ r; l& y0 o* rThe current Head Mark is well known, 5E, which results as a string ('^').. a1 d5 X" O/ \: ?( m1 j" `" s
' j" S" [& n/ N5 K
For this we go to the World (Project) and looking at the Buffer.h after thistext
) b6 a4 V9 O* q' Q gQuote:, u* ^# P; e3 X$ o: P
# Define HEADER MARK '^' / / Normal messageheader) Q9 H0 K4 \( `7 U+ n! e A& v
# Define SYSHEADERMARK '%' / / System message header
# g2 K! Q) K+ _What the Sysheadmark is looking for is not even the top 5E.. o4 d6 N1 Y( d$ }' n e
Change this and it makes the CE Not work on server.
$ ? B; [: _. j. i9 s1 M' u
% r% d: W/ B6 l7 G1 H# vThen Tom's anti-hack is no longer useful.
! V. d* p a! {: C
' n% t* w5 ^3 N. B' x dLG Sedrika
Part 2 of blocking CE
% @- p6 J6 [- a {; R& K+ j
4 f7 h4 r" A) U' b# p7 AIn 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. " C1 M& s$ W. F* @$ ^( a
What does this have an advantage?
8 x- Y" x$ K5 Q) [( F* j9 B0 bThe editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself . `- o: ]! R! N$ c) J d) f- V" }0 T
$ K. s. p F1 m* _! i' L% l' T, o6 ^5 C" |! M0 l
First you need to get open source even know how you do it, is left with you, andyou do the project on the Neuz.0 L7 `. }8 s% j& A4 o% v
( i- R% G1 e& \9 k) [; P6 b0 `
Then search for the following content in HwOption.cpp
/ R) Q1 c' e% w& |9 }; f- G% H' z W% A" _% \" e3 b
6 J0 F3 j8 ^8 C- K
if (scan.Token == _T ("ip"))( }' }7 w2 G. J7 \4 w+ G
{
# N7 E7 s/ \( Q% ?4 n% w' V7 ~2 ?scan.GetTokenEx ();
3 O; a; A. q# a. H5 Ostrcpy (m_IPAddress scan.Token);
$ P0 i; W7 w7 }4 d5 @}
( c6 H% I# ]# t w3 K( V4 qand turn it into this:
+ P9 E' q1 E H* v' X |7 t2 _Quote:9 w z, S/ A3 V z( I
if (scan.Token == _T ("ip"))( B/ F- C) N9 e8 ]6 o2 g5 e5 i& R; ]
{
* E% n2 w1 X; Q0 Y. g4 S3 F. ?' {4 @/ / Scan.GetTokenEx ();
/ l' q0 C( g) ^/ / Strcpy (m_IPAddress, scan.Token);
8 |' @9 T. d5 M: k; V9 X}) f! [! u$ b1 L) B6 k
And you created the solution.
+ |$ M6 G/ e7 a3 c- O
! C: H. d6 V# P6 u0 h# d
0 ~0 N* `( x7 n& D4 ^Then read the Neuz not the IP from the INI anymore. even if put in it% P% ^" u$ X: X0 c. ? K2 v& p
: {. o8 o* D& @# S+ [/ Y
Max skill's
7 \# R) g7 d% S- o, _4 m2 H
$ ]& ]$ \6 z* ?* r6 G9 z" h- i9 Y4 w0 `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
( ^! B; E6 j! |7 l& Z, v
c9 z7 g3 ]: |5 r4 B- l$ Q5 gWith the TUT can provide the remedy it
" P4 B& g& g. }% r$ m" f5 V
9 s: X3 B9 P" \ H8 ^# 1 opens the file SkillInfluence.h3 t# O: Z0 _( ]( c
# 2 Search
3 h5 g" l6 T; M2 Y8 @Code:
3 M1 L; O3 ]4 J# t. J$ b1 w
' k. a; A5 y9 F, Z# Define MAX_SKILLBUFF_COUNT 145 [. q! [2 H' m, A7 c
* d, f5 \' F* N( g" i9 g# w3 J
# 3 Change the 14 to your number (eg 21) and save it from
* |/ P. A ]- j4 w# z$ v* E# 4 compilation and ready
1 Q9 J# i- A+ _! E/ s
" @3 [8 t1 s9 \
# N4 D1 L2 Z2 h5 } `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:) u1 h1 ]3 C! F* j4 L r8 \
# T" a3 Z# N; w( b @0 \
dennisdra. k& I. j) o3 i, R" n
.Crasy
, j. @% C5 O \ W/ J©ross
+ N4 o5 ^' y8 }. i6 LSedrika
3 q1 d$ Q# G# c' O
$ k, z6 N) a0 Y% s, [" t1 t" ~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! ! X/ o5 {) z4 U. X [! ]7 Z0 @
3 O, s4 K/ V l1 F& X4 b1 zP.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less6 t+ z. L2 c/ q
; P- Y& T) B9 Z0 }* s& j2 d# J* ]3 ]- M' l; O# k B
Update 1:
how to turn off "Profiler" in worldserver.exe
8 {5 {% H& {0 q$ T/ J! T/ d! m* a
, W% e# z5 }( N# I
' \# i z/ z) jin VersionCommon.h of Worldserver Solution$ T# R1 H7 _2 l# o
Look for( h7 x& H+ }! E6 V6 f4 k1 |4 I2 _
) Z! K( J- Z5 ]& X#define __PROFILE_RUN
/ @% b% l. @8 b3 V8 M2 A+ w8 k/ I' L7 ]* x" V, s; G
comment it or simply
8 p% j: w# D& W: [/ K4 r
2 a: y0 {1 D( }/ O- x% p! K, {//#define __PROFILE_RUN
_8 k# [1 ~. \
$ H2 P" }- [- Q
1 s( U: d7 c" L9 y7 Tcredits 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投寄。谢谢。我添加更多的很快如果你有病加太
8 T; K0 d* V1 Z* n1 X$ t5 e
| 欢迎光临 飞飞世界论坛 (http://www.ffwold.com/) |
Powered by Discuz! X3.2 |