飞飞世界论坛

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

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

6 e  T: A. G) D/ H0 f; uchange level without Rebirth
3 X0 [) h$ X  V& ?& ~$ _) t4 F1 C# f0 x) T, d' y
Now, let us begin.8 `3 ?) ~6 y% [3 |

2 k% y# ]! f6 X2 n- P: N, R! p$ |Requirements:
* Q5 H( S' u7 f! Q0 [; L5 {5 \Source
/ B/ e! w& ~# R; q  UNotepad / Editor
9 @% a, p4 d* e& X; V
/ f0 I3 e7 b' E# a$ x9 Y- h/ / Tips by Sedrika
6 Z0 V5 }% `) n5 `) W6 D9 T
  a# X  A& n) y8 i2 r+ |& m" W) OIt is up to you how you do it ^ ^2 t# C6 q2 u* G3 ]
! q# b% a( {0 x3 u9 l
Go into your source folder and open the definejob.h
7 X3 S9 D! _2 s* t* O3 ~Search there for:. n; ?6 ^( o7 e- w
5 d( Y6 ^% D7 K2 j. A% h+ t
#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå
. S# l' l  N8 Y& {( b#define MAX_LEGEND_LEVEL 129
* i% S: M9 _' c% u* t* e#define MAX_MONSTER_LEVEL 160
8 j; c/ N. J% j! ~#else // 15Â÷ è÷¾î·Î ·1o§è®àå# o5 J* n4 \5 p. _3 M# Q
#define MAX_LEGEND_LEVEL 1213 L+ c3 F. x/ x2 L" X; w- w$ M
#endif // 15Â÷ è÷¾î·Î ·1o§è®àå 6 C) @3 v# [0 b$ ]  L3 Y! Z
# x) ~1 H' Q' E3 _( _; c1 U
5 r2 j  n: F7 ?5 |; C
Red: Player Max. Level  l) w) `3 S4 e$ i! b0 Q
Green: Monster Max. Level& e+ {* g2 u" i9 P1 w3 i, w

' _- l/ |- X6 J. L8 aThese changes as simple as you want., F: d$ O- g7 V) Z, I( j0 ]

% N. C. V* F: Z5 jThen you have to just recompile the World Server Files + and make your clientin the Definejob.h the same changes as in the source.
3 n/ D! R3 [5 ^* z1 H8 B! v2 m) |! q- [7 d" ?1 V
Part 1 of blocking CE

- }( {$ K' W+ ^" G" a# E. t" ^4 v- g4 X
In this tutorial I will show you how to change the Head of Mark flyff.# y% g' U' l+ l; O0 I
The current Head Mark is well known, 5E, which results as a string ('^').
. u. g% G/ d0 @0 n  Y. P- e( @& k4 Y2 D$ P
For this we go to the World (Project) and looking at the Buffer.h after thistext! V! i  s& b+ r# Y  |* [: ]
Quote:
9 s6 L& s( U: V; F& Q% ~) p7 m# Define HEADER MARK '^' / / Normal messageheader% I1 y9 u1 A1 y# ~- d
# Define SYSHEADERMARK '%' / / System message header. `: F( C5 _/ p- h' a
What the Sysheadmark is looking for is not even the top 5E.+ U* T) n3 t% o8 L; Z9 D
Change this and it makes the CE Not work on server.
1 J* V  x1 I3 ~' X9 t- O9 c" a# U. S- v" F2 E5 }
Then Tom's anti-hack is no longer useful.
3 z" m; ^1 m4 M1 B, ]
4 d" S& n3 R) a3 xLG Sedrika
Part 2 of blocking CE

% x: N5 w% I& X* t
& F, P' ?- h8 i5 T: z4 {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. 6 U) e' h5 m& s, X( e" s' ?4 M
What does this have an advantage?- }- r6 x) z: W: d& Z: |5 X
The editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself
6 t8 E8 h! o" a% U6 `/ j! ?0 e6 v: ^3 r5 y+ ]$ S7 j2 Z/ k; _0 I

7 j' |7 ?, T6 u  zFirst you need to get open source even know how you do it, is left with you, andyou do the project on the Neuz.2 z+ _; U" |# ^$ W' J2 A1 }
5 w4 t9 r( d3 l5 R+ }
Then search for the following content in HwOption.cpp
  h7 _9 e* r' e9 {( i) v* C3 b4 R& ]6 k

, O( F6 V9 m$ ]1 nif (scan.Token == _T ("ip"))
& q# b) x" i- M) \2 j/ F{
) ]* W3 z# _- h+ Jscan.GetTokenEx ();6 k, T0 D: D1 G
strcpy (m_IPAddress scan.Token);
8 O5 d7 l% Q$ F% ^# f}
1 r" T6 c7 J1 U! u# vand turn it into this:
4 D! i+ J0 T& I5 ]; n  YQuote:
, D3 |& [( i0 I, N: M' g* oif (scan.Token == _T ("ip"))
4 k9 w4 F' N; e& j* N# z{
4 n4 s, R" B" D/ / Scan.GetTokenEx ();
# a" g' K3 Z% {* y/ G2 n  f/ / Strcpy (m_IPAddress, scan.Token);
9 V, \4 {4 J4 S5 [}1 v8 ^' y: K( P+ l9 m
And you created the solution./ _! y5 W+ c& c  V
1 N. U3 V' m. M5 T( Z( g& i9 }

3 P! v4 j" \* k; W, l0 FThen read the Neuz not the IP from the INI anymore. even if put in it
9 I- m# N7 Y: p1 Q# u
" o! T9 v+ o# D  T
Max skill's
" c' _* U  P% p% K; ?5 l
4 H+ @$ M7 N" T) _" ]- I7 l" k
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# @! d! F5 T: A
# ~# P/ ^0 L3 ZWith the TUT can provide the remedy it
7 y3 M2 p: @# y9 B" ?- d& x7 `
3 S$ u( i6 l6 j; ^8 R" u# 1 opens the file SkillInfluence.h
) W% l: n* D. i" F8 x" v5 Z# Q# 2 Search1 J- ?, _+ S  y# m& }% x/ d" ?! @1 K
Code:, ~/ F0 z% }/ N7 Z# s

7 }. _# o1 W/ p; \: W2 D. F# Define MAX_SKILLBUFF_COUNT 14
, L6 h3 g- H/ J
9 Z& I% |  j* G% z- l# 3 Change the 14 to your number (eg 21) and save it from
: @, _: a: O' i% s# 4 compilation and ready. Q/ f4 ~  y  h% X5 p7 g
& r9 M4 x1 l# B$ N
! x, G* z  i9 T
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:4 t8 w. U  G$ q
1 ^; ~9 U: R; p
dennisdra
9 E7 j: |- g/ g.Crasy6 S+ c( `  w- F4 t1 q& n5 ^# k" y
©ross
. w, ]# ~& h2 e6 V9 ^% ~Sedrika3 D. ^; U5 k; L1 j! q1 Z
0 [. ~' ^6 |2 @* i  W2 Z
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! + I; k3 n+ D0 t- S, f3 W
" i7 m( m4 a6 {2 B+ t
P.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less$ n2 v* x. b' m" I2 H- d$ z' q( ~

/ T* v( Z2 g* Y, c$ o, U# a+ l' H4 U$ ~
Update 1:
how to turn off "Profiler" in worldserver.exe

4 ?4 y: F7 A2 z3 F: y7 @( W& e+ a( \- N% X) I5 E4 G
$ f& \# G) g- {# @( `
in VersionCommon.h of Worldserver Solution
! Y- H$ M" l7 B0 t5 _Look for
* K8 S+ U; k! z* V  T
7 b( \( M8 _3 O6 Y; ?/ |#define __PROFILE_RUN
3 {- m3 |) `! b7 W$ G8 M( E; i9 y/ Z) i
comment it or simply
1 C; B. t/ @/ K1 X! `
; a5 j" m  |- |( u0 ]! s* l//#define __PROFILE_RUN
; n6 v9 |6 F# ?/ H+ N1 o$ E  I! p7 O- M: z$ Y
! l# |* E* i( F+ g
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投寄。谢谢。我添加更多的很快如果你有病加太

8 H( L8 S  }. l9 Q+ g5 d5 e! t




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