飞飞世界论坛
标题: 改变最大等级 [打印本页]
作者: 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
7 m5 ]/ A1 Y2 s2 T' Cchange level without Rebirth
g; v: F2 c# Q, `
9 h1 W( y5 g6 E9 k; F8 n pNow, let us begin.
. ?+ H6 X+ b' i) l$ g2 i6 H. ~" k7 Y1 y* L. _1 ]
Requirements:
$ ]3 i' K w) Y: a& r% OSource6 ]) p l! }$ P ?1 V6 i, \
Notepad / Editor: k8 d S+ K$ u& N, x
+ D5 e- l) Y E+ N% P' _* {' |1 j
/ / Tips by Sedrika9 k3 c9 } `4 J8 X
+ Y9 X* X8 @9 A* a- b! \ I; rIt is up to you how you do it ^ ^
$ k5 a2 H- N8 w: e) B( b1 {
2 F5 D! Q# l9 S% i9 tGo into your source folder and open the definejob.h I; D( T- U! Y( e0 R0 Y I( o2 ] I. x
Search there for:# o) Z F: J+ \ J& {0 T4 {8 Q
+ B; e& U0 r) c& }3 {#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå
+ L. A4 d& g$ P+ t/ R#define MAX_LEGEND_LEVEL 129( B( b* L; {+ H$ b) `5 H1 [3 H" m
#define MAX_MONSTER_LEVEL 160
1 C( y' e/ z1 q7 ~9 L5 N" R#else // 15Â÷ è÷¾î·Î ·1o§è®àå: t8 z$ g( M/ Z% W# e V1 t
#define MAX_LEGEND_LEVEL 121# ~6 R- p" {3 X+ v
#endif // 15Â÷ è÷¾î·Î ·1o§è®àå $ {" T$ L) g* c' C& Z
& T5 @) ]5 ^; [9 W
/ o7 Y8 m3 }- D3 X `3 J# FRed: Player Max. Level
# B8 [: K2 e |2 s0 iGreen: Monster Max. Level! H) x5 q# e6 C, R' a" N
* D! K) T1 }% b# \$ k
These changes as simple as you want.# K8 s- Q8 I: y0 Q
v1 K6 ]% \1 x; J- 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.# ~4 K8 ~. K+ ^# u' k; N" O
+ l1 R; \( W8 j4 X: e: d, M4 w
Part 1 of blocking CE
! J% ]6 H# F6 Y+ p+ y$ p
8 K0 ~$ l# @/ A3 v% B; f$ nIn this tutorial I will show you how to change the Head of Mark flyff.5 |7 K6 r* c6 r- d
The current Head Mark is well known, 5E, which results as a string ('^').' Y1 V" D+ H" B+ U
& P8 |8 J; j# d% t8 u @) v. w
For this we go to the World (Project) and looking at the Buffer.h after thistext: r% a9 h" i" e4 K" l
Quote:
9 \+ h, y/ Z" Y) |2 J1 [. R. O# Define HEADER MARK '^' / / Normal messageheader( H9 ~4 T; B8 X0 S
# Define SYSHEADERMARK '%' / / System message header9 W$ S4 B* u- E4 i- K
What the Sysheadmark is looking for is not even the top 5E.6 ]8 q. U. K: I
Change this and it makes the CE Not work on server." g% Z+ B: Y- v3 U$ f/ J
- i* l# F% O }* v W2 \
Then Tom's anti-hack is no longer useful.
& |. D/ N) X8 @% \
& M2 T, _! ^4 S/ g/ tLG Sedrika
Part 2 of blocking CE
( h; ^% k9 [* d) {# U8 {0 M8 {; e2 ? e, O
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.
. `) T- N! {- U( H8 n3 T5 UWhat does this have an advantage?
) `$ x- R$ D: dThe editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself % Q2 X* I" C& |* D
6 S. W) n- [* o% }' y
$ F! p; v. I; x% n4 U5 w% pFirst you need to get open source even know how you do it, is left with you, andyou do the project on the Neuz.
' G* G* L+ z& N- u5 K& t8 B4 E, j. ?. ~% I) e
Then search for the following content in HwOption.cpp 6 I- C6 q( N8 z+ n
3 T r( @3 O& v; I6 D K1 M
; P( o, t# U1 \/ ]if (scan.Token == _T ("ip"))1 u( j; |# d% r: S
{( t6 Z* l- A2 U- }6 C' j3 {4 f' B0 r, B
scan.GetTokenEx ();- @/ X4 Z' i, E6 h4 A+ q% z i' M$ O9 _
strcpy (m_IPAddress scan.Token);6 E, z3 E; p4 I' w
}3 d+ J' T3 l8 l6 `( \* a1 H6 v1 G
and turn it into this:
8 A4 U* E& I G" ?Quote:
* }- G/ s/ c& mif (scan.Token == _T ("ip"))' T# A% z% @+ w: K
{, L8 g' ?, V- B& x
/ / Scan.GetTokenEx ();3 [1 [0 I) ]( ^: T, W0 c% }
/ / Strcpy (m_IPAddress, scan.Token);
8 U* m4 g+ n8 _) {# n8 I: @) C}4 H/ G% `4 A2 f% p
And you created the solution.3 q* l( F* C& c0 S W& P9 v
% P# D3 K9 [. u; S" J4 w! Y2 V
" X- {- U; k* `# a4 g! }- UThen read the Neuz not the IP from the INI anymore. even if put in it
( g4 k& Y5 p$ v! l. U6 A3 w- C6 S+ T- \% A M5 I
Max skill's
! p, K$ a4 B. k9 E
T- w( \# P0 d ]7 d- s
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 , e' {- R9 e$ o; ^( X! B
) ^- o; ~& r0 `2 K ~With the TUT can provide the remedy it
! [% [ ?- d- D! O, c; N- Z9 Z5 |+ Y% R
; O5 Z1 X3 G( t' {& v& ^1 L# 1 opens the file SkillInfluence.h( N* I& o& G* ?
# 2 Search
* _7 C, n+ d, r' ACode:
8 i6 {" F, ^: Z _9 u( n! i/ @# b' q1 K7 B, o. _
# Define MAX_SKILLBUFF_COUNT 144 I" I8 O4 o4 O1 _, [- [5 z% T
- K. h$ k2 E: N9 l! p
# 3 Change the 14 to your number (eg 21) and save it from
! B' w* ?8 A2 |' w, D# 4 compilation and ready. D! m# W2 J! k/ k% |' a
, K& B! v0 V3 v+ }* N8 O
9 l! z$ S7 U* {# ?$ v) W+ |; {3 s& fI 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:
- O4 G+ o: R" R, a9 y1 S# r9 H" Y
& o2 }0 t$ ~6 q2 m% ? F9 F9 hdennisdra) n. l6 q) B; {- Y
.Crasy
: v W- f! @3 J5 p- [©ross9 v: Z" a3 W. Y' Q3 z; Q6 ^
Sedrika
" o# T' U# ]$ x3 D% f% T% g
! L7 }9 E+ q8 ^: Y% Deverything 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! . z' Z$ T5 V* z; ~" p) V3 J [
8 t( O8 o9 p' Y) n3 K5 JP.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less
M8 w! }5 b7 B
% C) E2 l" h3 g( }
$ J! u" [5 ]' T) XUpdate 1:
how to turn off "Profiler" in worldserver.exe
' {- u2 l0 Q5 b
/ Z' F9 t' i3 k7 U) ]
: ]# l' r" J L0 T: M/ U2 `& Win VersionCommon.h of Worldserver Solution/ E; ]4 j* y3 h( V& h2 B
Look for3 \- o* H$ u4 H* m
7 G: Y ~, R( G2 R; B' A$ L#define __PROFILE_RUN
% Z [) K9 `. Z( j
L- i; R9 e Ucomment it or simply
$ ], n9 c( j% z; X3 I; L1 ^8 ~* } W) z# r* _% v" G
//#define __PROFILE_RUN
7 B$ J3 F# d+ w9 |" S/ |
* G" c2 \! L: P4 a) X
+ }; d6 @9 @" I, D0 jcredits 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投寄。谢谢。我添加更多的很快如果你有病加太
2 _" Z* L7 D/ [
| 欢迎光临 飞飞世界论坛 (http://www.ffwold.com/) |
Powered by Discuz! X3.2 |