飞飞世界论坛
标题: 改变最大等级 [打印本页]
作者: 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
# b; [; ^! ? K) j( J- L+ q9 O1 N4 ?change level without Rebirth
% ~5 k4 S1 W( F/ ~# v' \; ~8 m7 L4 w! k& u( Z9 J
Now, let us begin.
9 d% O0 q& Z: S! i
* {2 ^2 F& o5 W, fRequirements:
1 e* ]* B2 R8 k; g1 rSource
5 i s3 u2 H2 q9 R( rNotepad / Editor1 L% {; R0 G3 T
8 s0 H% N0 {3 z, y
/ / Tips by Sedrika' X' Y }( X9 n$ e
. m1 u0 r, G T$ W$ f- @
It is up to you how you do it ^ ^. I2 f% U- G* Y& d% y
3 [0 h5 t$ G' T- }5 WGo into your source folder and open the definejob.h
' Z$ [- x2 i6 @& e" cSearch there for:
% U/ w4 W: a! v/ f6 Q7 r
$ { ~$ G: E& I+ D! t6 S#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå
7 ^# l, U' z" k3 z#define MAX_LEGEND_LEVEL 129. M0 ^9 S" s8 }% L, `% i( S
#define MAX_MONSTER_LEVEL 160# P, q( v0 [% l. T" [4 {
#else // 15Â÷ è÷¾î·Î ·1o§è®àå3 W) X! \: j: h$ Y" N
#define MAX_LEGEND_LEVEL 121% H% t' ^. d! U+ O. j F. i- T9 I/ ]: t
#endif // 15Â÷ è÷¾î·Î ·1o§è®àå
/ w8 R. t0 \* N( b3 G. L7 ^6 z6 b' y: H& [2 }6 F" B
1 I5 h* V3 F, R* z( Q7 ?6 }$ P( WRed: Player Max. Level
0 R- Z! V/ H: p$ Y5 wGreen: Monster Max. Level2 a/ V b: s/ k; D
3 Y3 o3 A5 A" ]! ?1 \4 a, zThese changes as simple as you want.
8 `1 t0 {8 h, G1 K) d" t: r
: `; j: a$ M& @4 y3 @- UThen you have to just recompile the World Server Files + and make your clientin the Definejob.h the same changes as in the source.
5 ~- Y/ S8 f- y$ i$ U! t0 i& q3 S' D( S( _4 q- \6 q3 {
Part 1 of blocking CE
! j: h8 e$ @+ A' M6 C
+ _0 s- i$ X1 Z& D$ i3 b2 z1 eIn this tutorial I will show you how to change the Head of Mark flyff.
! _# u/ T5 [/ b0 s( U2 R7 {+ sThe current Head Mark is well known, 5E, which results as a string ('^').
9 a2 q/ a* L( `
* ]- i# n- ]9 OFor this we go to the World (Project) and looking at the Buffer.h after thistext" K/ N; E6 u4 t; I( R% L
Quote:
7 Y3 O; |; g/ T' s# Define HEADER MARK '^' / / Normal messageheader
% y7 }% s S. x$ X M4 d* s# Define SYSHEADERMARK '%' / / System message header
* S4 O" l% ?+ w6 _What the Sysheadmark is looking for is not even the top 5E.5 C8 Q/ P: G* H
Change this and it makes the CE Not work on server.+ A: V: \" y9 I
* p$ g" m8 s4 LThen Tom's anti-hack is no longer useful.1 P' a% c. L1 K f( [
7 [1 _5 ~) w0 @1 JLG Sedrika
Part 2 of blocking CE
2 w$ C4 c Z) B
' I' ?/ i( P9 K1 h% V1 u: 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. 3 m# u$ p a# t1 h0 w
What does this have an advantage?; t9 \ i! I. @) n5 |
The editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself * I! q8 Q9 C' Z! m2 k
5 b3 d1 U2 P8 J4 p6 @0 u# |# l( r, F3 D% n1 r
First you need to get open source even know how you do it, is left with you, andyou do the project on the Neuz.& E! o% x% e2 a8 Z: _8 Y
' ~$ Z5 E, x+ c6 C7 `8 b, KThen search for the following content in HwOption.cpp
0 T; {$ m3 p4 ` L' V z
2 ]" _" I) }) F% ~4 _! B- S8 G6 m# P5 F/ u0 Z3 z$ M, j' r+ |
if (scan.Token == _T ("ip"))7 u G1 M5 ?" S! t3 f
{
" W4 W6 T2 Z% Xscan.GetTokenEx ();
2 e- T3 D8 y1 L2 r" z1 jstrcpy (m_IPAddress scan.Token);$ N0 {9 e' ?2 U) T
}
$ l5 u8 i; d! {, m9 p- P4 ?and turn it into this:
* S7 o( x/ T# ?Quote:" R; \& V, `+ b- N E
if (scan.Token == _T ("ip"))
/ y7 y8 O& f3 `% l; H{
5 t, t z* x, Z7 Z/ {/ / Scan.GetTokenEx ();3 c7 ?$ K) }2 y% c
/ / Strcpy (m_IPAddress, scan.Token);7 m8 P5 p- H& i; g
}" i& p6 i, D) Q1 N, q; [; S& `
And you created the solution.
5 G0 i; f3 n# N6 n" c
" T5 p% R% V+ V; l5 r) O# k6 O9 E) c( Q8 q f, h
Then read the Neuz not the IP from the INI anymore. even if put in it" K& A# G/ b2 Z5 \
! V, L0 O0 C7 E3 [* r R" J7 C8 Z
Max skill's
: D4 H, d5 u) i) x
/ z5 E/ o5 }! D cAll know that, 14 Max buffs, you get all the RM Assist Skills + Skills fromBuffpang and no more space for the YJ, Knight, Ranger etc + [$ Z8 k+ v) W @3 G& j F
3 M$ M& R: q% ~/ v3 z6 Z, j. hWith the TUT can provide the remedy it( d& H6 [% M) r- Z# K+ |
1 i" {, \* k$ V# 1 opens the file SkillInfluence.h
. W# V5 l5 O* u% \# J7 }1 ]; H# 2 Search
- F7 E F; i: `$ n, tCode:9 {+ p1 [5 W2 Q# v- ~
. d S7 a& z0 A* Z# Define MAX_SKILLBUFF_COUNT 14
0 h. s; _9 a: W4 t
! [( i1 P6 e8 o1 k# 3 Change the 14 to your number (eg 21) and save it from. k: h) }2 z ^2 {
# 4 compilation and ready
p3 n# z, x, m; A; W( }- L; B& h, t: p. s$ U1 _" z* Z/ ~
6 ^+ @2 X3 x2 r. }
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:
( Z" y/ L" I9 D0 {5 C; [* p( Z5 u' v! d! b
dennisdra
/ T* l; p2 N" E( Z+ o+ L' ^ X) J.Crasy( F+ q- H3 h) G- Q0 _
©ross
8 B( b5 H8 |- W+ b$ MSedrika
5 s+ B. a# k! i" s* ]& N W/ M+ V9 E2 l
* \) i& Z* F. n8 K& ceverything 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!
! ~6 v2 J8 m& m
% R! M; q- L/ _% Z. {P.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less
g' _3 [5 D+ N' K7 t6 U1 f: Q/ B, l7 b5 V" j/ }
. V5 G6 f5 ?: O
Update 1:
how to turn off "Profiler" in worldserver.exe
7 v3 X$ [( |9 C7 C. N5 | I: }$ L
2 W. N& I& \8 F* f- B8 R3 Q& x; F' q! K( }# w" t- k" _$ _* I2 }' [$ N# \4 a
in VersionCommon.h of Worldserver Solution
. c4 o% I7 T' Z& D; PLook for6 e2 N; g1 b( J7 r" G' o
7 J* R+ p7 _4 Z$ Y#define __PROFILE_RUN; o. h$ x/ p" Q& g5 y, r: n
' V: v1 w% e" h. ~$ N; ?% A! `comment it or simply
' q% A9 ?1 q/ d5 W7 \6 ]- w( w# e; i2 d% l9 c9 Q" }( H5 I
//#define __PROFILE_RUN
$ p9 |5 I+ g, O% k. z5 D( f0 ^3 s2 [" P4 y% H. [* n
' e) i, k0 t9 ~3 W1 b
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投寄。谢谢。我添加更多的很快如果你有病加太
6 Z& i/ c) L# [- H/ a# A% `6 D9 t. e
| 欢迎光临 飞飞世界论坛 (http://www.ffwold.com/) |
Powered by Discuz! X3.2 |