飞飞世界论坛

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

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

9 a# i# }9 _; Y" Echange level without Rebirth; A  N" ^8 |+ r( W7 n$ Z3 S

/ r2 [( T* M* [  X( ~$ \Now, let us begin.
8 x7 U, V7 |0 K' ]; [4 L) r0 c7 m0 j8 @1 e# M9 B6 K
Requirements:; e0 V" ]: r/ [0 L7 p; I  b  A
Source
9 I. U- r' w- [0 J' ^$ nNotepad / Editor
9 u1 i4 S5 a5 b( ^7 A& m! o2 i
, x$ |& X% X1 _+ G9 ~; `/ / Tips by Sedrika3 k: O+ {; E( r
0 ]/ F8 d" j7 Q6 U/ U( s, |
It is up to you how you do it ^ ^* F4 r4 o) l+ J% x6 J1 y

6 c/ I4 o$ B7 OGo into your source folder and open the definejob.h  r* {9 X7 Q, E* J3 S
Search there for:
/ d# t8 C) ]) s. [, t1 _. V( E6 X5 j# {% F( Y  @. J
#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå* c# Q$ c/ L: `1 f- J
#define MAX_LEGEND_LEVEL 129
- [9 x- I  D: a1 Z, a7 a#define MAX_MONSTER_LEVEL 1608 [/ V" D* N! Y! o1 t
#else // 15Â÷ è÷¾î·Î ·1o§è®àå+ M# s+ f3 N, h, n6 w+ ~5 J
#define MAX_LEGEND_LEVEL 121$ i6 J2 c# V1 j$ `2 Y8 z
#endif // 15Â÷ è÷¾î·Î ·1o§è®àå
9 `9 X4 o* Y$ P) U1 L1 H' A9 {  y' I
, m$ u1 V- I4 I$ `, @9 h2 A5 ^+ S$ I# h' |7 O
Red: Player Max. Level
* V3 G' V  a+ f, ZGreen: Monster Max. Level
8 ?: H, _: i. X6 l* A* `
* y! g% z( y& R/ N. o$ }) ?$ mThese changes as simple as you want.2 r( ~* Q3 o* m

+ l5 m. N" u6 C: K# i. B% b+ fThen you have to just recompile the World Server Files + and make your clientin the Definejob.h the same changes as in the source.8 l  V+ t, K1 |! \* j' ^

5 \, r/ f; M8 U
Part 1 of blocking CE
, E8 V9 u! n! [; X

% e# |( _4 J+ [# S3 U! fIn this tutorial I will show you how to change the Head of Mark flyff.$ }$ k5 n& ~  a  y" g
The current Head Mark is well known, 5E, which results as a string ('^').( K% K% v5 x$ H) ]

% C  ~" Z  ?7 i/ E  _For this we go to the World (Project) and looking at the Buffer.h after thistext
: E+ Q& i: ~9 w0 m$ mQuote:. o- d( T! A8 O1 @2 a
# Define HEADER MARK '^' / / Normal messageheader
+ W1 Y" r7 i7 U9 |# Define SYSHEADERMARK '%' / / System message header$ l7 X6 x# b7 z  r2 E( x5 V2 m7 _
What the Sysheadmark is looking for is not even the top 5E.
( J- v$ U. g6 uChange this and it makes the CE Not work on server.
- S; E4 U. F' Q
9 O6 ]/ M  k/ d0 t, M' @1 C" PThen Tom's anti-hack is no longer useful.1 f: s3 f# A& j$ K+ j, ]

8 @) F, w) K* t  R  h3 @7 pLG Sedrika
Part 2 of blocking CE

& N" J- J( ^4 b, _" ]) v
! `6 A0 P2 X. v+ D1 IIn 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.
! L5 d+ G" i  h3 BWhat does this have an advantage?2 B) J3 D' S5 N0 {. Q( T
The editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself ; i- ]: S% E% E/ z- `" _4 @

1 e1 w& U) S) k. e& R5 N0 Q  p. u5 b
2 ~7 ?1 Z% y6 C4 W; H, MFirst you need to get open source even know how you do it, is left with you, andyou do the project on the Neuz.
: j% a" o: K: D. s7 k; V- H8 T+ O+ b0 H* R  {( ^3 N6 o
Then search for the following content in HwOption.cpp
+ Y  v2 x7 `# M# J* y
7 a+ s: {% I( R
' J* _2 q4 K' n( t8 c" i5 D0 Bif (scan.Token == _T ("ip"))
( C. j; S" d# e3 t{1 ^6 t3 _" M' J: |. c$ j& e
scan.GetTokenEx ();
% f" ?. Z& a" J0 t, }, ]strcpy (m_IPAddress scan.Token);- u5 V# q( C% `0 ^5 G& a( e+ N
}! H  J% p- C& D( i4 V  ^9 ?$ E
and turn it into this:
2 b1 U: q( V$ |$ B5 EQuote:
9 O* _/ T# k! g& {1 q4 f' Aif (scan.Token == _T ("ip"))0 Q& {9 ?/ @0 T9 T) ?- l' M
{
7 [: R4 G2 K$ t6 G/ / Scan.GetTokenEx ();# `4 k: e1 L) C( S5 W6 E2 M
/ / Strcpy (m_IPAddress, scan.Token);9 w. \( |6 w; R  K2 }4 t# t7 R
}
9 q- K# Z& k  C2 m( XAnd you created the solution.
4 J; a) `* l/ a  V* P1 E( D2 F; A- q7 W* x  O+ G

3 a) O  p" R, [1 a) `, bThen read the Neuz not the IP from the INI anymore. even if put in it" R' A. \" F; b" q8 @* u
6 V' d5 u* l' I
Max skill's
% E- s" U) C7 |  l; \' j
7 a0 Q" b6 R3 V
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
$ |5 t3 P: {" {/ y# }% K4 N, d5 D# Y# X5 R
With the TUT can provide the remedy it
, m, t% D7 o% F% F1 k4 [( d) R! y# `
# 1 opens the file SkillInfluence.h. u7 i0 i' Q' ^& l: Y* M6 t- k
# 2 Search
; \- v& P: O1 o2 fCode:% E/ g& I% Q' L% ]

# Y4 ~7 o, q% Z7 r. f  j0 J8 M9 T# Define MAX_SKILLBUFF_COUNT 14( Z9 H4 q- T; H3 y
7 o6 c+ `8 i+ g' W7 \
# 3 Change the 14 to your number (eg 21) and save it from
* {. ?6 R9 X+ n, z# 4 compilation and ready, a3 y+ n+ ~6 |' D
4 {, L2 W. p( n- L) v
' K3 A" }& v3 t! L
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:
9 R$ t: L$ K/ C1 Y
8 U0 G: _4 r( h1 v! I  }2 Cdennisdra
7 g& X' l  p0 r& S.Crasy; J# L5 J, F' m" R7 l$ ^& X2 I/ K
©ross% p) \4 k' h  Z! I
Sedrika) Y# @, _9 k$ a: p1 U: i' C! l; g
, U  W, H# X; I; x  f* Z* e* ^
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!
2 }# j2 z6 O* J8 C/ f: t- H, A) p& s) i1 Z
P.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less
1 k9 t9 v  p" H, s8 F/ l- E6 H9 L; |, P$ t6 @& [& ]' k: u+ L1 U2 _

3 J0 l8 c3 }2 F! Z! sUpdate 1:
how to turn off "Profiler" in worldserver.exe
( n  @/ M8 Q+ l4 {4 f! n  O6 x( [& x

& i2 r& z. ]+ u& q
# i+ C0 T9 [& g& A1 \$ b" oin VersionCommon.h of Worldserver Solution
1 S* R+ g3 B8 L4 n7 z- O8 iLook for
: f# g$ p1 L9 u/ m. S
0 }1 ^7 m# L' v- y* n# P#define __PROFILE_RUN( v$ O  f7 @/ M+ i  ]2 O5 G! y

+ L/ u, _, C- J+ v8 N; \comment it or simply" M# B. y8 g3 z& K. J3 o% [* O

. `6 d: y* B: S5 ?. e4 y& R2 D( b//#define __PROFILE_RUN 6 p: r5 ^+ c  W* ^

& K- e$ u7 u2 o3 j- U
0 M: |, }1 `4 Dcredits 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投寄。谢谢。我添加更多的很快如果你有病加太
/ M6 K+ o, w. w' N; t3 Q





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