飞飞世界论坛

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

作者: 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
; e- `- `9 l5 g5 ~, r2 G/ M- U3 Z* a
change level without Rebirth
  {* S8 l0 c3 W1 Y! P
: D3 A) J7 R! ^/ |5 T; {Now, let us begin.
. ?: i: b$ f( L$ `5 s
' R$ g+ s" O* p3 j& y( wRequirements:
$ B# o( o% r6 f8 p  z( pSource- R6 u* @( [& v* K% o& F) `' T
Notepad / Editor# |4 p7 k; N+ E' L& q) u

3 F( d9 o9 C: ?4 ^2 A& d/ / Tips by Sedrika" z- @( _# j0 n
  [' D- V" |5 L. r- A
It is up to you how you do it ^ ^4 O# x9 }+ }0 e. @
" Z7 F! H5 T+ w$ |4 r
Go into your source folder and open the definejob.h; Q8 i+ n( w: a
Search there for:
. t: d5 Y1 g7 W. j4 B& n3 g' W3 C( Z& r" w1 t8 a" c3 p( l
#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå  r/ z: g/ B# ~4 i' S8 A" @* R: X
#define MAX_LEGEND_LEVEL 129
/ U3 K, A5 H  E+ C9 F1 M#define MAX_MONSTER_LEVEL 160
. H4 t6 b+ G1 O$ L2 B#else // 15Â÷ è÷¾î·Î ·1o§è®àå
1 ]6 G9 Q6 L0 q, y) q#define MAX_LEGEND_LEVEL 121. e" V: A' b' h& u
#endif // 15Â÷ è÷¾î·Î ·1o§è®àå
, D9 O( |1 @# F7 D, v5 H+ `' ]; D: {7 s. q

$ v; f* R# c9 T! dRed: Player Max. Level7 e$ `* F* S- v1 E2 M/ t9 A
Green: Monster Max. Level
+ i  T' P5 r' }: F4 j% c
# w) p. w, C  d5 YThese changes as simple as you want.* G. B; p( i5 e& O6 h- W

3 l% H$ q8 `% b5 C8 z# Z. mThen you have to just recompile the World Server Files + and make your clientin the Definejob.h the same changes as in the source.# l" n% M6 r- z& B- \" _  {# V

% S8 I0 F( L: A0 F- A5 @5 _" F
Part 1 of blocking CE

$ t6 u5 I8 E* Z3 @6 P" T( I
* f/ \% W6 U6 H: hIn this tutorial I will show you how to change the Head of Mark flyff.
( _$ b7 k8 R- gThe current Head Mark is well known, 5E, which results as a string ('^').
- n2 V& J  M& t% m( E) G! K
0 ^9 h/ x0 |0 H. aFor this we go to the World (Project) and looking at the Buffer.h after thistext. G3 I+ p% T5 j
Quote:
* O1 Z5 M* l1 o4 t' e# Define HEADER MARK '^' / / Normal messageheader' S, v+ K1 X+ H+ }6 x  E+ z
# Define SYSHEADERMARK '%' / / System message header7 c% p0 Z$ T0 q- H9 c  M, ~
What the Sysheadmark is looking for is not even the top 5E.' Y- k8 ]! V6 a, Z6 c5 c7 i
Change this and it makes the CE Not work on server.9 h) }) G( {$ X3 K

7 r6 f. K' [- e2 s- z9 hThen Tom's anti-hack is no longer useful.. h2 i" o* `" T- q. g6 b
! u0 n9 c: G" _/ S
LG Sedrika
Part 2 of blocking CE
: q4 d+ ]4 G3 O  m: V( F

0 }" E! a0 K. tIn 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.
& i0 ], X: [, X, eWhat does this have an advantage?3 ^  R- P4 r5 H  y
The editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself
& \9 L2 v7 k1 X/ x+ B# I. l7 E* }
% M0 ]$ O. L* M" W: C& n
First you need to get open source even know how you do it, is left with you, andyou do the project on the Neuz.3 j' d2 r7 F* g/ f! ]+ R6 B
! `6 J- Z0 f1 C" ]
Then search for the following content in HwOption.cpp ; u1 w6 G2 K2 L0 C
% g7 x4 o3 F3 o5 t  a8 c7 e- A

) v. J$ `  [$ v; `. t/ g, }9 F& ^if (scan.Token == _T ("ip"))
( P4 M% s! Y! e/ Z; Q4 ^{
: [! ^6 C; G  q) Jscan.GetTokenEx ();
( t6 A, R& t) d8 A# Z& `& bstrcpy (m_IPAddress scan.Token);
! [$ }0 d6 K9 j: c}" n- {5 t; Y: }/ K+ L
and turn it into this:6 N- t3 c5 }' B" p
Quote:
4 F# _/ m6 @$ W; k9 dif (scan.Token == _T ("ip"))" ~/ [% D1 I: a4 n0 \9 Z7 U1 ]7 T
{  z; w! S$ Z( p+ y. Z8 M$ q
/ / Scan.GetTokenEx ();
" x" Z0 Y; c1 o# c/ / Strcpy (m_IPAddress, scan.Token);
- N# L! s7 D. {2 }) p" B" M}* ~1 u& X3 ~5 t; H
And you created the solution.
1 Q8 n1 o- @; A, w  U
& D; u- Z  T+ V4 k) M3 N# Q
9 h4 G' H$ \+ D" a! WThen read the Neuz not the IP from the INI anymore. even if put in it# W. Y! Y% k  @

8 T3 |% O  ^2 S( d
Max skill's

: f& f0 ?/ l2 k0 o3 @; R" n) v* t* P( b1 \6 z' s0 x( B( V5 b
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 " S! J& G2 ?% z0 W+ P
4 x% ^0 h# b. c+ K5 S8 C( \
With the TUT can provide the remedy it
6 I# Z( j2 c& V4 @! P& x
& T) X1 ~: O" d# 1 opens the file SkillInfluence.h
% U- m* @/ ]2 d  y0 n3 n# 2 Search
: ]1 j$ g' ]. ^. [' HCode:
9 k) F* y8 ]  m8 @
5 C1 \5 M2 B. X# Define MAX_SKILLBUFF_COUNT 14! [6 N7 N% `4 ?% r" U) V/ v
9 f# O. S3 V& X7 E
# 3 Change the 14 to your number (eg 21) and save it from( n) B6 o7 l6 x
# 4 compilation and ready# M: @2 s4 g( J; D
# F% l" r6 w- C8 j
; g6 c! K( w  x) K  a
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:- \" \( ~6 x* _

