飞飞世界论坛

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

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

; ^! |5 X: T& {change level without Rebirth
) }+ X, Y8 v  }" M0 N: S5 `2 H. q5 A
) V8 c: f6 T- A0 X" X# SNow, let us begin.1 x- |! ]  u' O. W% T# Y. {9 g" b1 n

: l  \" h2 @, U- f2 VRequirements:/ i8 u0 B3 E* [# }
Source
5 S; k# S# U4 d+ @5 s% j' cNotepad / Editor
- p1 h* l! Q; _: n) s8 ?" {5 i/ U% ~- i  C
/ / Tips by Sedrika
3 Y- U4 l0 s4 s4 s0 r  k- Z% O' n
It is up to you how you do it ^ ^+ V# m: k4 [. i2 e/ S7 |
7 F) O. v, h) C' O0 A  |* @& |
Go into your source folder and open the definejob.h3 j( k! I" @" K1 c& J
Search there for:. \) ~; {0 m( \- \

8 x; P! Z% G# y: @#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå
6 g4 n% n7 W8 e0 }#define MAX_LEGEND_LEVEL 129
& L6 F/ c( `- m0 N% N#define MAX_MONSTER_LEVEL 1608 h  [: z, [$ z( P  m
#else // 15Â÷ è÷¾î·Î ·1o§è®àå
; h* I# m  d. l# d' w, F#define MAX_LEGEND_LEVEL 1210 T3 }0 V* `: U; z2 r1 B
#endif // 15Â÷ è÷¾î·Î ·1o§è®àå 5 W8 e$ j8 H+ ?& Q/ o
" I' D5 I4 [; G8 ]/ `/ T: [: h1 s

, s$ k, D7 s+ H) v5 V: y5 iRed: Player Max. Level
6 y" k; d, p; K- f% I* Y# O0 kGreen: Monster Max. Level/ f3 o; K$ e5 f6 D3 o
- W3 B8 w  U- `" ^
These changes as simple as you want.
2 v, g9 y! n9 p6 E  O5 Y" |+ V5 o  q7 J( Y, M: _( Y- D4 j
Then you have to just recompile the World Server Files + and make your clientin the Definejob.h the same changes as in the source.
' B' d9 _& X7 C/ {. i
5 E0 Q; A3 Z! \/ i
Part 1 of blocking CE

  Z. k# c4 o1 U3 @* S! O7 o! L3 Z- M, W" @+ @% J+ T% \; ^  M
In this tutorial I will show you how to change the Head of Mark flyff., e% b3 W/ {* z) |
The current Head Mark is well known, 5E, which results as a string ('^').
& @' R- V( y" f
3 e) u9 r7 l8 w# m9 l+ {+ iFor this we go to the World (Project) and looking at the Buffer.h after thistext. I: \9 ]/ i: C( }& T8 p
Quote:
7 A. q7 T# k; S2 Y5 z# Define HEADER MARK '^' / / Normal messageheader
! ^4 s3 F( b- R# m7 K5 x# Define SYSHEADERMARK '%' / / System message header
# X/ Z1 k) {: EWhat the Sysheadmark is looking for is not even the top 5E.
8 C. Q* o  g( j, {) V! RChange this and it makes the CE Not work on server./ ~+ f, a/ u! C5 w( f) q

* i1 V$ g1 E0 b* m  dThen Tom's anti-hack is no longer useful.
, h- y' p& N  N5 T: y& X! w8 V( Q
: `4 G. X" B5 C: B  V( hLG Sedrika
Part 2 of blocking CE
& y' p7 q4 P5 U9 z4 s  P( E! ]

# E+ H% D- Y5 D/ M3 W7 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. ! V- @5 O. S' `, @* {; R1 \
What does this have an advantage?
2 V8 ^( g/ T) T4 n. g* UThe editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself
- u, V! I1 _! J1 k: |5 |7 f- a
- S; x5 z, T- U1 e3 K, {; q/ \" K3 q4 ~" j
First you need to get open source even know how you do it, is left with you, andyou do the project on the Neuz.
& c% s0 L; s+ Y% F1 i; o
9 }" t% P" e9 a1 oThen search for the following content in HwOption.cpp
( u7 z, Q. z* R  |' S$ L* E0 ^3 G* p' y9 l% Q- V8 [
5 _: L7 t/ n9 Y; J
if (scan.Token == _T ("ip"))4 I" Q# @) T6 V
{
$ q- W: `1 Y' n) Y9 ?, ]! p  Wscan.GetTokenEx ();
, @+ O- g, i5 {  pstrcpy (m_IPAddress scan.Token);, b- M3 z" v* L7 T
}! y; W* W! x% s$ n# o
and turn it into this:
  n, I4 T8 I7 e% H/ R; DQuote:
, V0 @  {0 U6 W1 ^: cif (scan.Token == _T ("ip"))
$ I+ e& S7 C# w, I! M; J{
. V( f1 _$ V$ |7 |4 X/ / Scan.GetTokenEx ();  ~  c- M+ n' \1 S1 V
/ / Strcpy (m_IPAddress, scan.Token);  P6 h- [* X+ H5 u
}
$ V$ H# e6 ^! ]: F1 y0 W# B! d2 R) gAnd you created the solution.  ~: L) V; U3 Q' N
( L% i8 k* I" v2 Q0 N  s4 m. o
( T7 z0 F2 b/ O0 O) e1 R$ Z
Then read the Neuz not the IP from the INI anymore. even if put in it: Q. m5 ^5 j; h- F0 q

4 O3 l1 Q# h" a$ l8 \+ X1 o) p
Max skill's
; T- r3 G! y% n5 g
3 P0 d% T! v; J  \; R$ z; k' F3 `
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
  x1 [5 c, o- b; g4 B' P
6 P" L! U! C" }- Q3 D( zWith the TUT can provide the remedy it. B( K6 T5 q! E

) q6 f. }1 P  U1 ?# 1 opens the file SkillInfluence.h+ u2 X. _5 e8 w! j- j3 f
# 2 Search; A( j  Q  c3 f
Code:
9 U3 ]7 z3 Q  `1 d
1 g" j. n' I9 d# ]5 b9 c3 R) l# Define MAX_SKILLBUFF_COUNT 14
# L( q7 L* v& g/ E  |: F( h* C" H1 ~7 i
# 3 Change the 14 to your number (eg 21) and save it from  L0 ~3 o. b7 o" R2 V
# 4 compilation and ready9 J9 a" x4 t5 U# ^/ N
6 v5 c6 f% ?/ I4 m+ m% D
7 Y* Z: V4 `& t- a, p; Z
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:" T1 x! V* p& Z* N' I

( w. R6 w5 G' p0 x  Xdennisdra# X) v, E# X5 j/ j9 S
.Crasy
& u/ b$ p7 T+ E& J6 N©ross
/ V+ A0 H* P& F8 M2 z1 I7 rSedrika- e$ j# {; X9 _9 j- O; K3 J3 v* Q
. p0 Z9 Q1 j7 a7 q$ G, q& o
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! & B3 r) k5 j% T0 B

- E  S5 h7 O* ~P.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less3 O- i' f( o" D1 J
) [$ m, Y# S: C

( J1 B) z( D4 j7 W/ C7 A, ZUpdate 1:
how to turn off "Profiler" in worldserver.exe

& i& Q, M" Q2 Y! [
# J; c. f0 z. k. b* ?
& N, C9 S! G8 {- ^in VersionCommon.h of Worldserver Solution% e2 a- l8 F2 r' u- Q* e" R
Look for
! u* e& p5 ?+ p! x$ q9 n2 k: a9 s( _( z
#define __PROFILE_RUN5 l1 q$ P$ F/ {4 N" z; e- u

8 c7 l$ w4 d4 V+ P* T" Tcomment it or simply* h! z5 T; ~. `# q
1 y. w; _; W9 ]+ \' G" i' ^) B
//#define __PROFILE_RUN
# l4 f5 v( l) ]4 \3 O
% s0 c* N% `0 V( V) B. D  @
8 r2 C% J2 ]# |  |! t' ]/ ^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投寄。谢谢。我添加更多的很快如果你有病加太

7 I- I4 A  S5 r# [. N& |& }




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