飞飞世界论坛

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

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

( L* N+ P; ^. g) \: c* q  L; Qchange level without Rebirth; J3 L/ L; U8 W: a- K  O

2 R" H4 q0 T2 n; ]# t6 kNow, let us begin.
4 n3 s' _) i' U( |" p! y4 P2 ^7 B6 P  m2 n# n- K4 T! F$ r0 {
Requirements:
% k+ Y' I. R  T* ]+ v. D7 zSource
/ K; c+ |  e) d6 o+ O* H4 kNotepad / Editor
- f6 g2 _" T1 L( f, h- k  K) A5 S, E% k' m0 n" L& P" \* w% @! F
/ / Tips by Sedrika# S2 r3 ^" _- G, Y2 o
/ @# F2 P! }5 ^. K4 h
It is up to you how you do it ^ ^
1 J. S! a- T( {0 C" K) d
4 I% {- B. n; g# ~! h5 ]% nGo into your source folder and open the definejob.h$ c% K7 i8 Q  f' P
Search there for:; H% ?2 N: `4 Y5 _0 a) w# n

8 b- v% L8 z, W$ i#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå/ f! q+ i; }2 [1 Y4 Y
#define MAX_LEGEND_LEVEL 129
; W; B8 c) R: y" _- {5 D#define MAX_MONSTER_LEVEL 160
2 I0 h0 e$ B/ _5 v#else // 15Â÷ è÷¾î·Î ·1o§è®àå
1 ~$ e$ g- X3 E9 w3 v7 {#define MAX_LEGEND_LEVEL 121
& v# G0 T# u8 P#endif // 15Â÷ è÷¾î·Î ·1o§è®àå ' l% m; I+ \/ e7 K) s

. p# t$ Z: Z& S9 ?: ?5 X, j9 h$ ^+ F0 d! H1 D& y, E- _
Red: Player Max. Level* ~6 R+ s( @: E3 h
Green: Monster Max. Level
) ~- d) w# A8 ]( a1 Y: S$ K7 Q, p1 Z) J2 D/ w. B8 D
These changes as simple as you want.$ m+ o8 q  Y/ B+ d& W# D) A
2 O1 P: u0 X! e" }
Then you have to just recompile the World Server Files + and make your clientin the Definejob.h the same changes as in the source.
2 E8 R/ Y) b4 q: K
' s) Z# G, m: v9 Z; V& a. t
Part 1 of blocking CE

& y6 @& }( D) U9 e) O9 F1 j
$ U, D! b* q! O' c; r- K7 xIn this tutorial I will show you how to change the Head of Mark flyff.
9 Z9 Q" E1 `, Z1 r) V- `1 P1 lThe current Head Mark is well known, 5E, which results as a string ('^').+ i; g1 u+ G( _9 u% I3 D. U

2 X7 P7 d9 c! X: {1 eFor this we go to the World (Project) and looking at the Buffer.h after thistext, O" N2 R9 f! Q$ `6 t# ]
Quote:
: t4 t: b! Z8 q4 T# Define HEADER MARK '^' / / Normal messageheader8 B9 n7 `$ f" G# p6 m4 ]+ L; A
# Define SYSHEADERMARK '%' / / System message header7 k7 m  W* @. X
What the Sysheadmark is looking for is not even the top 5E.
" q8 u4 M& M' r! ~Change this and it makes the CE Not work on server.$ }7 z' w  Y: U$ ^% S2 P+ k; W3 ~
! {. S: D* Z$ K
Then Tom's anti-hack is no longer useful.
# N2 r0 `8 l: E/ X8 F7 M) x! G1 ?6 P$ [7 e/ g
LG Sedrika
Part 2 of blocking CE

/ v& q! k1 y; [0 v7 I# ^+ h# a% e3 Z! J" ~7 a7 [  o3 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.
+ u' ^$ |6 D6 `3 ]What does this have an advantage?) H3 g' Y" x+ M8 g# |
The editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself & x* a# a+ G' V6 b4 Q+ O9 A& e+ v8 G
% [$ |3 }$ P* y% D6 g( J
3 `7 q0 D  K# d! D9 ?' R; @
First you need to get open source even know how you do it, is left with you, andyou do the project on the Neuz.
7 ^, n3 a7 v6 W! ~  S, X/ K8 V7 w: ~3 P7 I1 J! o
Then search for the following content in HwOption.cpp - {8 w/ t9 w7 P

9 p$ s& O" O' ]9 D% h; m- n: F% p' y
if (scan.Token == _T ("ip"))
* Q+ D$ A- X& e) o{
' Q/ h. s/ w5 T8 mscan.GetTokenEx ();- k5 @; c' I4 ]. D; }4 S0 E
strcpy (m_IPAddress scan.Token);  n  N0 J- m8 z( T$ p9 m
}
; I+ P* a/ \6 P/ s4 K, {and turn it into this:
. `8 W* L' \8 uQuote:
4 _- Q0 U9 o$ S3 z$ D" |if (scan.Token == _T ("ip"))
, f: X" E* v9 |7 p% I$ z) e{* T1 e4 A  |, Y% v. c( q
/ / Scan.GetTokenEx ();/ e+ j2 A) c8 z' p# [
/ / Strcpy (m_IPAddress, scan.Token);) N9 a% X! |/ e$ z
}, j* d% w4 c' s' `* w9 k1 q
And you created the solution.
: n) v, B( W9 e+ W/ @: Q- b8 b- T5 N5 c1 f) M# t9 W/ A9 ~9 y1 e" H& D
3 L; z' u( Y* G' |
Then read the Neuz not the IP from the INI anymore. even if put in it! _4 ?8 V+ @$ x

# m, J/ M5 g& f, g% e6 O( a- t
Max skill's

2 ~, `) a0 ^0 B9 R* Z7 I$ I0 U1 s# \) F5 f
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 # ~7 b6 U  A3 r) _: a
! O' M5 K/ H9 T3 t- |# B, i6 s
With the TUT can provide the remedy it0 E4 S  k9 V+ j& P/ r, w

- I$ V0 _( q: F2 c# 1 opens the file SkillInfluence.h
9 a3 U/ C  X/ |+ B  o# 2 Search, D1 G8 p; `+ x7 q
Code:
) b6 a5 ~/ g2 Z
( b# @2 d* T" l6 w# Define MAX_SKILLBUFF_COUNT 14
: E. z8 [( `! C+ i! l/ a! s9 w. T. h
# 3 Change the 14 to your number (eg 21) and save it from3 Z; n+ D5 d0 D. [, A! M
# 4 compilation and ready
. j: f, o/ Y+ s, G
2 U) S0 T8 U/ U+ s
- i, z: K1 _$ P6 g7 QI 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 k; B" S+ J5 l

" \1 h% f5 }5 R( Gdennisdra1 ~4 V2 Z& T3 [0 C7 _; @
.Crasy! I3 |% ]4 Q* T+ H" B% K% t2 ^. P: H
©ross8 h! G- E* P: o' w( r5 P
Sedrika4 f6 F6 S9 E! C. _. A( t/ l+ R- R

3 g+ i: c% k+ n! I" X% ~% aeverything 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!
. p3 [3 w4 o- X9 H6 U' G8 I! m( I- f4 J, ?
P.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less/ B, O  F3 H% d) |1 Y8 E

& f( J- s* h" S% P; f6 u: O* s2 U# d
Update 1:
how to turn off "Profiler" in worldserver.exe

, A4 Y1 N# R: _  G( [) T8 d
6 c. f1 w* T/ F: M
4 n1 I2 C& \/ L* T, i4 l% M) k2 min VersionCommon.h of Worldserver Solution
2 |3 s1 D7 L3 x1 `Look for
: F/ t" f" V. r! c$ }( J, Y1 `* q; N3 `( u  n
#define __PROFILE_RUN# j& N% ^& u8 l6 S5 I6 h) \; u

/ @. B1 |$ Z' a$ D) K$ a8 L- |comment it or simply
" V/ i2 r3 C: w' v+ j* l$ |; {( H% k3 m3 ]5 d  _# ~" B) M
//#define __PROFILE_RUN 6 D7 z; O: z4 b  t1 G6 t0 E: g: Y
2 E9 e5 ?8 A1 X' N5 I

% N# \: D3 Y! ^: O1 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投寄。谢谢。我添加更多的很快如果你有病加太

, O! v' @' ^2 L* T/ M" B




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