飞飞世界论坛
标题: 改变最大等级 [打印本页]
作者: 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
0 D4 x1 ?* x2 h$ ]+ G% y& O# {- S* Schange level without Rebirth3 R: m* r# z8 v" A/ t. n* C0 T+ X
. S s$ R. c- B/ f# yNow, let us begin.
- x8 b; K" A, n/ i7 n! R$ A6 F o4 p) s! v6 `2 n+ `$ l0 V" ?
Requirements:& t7 T3 z( h3 S, U5 I
Source
. F: }% I2 U( C+ ^% eNotepad / Editor
8 { L u# s8 H7 F
) e) z( ?, Q4 U/ / Tips by Sedrika9 h' ?* M/ k8 q, ^; X
" x! }; |( l2 m, ], qIt is up to you how you do it ^ ^
( L% v( k2 A, N# X9 s+ J3 b% E3 x" p/ r6 H
Go into your source folder and open the definejob.h
! P# A3 }# ]8 T) J$ m hSearch there for:
, y- n* F9 Z7 M+ j! U9 n+ r
+ c" M$ p, U; M9 E) T+ `% N#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå) ?+ V: a5 X( E7 q8 q n" T
#define MAX_LEGEND_LEVEL 129# ?5 Y0 b6 a3 e8 s3 {! I; B
#define MAX_MONSTER_LEVEL 1602 b1 w. V# K$ }- `7 y/ M6 x4 n
#else // 15Â÷ è÷¾î·Î ·1o§è®àå/ z; m1 U$ s; Z# X5 x
#define MAX_LEGEND_LEVEL 1219 M* r$ q& k1 g2 T
#endif // 15Â÷ è÷¾î·Î ·1o§è®àå $ q# b2 t C, }& `, x
# `# T/ ?+ J6 W' f Q4 N, q( D3 z4 b3 d) f1 N2 A& v
Red: Player Max. Level
: F4 f& B5 V$ e4 s+ B% GGreen: Monster Max. Level8 W8 z1 h5 a- `- d" W: `
2 b0 o1 U& b/ l ~These changes as simple as you want.! O& k" b9 u4 M1 x' }2 n% ~6 I5 b
, H) e, V, i- a KThen you have to just recompile the World Server Files + and make your clientin the Definejob.h the same changes as in the source.
2 [' m$ a* m3 J% m1 A3 w! y, o; j+ P# y: d
Part 1 of blocking CE
$ C: i, p' O. {4 k }+ A$ t; B+ \# Q
In this tutorial I will show you how to change the Head of Mark flyff.
! Z* X+ }. _1 J6 [' D& v1 oThe current Head Mark is well known, 5E, which results as a string ('^').
7 s* ?0 J n# ^( Y6 c4 w" f$ K( Z2 _9 c6 F! X# L2 t% J
For this we go to the World (Project) and looking at the Buffer.h after thistext
- F0 k% ]) T" R& YQuote:
/ }+ i# x3 @- V# Define HEADER MARK '^' / / Normal messageheader$ r! l5 O: c7 B+ D+ `
# Define SYSHEADERMARK '%' / / System message header
$ a* M: v8 i( q+ e' ~# `$ SWhat the Sysheadmark is looking for is not even the top 5E.
$ Z5 t5 P; l+ b3 V9 ^Change this and it makes the CE Not work on server., {' c$ C+ {) S( |/ p
$ l; Y1 G, a" I: ^( b* R( ?- KThen Tom's anti-hack is no longer useful.
- L+ Q& |1 X# {' q3 z: }/ L8 X8 A* I4 p
1 x# Q/ b0 ^4 o! XLG Sedrika
Part 2 of blocking CE
& c8 c$ p m+ b7 s5 e4 g' m; S# R; n
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. * {) ]& b% q/ M+ U1 X
What does this have an advantage?" n/ P: N- m5 W
The editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself 2 A- e7 h& n* l: b7 \6 U$ f) Y& m
; ~% |3 Q* |( g; f$ I# m7 F
6 u1 w+ Z2 `/ I, z$ m1 i0 F* RFirst you need to get open source even know how you do it, is left with you, andyou do the project on the Neuz.9 K. Z4 g! y P) N+ B- N
' o1 a6 d ?6 {) X8 vThen search for the following content in HwOption.cpp
7 Y6 p) p0 U2 M# t' M+ g- |( G$ b
" K( r& [1 @' W$ F. j/ O. i. [; ^. y% A2 ]* r
if (scan.Token == _T ("ip")): o: B: h2 n2 t X D V
{: H. x+ b, M' f) |
scan.GetTokenEx ();
2 n2 n, n) G, nstrcpy (m_IPAddress scan.Token);
5 `+ Q) t9 f% C) `; g}
' s9 _5 \* ^$ U, kand turn it into this:
& B7 R8 T2 d a% ` vQuote:
6 \5 T9 _, w* { Gif (scan.Token == _T ("ip"))) `/ v2 m, J% N1 ]% P& f: ]! n
{ i: e1 r9 H9 R6 Z- j
/ / Scan.GetTokenEx ();
: |& E/ E+ W9 ]% c/ / Strcpy (m_IPAddress, scan.Token);
6 ?: i s+ i$ T8 H8 | v6 P}
; X1 `7 |: _9 g& w6 dAnd you created the solution.
5 w# m! G; P! V; ^* p; u) O
* L7 F5 C8 H$ Z9 a8 Q4 R
$ k" f s6 G' d: M4 HThen read the Neuz not the IP from the INI anymore. even if put in it" o9 Y7 b1 f5 f) p
/ M5 p- B* N. \2 V
Max skill's
) f& W5 n N8 T0 H& Q8 [7 k2 O2 s" d9 a) @4 N% P, i0 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 3 l- P" d, a" k) j+ k" p9 u
3 b: n, c2 w& P8 R ]
With the TUT can provide the remedy it
$ E5 a. t: p! H/ g* Q: u' r2 F8 J" @. y: h- f0 M/ }
# 1 opens the file SkillInfluence.h
. Y I( {: h6 k e3 M# 2 Search6 I* G0 }9 t% I7 v! `$ a" J* r3 d
Code:
' p& X) l* t4 X2 N: V* S7 x) Z, y# i, \% `8 k4 f* q7 o
# Define MAX_SKILLBUFF_COUNT 14
8 e/ ^3 a5 n* ?; s0 |
3 m4 H0 V+ k" @# 3 Change the 14 to your number (eg 21) and save it from* M: o/ J' ~$ y7 J, i- c' R
# 4 compilation and ready
% [5 L. F" P0 W( m6 \8 o& x8 n8 k; O2 i
+ J" A$ h( S( K; V# \8 [% 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:7 c o5 U n: Z/ i
S; ^' W' i _( F' p! a; [! \$ Pdennisdra$ j$ w8 |8 P: A1 q- L$ N2 m" s- i5 |
.Crasy
) S: i+ ?) }, K5 W& i©ross/ ]4 I- e; ]) \: |& {; Z) E
Sedrika: ~6 [% }2 Q; ~: D" ]
- z' M8 k* n9 }7 f; O$ Y; Ceverything 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!
. J' b. x. I9 H" N; o3 Y
+ e* S3 D: V# u4 ^/ x( V+ n1 kP.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less
! |8 T, i# Y9 q8 o% [; y# {' w5 w2 d0 _2 _+ P9 R+ R
4 C9 U% o3 d: d0 D0 R# g, y0 w# pUpdate 1:
how to turn off "Profiler" in worldserver.exe
/ K* B( |: N7 I
) s8 f3 O: g+ V. ?) u1 Y) t0 G4 L7 }
in VersionCommon.h of Worldserver Solution' \; @/ }! C# U. t" a& i
Look for
2 z5 l5 ?( A1 U9 Y
# @+ N# M5 U! x/ U#define __PROFILE_RUN9 t2 }7 X+ x+ L2 i
% e$ u. U( z9 h: p: P' Tcomment it or simply3 r4 a, E, I7 {# u3 H4 [/ e
" N/ J+ M5 v2 [0 e$ F% t//#define __PROFILE_RUN : n# S# s" J( z7 i
% u" e- a1 \( `
2 l( a m/ O. }( R8 }
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投寄。谢谢。我添加更多的很快如果你有病加太
) d( \: X4 s: Y7 {
欢迎光临 飞飞世界论坛 (http://www.ffwold.com/) |
Powered by Discuz! X3.2 |