+ @; \. T8 ]. O1 A- o; rdennisdra  u1 `  }" D" I) e( b
.Crasy" d: t# R& f8 I
©ross
1 d+ c: g  l$ N+ tSedrika
1 R- I' A6 A1 W8 r+ f# L
, a0 I: g9 g3 X' e. Severything 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!
# q+ Y/ g* j  c. R) r0 N$ F% U3 H
P.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less
, k  q  B8 ?0 D4 {9 n/ |% n$ N' J0 U. q
- V: M- A: u- K+ T2 U: M, h' Y
Update 1:
how to turn off "Profiler" in worldserver.exe
7 i. e& |' O) r; L- y
# O( v/ Y) r# S" m) v, u

  ~# s$ M# Z! b4 i* m- N" T5 Uin VersionCommon.h of Worldserver Solution
/ o) a" `! k. u8 P, ULook for
) ?5 A8 @7 B7 `5 K) t' O0 o  x- ?5 d
- Z+ r0 g6 q% e/ N, |#define __PROFILE_RUN
5 ], Q% W3 h/ X4 ~7 n% x; R$ |5 ^% w4 B0 X! `: H
comment it or simply$ o, p  |6 ^2 E: a) Y5 N/ {8 _5 E

" Z  |4 L/ X0 P1 C1 E//#define __PROFILE_RUN & Y& x& M5 q8 Q

' I/ a! `5 f( R' j
8 f9 Z5 M) J; f# r' I' w# {. kcredits 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投寄。谢谢。我添加更多的很快如果你有病加太

& O: {4 e2 C/ v' r; ?  v' A




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