飞飞世界论坛
标题: 改变最大等级 [打印本页]
作者: 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 C( M, m- k+ J# m8 Dchange level without Rebirth
4 F7 i/ G# F$ E" |, t) n
) ?4 j3 E1 N7 G( n2 s% HNow, let us begin.. |: V# o0 U4 ~
" k/ C8 z/ z6 D9 x% ^
Requirements:2 G2 v& Z' [3 A5 N7 B
Source4 [$ P, l. Y$ Z7 q7 _8 b$ p8 {4 A
Notepad / Editor4 A6 o3 O" j* b3 z1 ^ }0 B
- H3 P0 R% h0 J- K# b& _/ / Tips by Sedrika. N9 d) w; d; O8 X6 t. _0 Q
& N1 F7 Y+ c& C3 o7 U# @It is up to you how you do it ^ ^
- F: Z+ z9 [. `: h& Q3 T! L7 J3 }
% u' g" k* m# e/ `2 ]- FGo into your source folder and open the definejob.h! B; C% L2 Y9 Z4 N+ X, j. V0 o
Search there for:
6 J. p1 w- q* V V1 t7 y
8 B: T+ T8 m6 k7 `#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå
. q0 b. ?7 c3 ^2 K5 G#define MAX_LEGEND_LEVEL 129
5 V3 _) I7 U7 j2 `#define MAX_MONSTER_LEVEL 160
m4 v( M1 p f! i& ?% L#else // 15Â÷ è÷¾î·Î ·1o§è®àå
- o3 D& a7 p4 S5 Y" {( `& d) c#define MAX_LEGEND_LEVEL 121# s5 @8 Q1 \5 J: v) ]
#endif // 15Â÷ è÷¾î·Î ·1o§è®àå
& }8 B7 o: E0 _. [, \% B& Z
$ ] {/ H; ~# S% F* c7 E
) k) a2 M% Z. o1 H: D' TRed: Player Max. Level7 Q* g; @- @! | `
Green: Monster Max. Level
( c# B [) ]4 c3 q! C5 p; D1 O- f/ v9 q" V$ l
These changes as simple as you want. F5 T" V L" v. k$ k
3 I; H/ b; c V3 W, h1 XThen you have to just recompile the World Server Files + and make your clientin the Definejob.h the same changes as in the source.
5 w0 R2 ^9 I1 Z
) X# N1 q, s3 ]8 D* h* u7 j
Part 1 of blocking CE
+ a/ H9 C2 Z3 a9 l
) Y& h1 G1 N' O+ o! FIn this tutorial I will show you how to change the Head of Mark flyff.5 t" q; u/ Z3 } U& O5 B" [ F/ d. B4 r
The current Head Mark is well known, 5E, which results as a string ('^').
# Z+ d7 o: A$ s, l& j: x3 y" p% }9 \+ R% B( }
For this we go to the World (Project) and looking at the Buffer.h after thistext
0 |; V0 i" a1 |" Z- TQuote:
1 n6 v: u o: ?! z9 C* J# Define HEADER MARK '^' / / Normal messageheader
8 S% @3 F- K3 q( j- V! y5 D# Define SYSHEADERMARK '%' / / System message header4 `: {6 {3 v9 h" ]. G
What the Sysheadmark is looking for is not even the top 5E.
d4 W' X! _3 u {Change this and it makes the CE Not work on server.
+ U" Y+ {7 [+ n. x( V& L
. I b; W1 p" TThen Tom's anti-hack is no longer useful.6 J$ ~3 o6 S6 w6 q6 G; {7 R/ ~
2 W! K" _ n$ F8 {! ]
LG Sedrika
Part 2 of blocking CE
$ @* R7 T- V6 p" w) l7 x5 u4 H( L( y
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. 5 h' J2 K$ U3 m. g1 D
What does this have an advantage?" d# }% L" n; E8 X# I
The editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself 1 z+ |- H) m. Q/ C$ i
+ C' p7 s- l7 x5 z
, V" k+ z( Y' J
First you need to get open source even know how you do it, is left with you, andyou do the project on the Neuz.0 _: Z& _& w9 {0 P1 x
: S: m8 A* W6 d1 m H T4 r4 t3 K
Then search for the following content in HwOption.cpp 2 `9 d5 |8 n6 B0 L5 U! y" X! u+ ^" e9 q3 \
( J: }- C4 f) f2 }- C8 N! W5 s# L7 m
6 w: L. m. w6 I" A P- ]) n( F
if (scan.Token == _T ("ip"))
0 h& m% [& u+ D' j1 v g{
, W- i4 t& Q1 O& [' Nscan.GetTokenEx ();& }' L1 o% J1 g" D" y. n- y u
strcpy (m_IPAddress scan.Token);
: S, B; i; o r. @6 s/ r6 ]}
: P5 I" p: [( Z! d- Y5 u+ pand turn it into this:; u$ w& Y& Q4 M
Quote:
) L( I% ~) z* J8 c- ^1 |if (scan.Token == _T ("ip"))1 t$ W% J: l5 w8 m& l
{
3 R3 J8 M/ C& Y/ / Scan.GetTokenEx ();" J# z4 M' [! [& x" y% `
/ / Strcpy (m_IPAddress, scan.Token);3 J0 [9 D0 P( X# g
}
2 b4 P. j8 n3 ?& l5 U" r4 ^And you created the solution.
6 Q6 ^* h: b+ C% B
. f" P: q. }2 Z4 R! {6 H% V5 y) [) S. h, e; n/ x
Then read the Neuz not the IP from the INI anymore. even if put in it0 u$ T- x) H4 u0 n/ E* N- H
' n5 S# m( u& E$ G
Max skill's
5 K, N- K. z$ Q# U( F. M7 C- W4 d% |4 u8 [
# d% Q- e, R7 A9 qAll know that, 14 Max buffs, you get all the RM Assist Skills + Skills fromBuffpang and no more space for the YJ, Knight, Ranger etc
2 M n3 [9 U8 b) x7 Z9 M: w# K: J+ R" a
With the TUT can provide the remedy it
! \1 r+ c) j! v- d x$ g3 M4 S2 r* U3 N U) v
# 1 opens the file SkillInfluence.h
) ~: p x9 E& ~. ~4 r# 2 Search* Y( _7 z2 N# r( C4 l0 H' Q
Code:" r- r$ ~' F2 P, D5 S
( ]# T; s7 l; N/ [& @, B: C
# Define MAX_SKILLBUFF_COUNT 14
' V1 }0 I% u8 D2 y( B" r
# V- o" R% X* ^1 y; `0 @7 D3 A# 3 Change the 14 to your number (eg 21) and save it from
3 i! k# C6 s$ ]% B o& x3 @( ^# 4 compilation and ready
; q! X6 I. S R# K( |! x* w
+ R' q+ l; q: v F7 g) D3 Y* T; R
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:/ z$ C$ K' F0 z( L* i
, B( f' v; p2 V8 edennisdra
0 Z9 _6 L1 i. j. k' U.Crasy
. A/ }9 Y. F3 S5 V N/ F: U' j©ross5 T+ ~2 D U! N/ P
Sedrika
9 B, B8 X" r9 R* a& D$ W) j/ d W( F# @, |* g" v" e h
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! ( w( e0 V% q" k3 {' h
2 a1 r+ q _! x" e: G* L9 cP.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less6 W. i6 R* s0 ?; H
: B, T7 }9 h+ ?3 {9 W
% [6 a+ Y( d N. \9 V1 o( r' v+ C3 OUpdate 1:
how to turn off "Profiler" in worldserver.exe
3 W. l& R0 i/ s0 a
, L6 f# h9 V" @+ ^- R" P7 d2 ?6 N/ c3 C) x2 f1 e4 P2 G
in VersionCommon.h of Worldserver Solution
! A- V$ i) h4 R8 M; mLook for
$ k A7 S. p1 e1 f* y) s
" M- D% B: \4 f- S" i#define __PROFILE_RUN7 j* x0 ^1 Z0 l9 U* E
* M" J7 g; Q6 acomment it or simply5 W5 c( O; f& \! [% h, {# S% p
" G9 d1 a& E& d$ B9 K//#define __PROFILE_RUN
$ b1 O6 y6 b" z0 W
# E/ y* i/ Y7 c" Z H
# P; o% V4 Y- Q+ o/ c% Kcredits 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投寄。谢谢。我添加更多的很快如果你有病加太
5 T3 Q8 t) p7 \3 s1 Q* T3 `
| 欢迎光临 飞飞世界论坛 (http://www.ffwold.com/) |
Powered by Discuz! X3.2 |