飞飞世界论坛

标题: 改变最大等级 [打印本页]

作者: 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

4 x3 t  _7 g# J6 L/ |change level without Rebirth
9 u" E5 p) \9 h/ H0 D( A! B) p# ~0 K0 O5 g4 Z' Q9 I
Now, let us begin.! U  u/ c; k# s5 b* k% f
0 @+ t" A( P4 i* H' r0 G$ p4 ]
Requirements:
. E- A! U' d1 f# f; |0 N8 _' CSource
2 V0 g0 |2 H) S# iNotepad / Editor$ O# v2 j, g0 Z9 Q0 I7 _  [8 e
4 F* V, v( i' b: c8 p. x; ~0 P
/ / Tips by Sedrika  @6 @, I' _: Y: Y9 k

4 k" i' r3 _& _: V  ?& gIt is up to you how you do it ^ ^% E3 |9 T* h" A  S- G! B. |

9 \3 P, R" ^( r, R; x3 |1 @" yGo into your source folder and open the definejob.h
' T/ Y* a0 y9 u. }0 T* }Search there for:3 o' `9 }1 i$ \# @
- D) R. M$ H! O+ B3 ~8 v
#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå) r( A! @* v% i; ~
#define MAX_LEGEND_LEVEL 129: _* Z( p- P2 {  Z" R. [# i
#define MAX_MONSTER_LEVEL 1604 z! [6 y8 K: _% o/ b
#else // 15Â÷ è÷¾î·Î ·1o§è®àå
1 F0 s, e- ^- _8 j9 C# R2 f#define MAX_LEGEND_LEVEL 121/ z7 F$ d! i& K
#endif // 15Â÷ è÷¾î·Î ·1o§è®àå
* L  q+ z$ \/ q1 q. h
- M. \8 n. O3 t/ ?  R
/ U0 Q2 [/ n) z; URed: Player Max. Level
; i( w* E  N6 AGreen: Monster Max. Level
1 H, Q8 V+ N  z
  Z; u  Y1 \1 @$ o0 K0 f$ n% NThese changes as simple as you want.
; f/ _' ?0 `; l2 W' \1 k. C8 M; o4 i7 d2 W1 d
Then you have to just recompile the World Server Files + and make your clientin the Definejob.h the same changes as in the source.
  o# a2 w8 U6 \* F$ R' s& s8 ~. n/ s' z$ c- c
Part 1 of blocking CE
: o- f8 l5 s/ r; G% y% j. b, _& y
2 w; k/ w4 B2 V/ n2 P0 N3 f
In this tutorial I will show you how to change the Head of Mark flyff.
* Y, {% Z4 [# S6 Y$ h0 q- gThe current Head Mark is well known, 5E, which results as a string ('^').
1 n, E, `; |) [
; F; X( r2 B/ D. wFor this we go to the World (Project) and looking at the Buffer.h after thistext: c* L) P/ }9 X$ L( s& q8 \
Quote:
2 K: Q) v  x! G( |# Define HEADER MARK '^' / / Normal messageheader
5 w9 ?) Q3 g3 y6 I4 L# Define SYSHEADERMARK '%' / / System message header5 F. a4 [7 S6 f3 _6 E, m# |* \
What the Sysheadmark is looking for is not even the top 5E.. I: `# }* b9 K, r8 p( @
Change this and it makes the CE Not work on server.. X" ?9 x/ W0 s
0 [) v& w6 o; d; V8 X
Then Tom's anti-hack is no longer useful.- g8 t" i( K8 M( V

( F( E9 ]  q! |& J, k6 wLG Sedrika
Part 2 of blocking CE
9 ]9 l* I$ k# Y8 n
; B4 O* K4 y( {; j# l
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. 8 g" L* H8 Z# R+ k  K) \; H$ ~5 j# ]  t
What does this have an advantage?
/ ]. G: l* Y7 F' E# f  [" OThe editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself & L: `1 {# H4 y
9 w5 D9 z+ t: d" H

6 g5 `& a1 a5 dFirst you need to get open source even know how you do it, is left with you, andyou do the project on the Neuz.
9 E3 W3 H$ o/ C' c, y9 w1 \, C5 z0 {1 q2 z+ g: D# b2 [! A
Then search for the following content in HwOption.cpp ! \, g+ e# P$ N3 n* v. @

' ~2 H- Y/ U2 t. t$ L1 ~3 T: [
$ Q) G+ o9 X- Eif (scan.Token == _T ("ip"))/ \5 G! f2 m% P: S5 _! \( R2 d
{+ C! L5 W& }" a2 R( \
scan.GetTokenEx ();* z6 B  ]; Z! l9 ?. `1 F1 p
strcpy (m_IPAddress scan.Token);
: A( Q  \& Z4 u$ ]4 V}
  _1 O1 |4 u3 d1 y8 l; \+ [and turn it into this:
' h0 O  M" L- }, ]Quote:
* R; i7 ?' j& kif (scan.Token == _T ("ip"))* A- m+ e" T' c; @0 A9 G
{0 \1 r6 w3 g. Z- v
/ / Scan.GetTokenEx ();
# T- F* T  Y0 D+ Z* `9 U& b/ / Strcpy (m_IPAddress, scan.Token);. T' V% e! [# ~0 _- Q& O6 X  z' l
}" f9 Z! w# a" v7 E. @
And you created the solution.
* m0 N, [+ R  P, h* D4 u/ B  g! @0 R$ }. @
4 T* u4 v4 |" d. J* R
Then read the Neuz not the IP from the INI anymore. even if put in it! p9 d9 M" I# R2 C" Y* ?

% b! {" W: s7 F. R
Max skill's
* o" e+ C  @9 Q! L. a/ }3 N! V
; E' e0 H( y/ [  Y# {, V3 a
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 9 K5 o1 Q3 v& A  `* @

0 V0 a- W" y$ i; i) p. v5 L7 }6 eWith the TUT can provide the remedy it
7 S2 ^( }8 H  |3 g4 D0 k# z# d6 }) K$ |
# 1 opens the file SkillInfluence.h
1 x' P8 K, S& o$ P' T+ S# 2 Search
* W$ H6 ]. y* C, M$ h4 ~2 `Code:
2 t$ X. T- {% {+ B: |+ U8 Q8 q
9 `- H$ K& V& Q0 c9 r3 p# J, G: [# Define MAX_SKILLBUFF_COUNT 144 `; A+ I& \" [( p
& P+ u  K- j1 ^# y$ X' U
# 3 Change the 14 to your number (eg 21) and save it from
5 ]9 u7 z- W2 U6 {6 O( A1 C# 4 compilation and ready, ?: u2 \5 C( H* T* L
+ A7 ~. o. i$ Q& ]  s
6 S8 n  x& D# C3 ]" 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:
) i+ u' q+ E8 h5 L- k8 d0 Y/ v2 Q
2 {8 q3 a" d& f2 p. c6 z: tdennisdra: k2 Y4 S' [' e
.Crasy
" f9 l( A* F3 r/ Z, ^. U©ross
! r1 n$ B" N' h6 y: Y& XSedrika( j& e& t+ D/ M7 @/ t9 [" {0 S) {
* i# _! v* R; K! E: \$ u. v4 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!
  }/ R2 `. y* ~# h( ~) K, B0 ^6 ^, s! s8 k( ^$ K
P.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less: K4 X3 i3 {$ }' H% N2 A4 N
4 ?1 x7 ^& j1 t; I) Y& f. B# D
( Q! A0 g7 H5 v4 X; ?
Update 1:
how to turn off "Profiler" in worldserver.exe
2 }( v5 ]8 L( V0 q

" O0 X6 Q) o8 @7 i! w( b  G; L- Y: z0 c/ i! T
in VersionCommon.h of Worldserver Solution
6 ^3 l( r; U5 o5 Q; w! i7 @; kLook for0 _1 a! M2 R8 }* o& x# c' J
2 o1 b) u! {' R6 a$ t$ r5 I! q- W
#define __PROFILE_RUN0 q% z" ?2 Q9 ?1 }( e" j- c1 n
$ K& `) o7 d- J* O9 S/ e, I1 F
comment it or simply
! d: ]% N* j# J0 D! ~. h$ V2 V+ a- @4 k! [
//#define __PROFILE_RUN
. v6 N/ y+ z$ J
5 L! j2 X$ I) j: z8 F' M  n  c5 Y' U4 B0 Z3 v6 J2 |! `
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投寄。谢谢。我添加更多的很快如果你有病加太
8 c! j' a1 R2 R





欢迎光临 飞飞世界论坛 (http://www.ffwold.com/) Powered by Discuz! X3.2