飞飞世界论坛
标题: 改变最大等级 [打印本页]
作者: 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
* X3 `* v: z% n/ i, ~* |8 H) F8 m2 M
change level without Rebirth; ^ L7 u3 \. O+ g c N
" E W' Z, x) E% @. N7 S% A
Now, let us begin.
+ d% {- c# e* v( b1 F( u5 _& c
9 Q L( b7 z: hRequirements:% m+ Y* t- e; v5 r& W
Source
' z5 q" N2 P, b. dNotepad / Editor
; X+ K3 }' q( T- L1 B5 u7 X1 d/ S8 [ ?" J7 f2 U
/ / Tips by Sedrika
2 G1 }. ~2 P& P4 h: ~% J
' V( N7 t" Q$ @It is up to you how you do it ^ ^, p) T" }# h3 G
3 t' i7 u$ [' b/ e. \+ p8 NGo into your source folder and open the definejob.h: C$ ~2 h' d# r* i( W- r8 H
Search there for:
2 u! A) t: X* G; ?. X6 n! ?) P+ f8 q1 S* F
#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå
! Y* t+ a5 k1 j#define MAX_LEGEND_LEVEL 129( D" T% U& B& k1 W2 T$ X
#define MAX_MONSTER_LEVEL 160
9 B( R3 z# Y4 s6 G4 i4 \% E#else // 15Â÷ è÷¾î·Î ·1o§è®àå2 x2 u( @! P5 w0 C+ o# Y
#define MAX_LEGEND_LEVEL 121( q" s6 w2 \+ u$ x5 [: S: l
#endif // 15Â÷ è÷¾î·Î ·1o§è®àå
+ E/ ]! m" r( x7 \; u! s; ~' S+ i( J
5 Z8 D3 y- H3 Q+ l- s3 _Red: Player Max. Level1 P& ~1 [( y% @/ l0 T
Green: Monster Max. Level
! n7 k) A4 n( }8 V" S' I3 U, r3 S, G3 a( L; x) ?# M5 s- J
These changes as simple as you want.
0 R. S# l2 l8 x8 t1 @' ?0 `
( W& J; Z6 I N5 }; @0 WThen you have to just recompile the World Server Files + and make your clientin the Definejob.h the same changes as in the source.
6 |1 T& ` ]. G
! F8 n/ Q3 F% @1 C# e7 `
Part 1 of blocking CE
: c) W; a- f4 g9 h r" y n. Q o% [4 P' ~0 J* q! B- d
In this tutorial I will show you how to change the Head of Mark flyff.
( j/ _3 A7 _: WThe current Head Mark is well known, 5E, which results as a string ('^').
6 j9 y6 w) S* J" @% J/ x. a& @4 P* u
For this we go to the World (Project) and looking at the Buffer.h after thistext
' ^5 d5 q9 y- B8 k. D0 jQuote:- m$ L* i3 h: \0 `, U
# Define HEADER MARK '^' / / Normal messageheader
+ m9 h" v" _ j/ V$ M/ B# Define SYSHEADERMARK '%' / / System message header {- {' V# i9 A0 D+ f
What the Sysheadmark is looking for is not even the top 5E.: v8 s) F; n# n( i' T
Change this and it makes the CE Not work on server.
" ^! T) x" t; d; r& l0 ^* i }2 }& {) K
Then Tom's anti-hack is no longer useful.
6 d c% \* H# o. y" u# I m2 D4 X) B2 Y! W6 y1 B
LG Sedrika
Part 2 of blocking CE
; S7 V8 f, |' Z4 C. V
4 [& w) [5 q' kIn 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.
, U l. ^' j' a1 z' sWhat does this have an advantage?; P P2 x+ q: d& v- N
The editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself
4 n& c( v G' e$ U# Q7 R
$ O! J% J, O: @& x5 ~
0 D' U' w* ^/ m( t8 nFirst you need to get open source even know how you do it, is left with you, andyou do the project on the Neuz.2 W, p( G* b* \
5 [* w6 k1 q. v' _: B: UThen search for the following content in HwOption.cpp * {! G' h& {# u' b9 H5 @9 ?
* Y$ O4 C- o( Y* f0 w3 J8 ^6 D0 T
1 z9 s5 D- a" ]. Y3 {5 kif (scan.Token == _T ("ip"))
$ X* `: u( x' E, u# [- j{4 n2 O% c1 \* v/ A- R" ]
scan.GetTokenEx ();1 a, k0 z' Y, {. N/ m5 E# r6 y/ W
strcpy (m_IPAddress scan.Token);
/ C3 Y& u* S1 L# m$ \}4 {, o" @1 o" l& z O
and turn it into this:1 Y3 r: e& b4 O0 J8 _
Quote:
* X; I+ M3 B" Z$ ~# T9 Vif (scan.Token == _T ("ip"))
6 Q6 s5 O* `1 d{: a! f8 a7 Y+ g8 n5 p
/ / Scan.GetTokenEx ();
: H0 u6 g& y0 n% E% z& g% a' e* l/ / Strcpy (m_IPAddress, scan.Token);
& W6 i; a' Y* D7 |6 A8 j}/ \3 \+ h' U( I. ]0 H
And you created the solution.1 `" ]0 d4 w8 U. q# o
# @2 g Y; a) @# G, B6 v6 Q! V6 q5 L: }4 S |: b5 c/ h8 {
Then read the Neuz not the IP from the INI anymore. even if put in it1 H# C3 E. l6 W
5 r( H7 w8 T) Y
Max skill's
% G: a; w) l- v( ?& `
8 }2 ~1 s7 U1 y/ g& p) S1 W
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
1 ?$ N5 f2 J& L2 z# A5 x( x6 j G9 s' R5 n9 K. A6 C. M
With the TUT can provide the remedy it
% ?6 d8 b1 [. f- K# p& |
' K8 O+ g4 q2 t% J6 v4 o/ I# 1 opens the file SkillInfluence.h
, M3 r* r5 }- b# 2 Search p1 q) v, p- `$ r
Code:/ o4 R( d5 H+ ~! I4 `1 a! ^. d
# R# W4 ?. P6 x1 n' V
# Define MAX_SKILLBUFF_COUNT 146 b0 `0 q" `" P
1 }- Y- y% |. T# e2 {% N D# 3 Change the 14 to your number (eg 21) and save it from* y/ [1 Q" k8 [ y" _
# 4 compilation and ready
+ r$ x: y$ {/ f/ \
% L2 u6 ?; c' \* p' Y
1 r6 y' [' a' ~. o8 o( V8 xI 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:
0 ~- v+ Z% A4 e0 l
2 l# c. e" m: L5 f1 [5 Xdennisdra
" {, `$ `9 [; t) E.Crasy, i( M* }7 v H6 m
©ross/ w I' m8 c, e! C
Sedrika; U6 }% l+ ~/ U4 x6 D& Q
3 s+ |* [5 B3 m6 M
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!
! R; c/ _) C4 F* w0 s5 }2 k" \9 K5 a% l3 y$ \5 ?
P.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less
`, ^; \, N; @6 w0 Y
# i0 j2 \( ?. j* c8 f; A
/ {" {) c3 y" E& [& B; M, p$ x3 gUpdate 1:
how to turn off "Profiler" in worldserver.exe
A) l9 S6 [) T; V2 E6 t, z
0 ~0 _+ N4 Y7 h( O1 X1 Q P$ H
8 b# c! `- q5 f+ G6 s& O
in VersionCommon.h of Worldserver Solution
3 r, n s# i% \0 s# i# c: |/ iLook for
% _7 P: N& y" n3 I6 y8 b0 I9 }5 V1 L8 H4 W; i |
#define __PROFILE_RUN; `5 E1 E( E% n" v
: {; Q* l( {0 Zcomment it or simply
0 y5 S3 i2 N: Y# }' d. u% O+ y/ m5 U7 f4 X' a' Y" ]' t
//#define __PROFILE_RUN ; i" H- ]# M+ k# n/ o+ P C
+ y. j6 w7 m& V5 C# A' ?7 D8 y1 b. C* {* S6 N6 H* x
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 v; p0 ]8 L+ _1 M3 y% ?. n
| 欢迎光临 飞飞世界论坛 (http://www.ffwold.com/) |
Powered by Discuz! X3.2 |