飞飞世界论坛

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

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

' X, ]& u4 [* c5 ^change level without Rebirth% r" A: x) ^3 F; f5 n$ b1 [7 g
% \4 B& y- [6 ^
Now, let us begin.
7 E6 |! ]- K; a$ U- a( }. l) b/ z9 W' I) }9 ?- U" }4 {
Requirements:' x  o& G1 j4 _- e& w8 y7 y8 y/ n
Source
+ L7 ?3 S- U, _/ h" ENotepad / Editor
" ~+ I4 J! L1 q+ W6 P( x$ U3 Y$ R( Z- T3 g
/ / Tips by Sedrika
" K  f- s; c4 [
$ I7 `& `( U( {2 P8 bIt is up to you how you do it ^ ^* t. x( g$ G9 y- A& Z4 L

4 W( \. ^( `0 ]Go into your source folder and open the definejob.h
7 t& ~2 @. K5 iSearch there for:
& r2 S3 W# p! ~: V# A
% g, y$ C: Z6 s5 h* q6 n#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå
; |5 Z0 K' C% C#define MAX_LEGEND_LEVEL 129& S% @+ R; B) G7 B
#define MAX_MONSTER_LEVEL 1606 L  ~4 B/ L1 t  i1 Z
#else // 15Â÷ è÷¾î·Î ·1o§è®àå- ~" E! x1 k9 _- u
#define MAX_LEGEND_LEVEL 121  h' Z4 j! e9 H$ C( d1 M
#endif // 15Â÷ è÷¾î·Î ·1o§è®àå
5 n6 v0 b: N- l6 M7 o! {$ N( M- ^, i9 G

1 x& v0 E, i6 t; Z: k3 V0 QRed: Player Max. Level$ S/ ~/ b/ s6 k4 j  p! g  F
Green: Monster Max. Level
) R; |. j- e6 t8 B' s: U/ g! {; c1 V+ u' V( j. x0 S$ Y7 Q% c0 D) y/ T
These changes as simple as you want.& F* {+ a, ]) Z& a* k' U0 N

" n  m! u- c+ M2 b( N" I- k, t8 z3 `Then you have to just recompile the World Server Files + and make your clientin the Definejob.h the same changes as in the source.  `/ W; J- j2 B( ^! U* B/ c" E
( _, N/ ^9 h3 F; k; b
Part 1 of blocking CE
# U' b$ Z* s, z! ]" p. U
' `' {/ f' s4 O9 t
In this tutorial I will show you how to change the Head of Mark flyff.8 b1 y8 g& x5 o8 n8 d
The current Head Mark is well known, 5E, which results as a string ('^').
! H5 c  w# A8 q% b) d% W; n; D9 ]6 U6 d/ w: n
For this we go to the World (Project) and looking at the Buffer.h after thistext+ P7 d; o  _9 W4 F2 H
Quote:! J2 b$ A3 T$ @$ o
# Define HEADER MARK '^' / / Normal messageheader& ]5 ]/ O! [# N5 p/ S3 y4 Q
# Define SYSHEADERMARK '%' / / System message header# [; Z6 J8 R6 o9 Z) \' N: D2 @
What the Sysheadmark is looking for is not even the top 5E.
, W0 O6 K/ F+ X* cChange this and it makes the CE Not work on server.2 O2 ^/ U7 I+ k6 ^6 y9 }* \
  |, t* y! X; o% h/ P$ f: J- ^
Then Tom's anti-hack is no longer useful.  ^0 v! x$ y/ q3 x
& {. X+ e; X0 l9 ?( \
LG Sedrika
Part 2 of blocking CE

7 Z, b: ^; D$ k9 B! |/ B1 r, y7 m& _# e# R# C: b2 P( `
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. * z; z2 q0 C! k6 [  E0 U
What does this have an advantage?- F* s* a6 g: |/ @) Q4 L
The editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself
0 h6 R: L+ X& L- z. p* X
4 W/ f3 `& j2 y/ f. i$ Q" F: e, E: A2 t6 T( ~( a
First you need to get open source even know how you do it, is left with you, andyou do the project on the Neuz.
/ G8 w6 m3 V) M8 @
/ Q* ?$ {, [  O' r, y/ iThen search for the following content in HwOption.cpp 0 `0 P' g) [: E
& B  b# W: p9 w9 Y% d
7 [: z* }1 r0 `
if (scan.Token == _T ("ip"))
& N* K8 n" k3 R  b% X{
. y  Z' z7 z+ C. y9 pscan.GetTokenEx ();2 E& w/ V# s2 Z% u
strcpy (m_IPAddress scan.Token);
7 M1 k6 X0 |' X) ^0 q2 u. B6 h}3 A/ d( H+ N, m& B
and turn it into this:
& F0 {# f' X9 N( y, t' U0 m. `: ~$ ?" OQuote:
& [, K. a; d, C5 [, `  q# cif (scan.Token == _T ("ip"))! [: ~1 ?( s4 u- \! [
{+ V4 i$ `! Q( v, l# d( L% F
/ / Scan.GetTokenEx ();
1 d0 Z% T; J7 L6 m, S' [/ / Strcpy (m_IPAddress, scan.Token);
7 |; P, C/ O) l  U5 `! N1 [}
% J, j7 v' M1 H( C. {, J1 V5 OAnd you created the solution.
& z4 ?5 _  X' R7 W# m- e- B4 F9 m' S$ I. P4 ?. A- z
/ H% S4 V% _9 |. @5 `& g$ y
Then read the Neuz not the IP from the INI anymore. even if put in it
% I: F$ i( d8 `( a. ]; T/ p1 T5 \/ r' E3 @
Max skill's
( _$ `6 q0 V6 Z! w
* y! ?$ F  K, ?! D0 W: X' f4 z
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 0 J/ K* W8 ~0 m7 |; l% O

) u0 A3 L- x3 w; d+ p2 D' T- sWith the TUT can provide the remedy it
, k2 h0 S4 l# {+ o; }) M
! U% A7 P0 n* W( c2 o8 L0 s# 1 opens the file SkillInfluence.h
$ y& Q) [4 J/ |4 C# 2 Search  ]5 y- z, o' k- p
Code:
& R# n+ u( D4 u/ v0 Q7 a/ y, c% ?* U4 Z; ]
# Define MAX_SKILLBUFF_COUNT 14
: k6 b4 z% \) X* u+ o. `6 _* w3 Q% `5 H& t' e1 U) d. V  r) N
# 3 Change the 14 to your number (eg 21) and save it from5 E5 b2 `( c* O3 E% e
# 4 compilation and ready
/ H: }- T8 [2 W  ]! x& _! A& G2 a  q& r

; p) `% ], F, wI 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:% _% o$ ^) d# r, p4 f, y2 V
- N0 o2 L: `. I) b& `
dennisdra
9 t$ @5 S# Z1 S- C.Crasy& m$ [# O% ~& h# |1 ], |1 f  f6 g$ U
©ross" l5 Q. W0 m8 g
Sedrika
) K0 c; h. v$ B/ ^8 s1 W* y# a. X1 F& |4 \
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!
. m) R1 f: [6 D. H* R; [/ W# |; W9 E" x
P.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less
  p$ }' |& f( ~7 m  ]: n6 D8 i  o" w1 g* E8 L$ _' Z8 U/ ^

8 i- u" X. i2 C' V( b& \Update 1:
how to turn off "Profiler" in worldserver.exe

$ p( l+ D! U. {1 A& t$ D2 h' o( \4 P/ M) s6 \) c
$ k! S+ f2 J- U
in VersionCommon.h of Worldserver Solution0 W8 _4 S  n7 ~  r% r  W
Look for
$ H. d7 f( P& R& h! G) i5 X+ i/ t
; c2 a+ W/ m8 b8 ~#define __PROFILE_RUN/ [( M: n) ]& M; Q; C
9 C$ [, K6 i$ q2 U8 ^4 J) G3 Q
comment it or simply! s( x" N6 @% O

4 A3 G) F" [, |8 b" G//#define __PROFILE_RUN " d% h$ _+ H4 p% V

* H6 M, R0 d7 S5 R% r. p+ z! l) d6 y* P1 ^% `/ H
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投寄。谢谢。我添加更多的很快如果你有病加太
* O9 E: y3 J( B1 w





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