飞飞世界论坛
标题: 改变最大等级 [打印本页]
作者: 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
# D7 U! ^/ \2 Y% `! `/ q+ K
change level without Rebirth3 {9 Z3 T. R1 N" |, |5 M
+ S1 F9 I9 y; O# L5 o! E6 x2 ?0 G4 M+ GNow, let us begin.7 F8 Q9 k% h/ t+ I; q$ H9 K' \
2 B2 s2 r& \- p/ @# fRequirements:, Y2 m7 V& c3 }
Source
( o& v3 n+ V0 n2 i5 {4 @* UNotepad / Editor# j( p1 _9 H" b% n' A
+ B: n; c8 k# x8 _9 y8 q
/ / Tips by Sedrika5 b! W6 K( r/ o( F
8 [5 W2 V; J% o* zIt is up to you how you do it ^ ^7 ]' W: T3 ^! A# O
# q" h% u5 _$ o5 e0 Z
Go into your source folder and open the definejob.h! r$ D1 g8 L! R9 }( X% M( J) c
Search there for: L1 O! B$ ?( q( P! T) R+ `: \( R
9 X9 \6 }5 ?$ L1 G; U#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå2 h' I% {# K' ?( _1 P# _" F
#define MAX_LEGEND_LEVEL 1296 @; n! u/ P+ U, a8 m: b! I
#define MAX_MONSTER_LEVEL 160
9 c+ u: {- z# k0 v: R+ C% w#else // 15Â÷ è÷¾î·Î ·1o§è®àå
0 H7 a- q4 l# r# t#define MAX_LEGEND_LEVEL 121
' S: P! i, F# y9 P/ _#endif // 15Â÷ è÷¾î·Î ·1o§è®àå
: C3 L# w, s5 k d% C$ O& k+ n% h; `" p
- M' c! n& l. K# X
Red: Player Max. Level! L3 r5 _+ F( k; } w: ~
Green: Monster Max. Level
# ?* Y8 W' k' Z, S; w( J8 U, {! m- ?7 F5 A- N0 \, Y0 s
These changes as simple as you want. Q1 H0 e9 N2 K; Z* `7 G# N- t( s
5 c K Y% R! l4 E' B4 X% RThen you have to just recompile the World Server Files + and make your clientin the Definejob.h the same changes as in the source.
4 W- t) q- w' J1 ~2 D j0 s- ?' M+ n; ]0 w
Part 1 of blocking CE
% U0 a/ l. h& E% @$ W6 A, ~% H' M. g# Z$ _5 C" ]
In this tutorial I will show you how to change the Head of Mark flyff.
: L7 z7 m- v2 R4 wThe current Head Mark is well known, 5E, which results as a string ('^').
3 D) m; w# E1 L# m3 {. r5 \7 M/ y; m& C9 u6 i. k' R" g
For this we go to the World (Project) and looking at the Buffer.h after thistext
( O; ]. [/ c, J8 M, XQuote:4 p- F7 |/ |4 x, l
# Define HEADER MARK '^' / / Normal messageheader8 l/ W: s+ N; v O. C5 d
# Define SYSHEADERMARK '%' / / System message header D' P9 R8 q7 [, X
What the Sysheadmark is looking for is not even the top 5E./ t# B" \4 U/ ?
Change this and it makes the CE Not work on server. B. `# U1 ]/ B; a9 _" P
7 w X9 N1 `9 W0 f& s4 ZThen Tom's anti-hack is no longer useful.% l y' ~, _2 y9 Y
! P- a) E: k. E0 t5 ? C
LG Sedrika
Part 2 of blocking CE
# B& [ K \3 [; i: R. z; y+ |8 a0 Q. h9 M) b
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.
! e0 t% Y9 r: w3 {2 yWhat does this have an advantage?% w _6 |: ^- @8 G$ G; d' {
The editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself
- Z0 |: x: C6 v! c0 a! N" p( `0 J1 Q
/ k. q g8 \/ l) 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.1 G" R: W& ]2 ]6 M) u( W: \
) J$ `8 a( l8 J3 v' j! w t( l6 R
Then search for the following content in HwOption.cpp * K! h; }! \* {' o7 S" M \: M
. }+ z6 I% Q: C
7 w. C( Z6 {! ]/ j1 `if (scan.Token == _T ("ip"))+ Y$ v0 U. t2 ?
{
' q: v& V6 v, V- Gscan.GetTokenEx ();$ L6 V6 v- X# _" `8 c. R( y2 y8 I
strcpy (m_IPAddress scan.Token);3 F" B7 D# N. e8 D& D) H
}
9 n- D. G2 ^- b1 Rand turn it into this:
5 o' o% h B8 D- D) rQuote:( v. }; g3 N2 H' N$ m* R
if (scan.Token == _T ("ip"))
9 |! j( c" n% r& z) q{) D7 X* H2 Q. I7 Z; {/ X9 D; {3 ?. `) F
/ / Scan.GetTokenEx ();( ^$ B, E. N) E5 P
/ / Strcpy (m_IPAddress, scan.Token);
5 J$ c0 C2 L0 z% \9 A2 c5 F3 j}* s5 d& W" k4 F$ w6 V6 r8 }
And you created the solution.+ {5 I' x! |7 U ?' H6 i
' b8 s% m8 h$ z p0 Z9 \6 v) Y# m, v0 x0 _
Then read the Neuz not the IP from the INI anymore. even if put in it) C- g1 A8 Z# M
* {. t' D2 w7 ]2 O
Max skill's
4 A* B; e6 \+ J8 ^, x
; T! s1 @. X7 r+ aAll know that, 14 Max buffs, you get all the RM Assist Skills + Skills fromBuffpang and no more space for the YJ, Knight, Ranger etc * V9 g! D! N+ `( p# R) Q& `
+ m* u; Q5 ]- n: q3 HWith the TUT can provide the remedy it
8 _$ K. y$ C3 p% `' O1 Q" O _+ `$ L, n* D: Q9 W
# 1 opens the file SkillInfluence.h
5 c6 n- U+ J. }& p# 2 Search
0 k# M( u# C {6 vCode:
8 m( t) X( t# L1 [- j6 F* K" ]2 O# x, ^) K* T# t
# Define MAX_SKILLBUFF_COUNT 14
, U2 J# n" ^2 {9 F3 t
3 S" i8 c5 i* m4 [# 3 Change the 14 to your number (eg 21) and save it from6 Y4 O Z f/ i% ]$ M: L/ q# O
# 4 compilation and ready
( ^- F+ D5 Z3 _9 _1 n4 q9 e
0 K# C: I2 D+ j( @4 q, G& B. R
+ g. \. Y( [8 E5 h) ~4 EI 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 t+ e1 q) d& {0 t' k8 ~7 o
8 e& i9 J6 A6 x9 t# f
dennisdra% J! W5 L0 F3 R( E
.Crasy
" Q9 A5 \9 N( O©ross
3 O8 B+ `5 A3 `; K0 Q' L% Y# Q4 R3 aSedrika
$ I+ f4 v8 X) U! U) _
7 j6 d7 N. w/ ]5 G* zeverything 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! 7 F/ H5 V5 L B& G0 Q7 y# _
# B0 w" J, q z9 q
P.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less- L1 |* k3 o5 f- m
: ?$ H: t3 D$ y, P$ }$ b& Q8 [. n
- n$ V' A7 Z$ K( d! A- uUpdate 1:
how to turn off "Profiler" in worldserver.exe
( v n) m+ \9 ^+ M; m: \0 Z
# |; p" o/ d/ y# N" O( I2 S* x! k4 e
in VersionCommon.h of Worldserver Solution
# {5 e) u/ `# P: |& ]' z( I: F3 [Look for& p2 m, j2 H$ k2 T
* I) m$ G6 h7 X, ?( |* S#define __PROFILE_RUN
4 g* z; w" ]! l v9 H
; d! _2 N* n( o3 o" ccomment it or simply- |! y5 b* ?; H
% Q; |1 N6 ~3 r, b
//#define __PROFILE_RUN 4 a7 k9 z7 f7 [& Z5 J% a
9 h* l0 U: C$ G5 B0 ~* v7 V- t2 \3 {+ C' j3 j# \9 f1 {
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投寄。谢谢。我添加更多的很快如果你有病加太
1 |3 v0 v' i! e/ J) x* [
| 欢迎光临 飞飞世界论坛 (http://www.ffwold.com/) |
Powered by Discuz! X3.2 |