飞飞世界论坛

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

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

; A- G) C6 r9 q" A/ B5 Cchange level without Rebirth$ Y3 f9 m- b% [0 Z! P

6 u, q- E  N8 A* ]4 }* L" uNow, let us begin./ T- g$ n! b0 s' Q* B" ^
$ x, o1 @+ n. t6 F
Requirements:
4 @) e% A% `" U0 X+ ^" XSource+ v" _" x) c) r0 B
Notepad / Editor1 g0 l* Q; P+ K( Y+ d

; x. K8 t# e  m5 V+ @8 V/ / Tips by Sedrika6 E9 J: g! G5 d$ M, M
) f* j% n& u5 J- @. q6 m7 S2 e7 O3 g
It is up to you how you do it ^ ^! g# n: {* b9 q3 P! D  y. s4 c. Z$ _' W
% `/ h7 a" ~* h4 {$ K2 o
Go into your source folder and open the definejob.h
1 ]5 H4 E  X: u* MSearch there for:
8 R' G$ e% h! J2 W% |& F6 r0 U( m
; i2 V# C: S$ m#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå
' F3 ?0 m2 U! f) T#define MAX_LEGEND_LEVEL 129
$ ^6 J9 g, f9 I' G. B1 s#define MAX_MONSTER_LEVEL 160
) K. t* C' F3 \; ]& Q# o2 ~#else // 15Â÷ è÷¾î·Î ·1o§è®àå
# y* m# [6 |  v2 Z#define MAX_LEGEND_LEVEL 121* a. f- P( p7 Z- W, l7 ~  C$ b8 t
#endif // 15Â÷ è÷¾î·Î ·1o§è®àå
  D5 j- m. g2 L  Q* F* S
  T2 x; I! @  U: s5 P: E3 M; X; `" S9 U. t
Red: Player Max. Level
0 ?' @+ L5 q7 q" `5 KGreen: Monster Max. Level
/ G7 s' l, i/ {% j) r
) l8 W, q2 [! J: S( T  ^: n& cThese changes as simple as you want.. c. i) w, U0 X% w3 V$ o) ~* W) \
2 ~0 ~: m( D! s! Y1 v$ c
Then you have to just recompile the World Server Files + and make your clientin the Definejob.h the same changes as in the source.
# C7 q5 N5 `3 o' ]3 l6 v: A( I4 z% J( c5 p" r7 f8 ?6 O. k- }
Part 1 of blocking CE
% b* b: E' i9 {1 N1 L. Q* y

6 t+ V  b8 D& K. F" E' S" w  tIn this tutorial I will show you how to change the Head of Mark flyff.6 d% {+ P% u. }! Q
The current Head Mark is well known, 5E, which results as a string ('^').  B  @/ q! ?4 A2 n0 l* a

8 ]6 K, K& H( h( |$ {For this we go to the World (Project) and looking at the Buffer.h after thistext+ w7 ^* V: p) _2 s3 V, E, Y
Quote:
" c$ P. @9 ^& S7 ~# Define HEADER MARK '^' / / Normal messageheader
* L2 s7 e% I8 \# V; g" V# Define SYSHEADERMARK '%' / / System message header
! {% b6 m0 e0 M* E5 I6 C1 E' o: RWhat the Sysheadmark is looking for is not even the top 5E.
& @7 i- {" q0 n$ |- XChange this and it makes the CE Not work on server.
1 H/ {5 R1 D; P- j6 |. c/ b; S6 o; y
Then Tom's anti-hack is no longer useful.' P$ Q. C# N8 v

  `; J, u6 {* i* }" g2 @6 x$ VLG Sedrika
Part 2 of blocking CE
9 Q! z& j6 k6 e
& L$ j" ~" a; S0 j# H
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. 4 H, R8 a" g6 K
What does this have an advantage?# ]# x5 C7 \9 I9 s& r
The editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself
7 `0 b# A1 V0 m, l7 ?' }5 ~, y' h  P3 |3 Q- I( r. ^' E( v  O
) r3 l& [0 H7 [. o/ Q- g+ \0 ]
First you need to get open source even know how you do it, is left with you, andyou do the project on the Neuz." p. |9 ?* D9 r, v& t: x  q

0 {% n$ |# m1 S( L# v$ h6 KThen search for the following content in HwOption.cpp
0 p, |# `9 _& D: N" p8 C- B- `2 D" r) w" {
% M7 A2 n/ L1 E. o4 x1 o2 V
if (scan.Token == _T ("ip"))1 {- c$ ~$ A0 X- j0 m& J& v
{
. W! H% W8 C4 E- xscan.GetTokenEx ();0 N) g, a* U& X3 q, Q
strcpy (m_IPAddress scan.Token);
" r% L" Y6 }: q( e}. M8 Q2 t8 v5 K  k3 l
and turn it into this:
5 `, J+ Z) I, C' H4 LQuote:5 n7 {( A% T" i  {
if (scan.Token == _T ("ip"))
+ h- e1 v. t1 q: F; J) n" f* ~8 f{
' ^, ]1 G4 j2 M/ / Scan.GetTokenEx ();
8 T  g" `# w0 c8 N' \% a- B. P4 B9 N7 t/ / Strcpy (m_IPAddress, scan.Token);
' D) M& v2 l/ \}
$ q6 N$ R  h* o; f3 ?And you created the solution." v' m+ e5 W; G% y: g& Y

1 W. T+ |# z7 P( N+ j- [9 t& l2 p/ R
Then read the Neuz not the IP from the INI anymore. even if put in it7 d+ j' N8 c1 A4 m8 I2 {

) \3 r' K: Z4 _( P7 t
Max skill's
+ d  z& n5 b) k7 U: A

- t: p# A4 K  @) r% O; F5 L( PAll know that, 14 Max buffs, you get all the RM Assist Skills + Skills fromBuffpang and no more space for the YJ, Knight, Ranger etc 0 G7 B9 C/ a# Z+ r0 t* N
5 @$ A; ~' S" V& ^; ]7 P; y
With the TUT can provide the remedy it
* ~) `9 L/ x/ Q
# c$ b* C' p7 f* f# 1 opens the file SkillInfluence.h
+ J, B3 A! b& j( f- r# 2 Search- L' \! g6 h. b  a6 d+ _
Code:
* E, [# s1 K0 Y
) y/ {+ T: I( u9 k) }# Define MAX_SKILLBUFF_COUNT 147 G8 @% H) H. K6 J& l

7 R) J1 c7 G" ~8 H+ P# 3 Change the 14 to your number (eg 21) and save it from
: G7 m- r4 y7 q. y5 \& L7 N" ?# 4 compilation and ready
) r- Y; Y3 }/ M8 H4 C) c
4 d# Z" i; K, j3 w6 u- n
5 J% B( I4 Y& w4 II 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:) ?2 P3 B9 `$ @. ?% f6 |" h3 y
! C+ x5 ^" U# f# n0 j
dennisdra: @% r2 u  F! R+ l) S
.Crasy
) W; i- @* B! F  _$ E( T©ross$ n* [: z8 `' e! m
Sedrika  F3 C* m3 X7 J. v+ c

: k1 Z: @, m3 H6 u6 ieverything 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! : F8 i; J4 K6 h; b. ?8 x
, s0 Y5 Y: T) d8 u3 `
P.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less, e" q% Q5 }/ v' F: `0 h

. C  X0 t0 v5 }4 }
4 c6 f3 J3 n5 O- @2 zUpdate 1:
how to turn off "Profiler" in worldserver.exe
7 K2 t7 j8 Y; S

- E  U# R) R2 m' [
/ n2 z! }, J  jin VersionCommon.h of Worldserver Solution: j$ ^# a  g. U- |
Look for( C7 {  t& H8 S1 k
2 M/ x! n5 b# h
#define __PROFILE_RUN
( X# `9 P5 |4 _1 r; U. z
, _: R+ S( w; }* @9 \  Bcomment it or simply6 y+ n2 `- `' l2 l, d. n3 S

$ m: q+ |' s- s) r0 S- T- V//#define __PROFILE_RUN
! ?6 W; w: ^: O/ A: \0 M0 M; f5 ]8 |) K  F/ J8 z

' Z1 w( G' N& D( ?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投寄。谢谢。我添加更多的很快如果你有病加太
  ^4 S* |1 r+ @6 o' A5 R; c8 S; y





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