飞飞世界论坛

 找回密码
 立即注册
搜索
热搜: 活动 交友 discuz
查看: 14082|回复: 0
打印 上一主题 下一主题

改变最大等级

[复制链接]

197

主题

203

帖子

1064

积分

管理员

Rank: 9Rank: 9Rank: 9

积分
1064
QQ
跳转到指定楼层
楼主
发表于 2016-1-10 03:22:01 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
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

* k7 T& J' [- a3 B  u" b# zchange level without Rebirth
) g% \8 ]- R) K, o: n6 p! N
; f; c2 _- `) qNow, let us begin.
' j) x8 \' q; k3 |7 @  w- t
  h( V4 O! q7 n2 N3 l! g7 y5 ^' K0 V( _Requirements:
0 v: p. `" V2 @2 pSource
# X6 F/ G* X* u: S: tNotepad / Editor
) t  U- E: d: R( A
' g7 u8 w% V! B# }% U+ A- q/ / Tips by Sedrika
* k/ l$ f$ I' u( e9 A
, T" Q# [( Y: I+ n7 l. QIt is up to you how you do it ^ ^
- c( @9 k# \( G. b6 C0 p- \! [5 S
Go into your source folder and open the definejob.h8 s( F! \/ H; \7 J& W" C! w
Search there for:5 b- S' [, W/ u5 D( S

& A! ?7 X: E! \" E#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå- d! H' P$ W) `; y% Y, R8 ~% j
#define MAX_LEGEND_LEVEL 129$ t; _7 s  v" @9 R
#define MAX_MONSTER_LEVEL 160
. T( I* {+ n5 M#else // 15Â÷ è÷¾î·Î ·1o§è®àå) N% ~% {; M5 e; J) b2 V/ o) I+ S4 Z- m& ]
#define MAX_LEGEND_LEVEL 121$ G- T  y& g7 I; @) D
#endif // 15Â÷ è÷¾î·Î ·1o§è®àå & g$ [6 X# {( k3 {5 a$ K6 P
5 y- Q9 }& {/ E: X

1 k9 L3 a* @$ z( jRed: Player Max. Level
! c6 V9 Z/ E6 p6 d; ~/ vGreen: Monster Max. Level( x7 F6 U- b6 P9 E" |  S! d) S9 J& K

5 X/ u' f, L! L# w' X2 o6 eThese changes as simple as you want.
! f, ?+ b! @+ T% [- ]  ?0 ^* i2 y% ^( I  E6 k' V
Then you have to just recompile the World Server Files + and make your clientin the Definejob.h the same changes as in the source.
$ L  @0 \$ K% C$ Y1 f0 H# W2 S, ^! \. ~/ f. ]# Q/ Q1 \: n
Part 1 of blocking CE

  T" w2 @2 g9 }: \) p- b: S
5 x8 x; [  e* y0 R. X2 [In this tutorial I will show you how to change the Head of Mark flyff.
" M8 j" S6 @( g+ s9 s# |5 D( i" `The current Head Mark is well known, 5E, which results as a string ('^').
7 g2 m  i, K1 n* `6 L* a9 {2 M* H8 H
For this we go to the World (Project) and looking at the Buffer.h after thistext
6 E) l0 D+ v3 W2 g, H( r+ KQuote:
2 j; z; j. e" j  v! |# Define HEADER MARK '^' / / Normal messageheader
! A; \1 U7 M  U/ C# a# Define SYSHEADERMARK '%' / / System message header$ q, i- V9 T4 {/ C7 c
What the Sysheadmark is looking for is not even the top 5E.2 p% t( u6 R9 d* q
Change this and it makes the CE Not work on server.
( k) ]( _$ m  }2 ~5 J5 J
* G& I$ L* c5 q: xThen Tom's anti-hack is no longer useful.
# \# Z" s/ v" {/ b, C& z. R( A
* [( q2 J+ Z; nLG Sedrika
Part 2 of blocking CE
  v$ t% L( X4 i6 Y: g7 m3 F

1 G0 c* ?& x7 FIn 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 Y" l' z3 t: w8 U5 m! K
What does this have an advantage?2 _, L! S; g% v' B
The editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself
  h$ \: E. n/ G6 a8 L
' _2 M! w8 t' H# [2 q
" t; O, V- a( c9 s- mFirst you need to get open source even know how you do it, is left with you, andyou do the project on the Neuz.
7 N7 B6 u. J4 s. i6 E$ }" A$ d
; E6 J6 N7 {6 K( n, mThen search for the following content in HwOption.cpp
2 W% W# E2 ^+ z! Y8 t" e8 t
& Z  U$ `: o% Q: n7 J; t  ?6 x9 _# l: K5 a( s* {1 \6 u- v, i
if (scan.Token == _T ("ip"))  n) H+ f6 Y+ b3 a
{
2 `- F2 k# r. K+ h4 Y5 T4 Jscan.GetTokenEx ();
4 H6 |/ }+ y8 a5 y; v3 G6 E4 ostrcpy (m_IPAddress scan.Token);; g2 l' x" v2 [+ a" A
}# ]& q$ \% ]) S( _8 W& `+ z0 S6 H" \
and turn it into this:
1 B/ n: U' x  C9 `4 s4 nQuote:
+ T: h! F$ d2 Y1 U3 v3 o; Wif (scan.Token == _T ("ip"))
) J+ ~$ ?4 ~. r* F{
9 w4 h& @, x5 L! n1 t) m/ / Scan.GetTokenEx ();1 i1 g9 |, G6 _2 @: h4 h3 V
/ / Strcpy (m_IPAddress, scan.Token);6 T3 ?, @- H9 e: J* g# X: J. S. a! h
}" p6 i" T& o. R
And you created the solution.! Q3 f% D  l& C. W+ q6 E# @. \
, ?  c$ H4 _/ ]' }6 }

$ @5 i4 F# e+ O& Y6 C; nThen read the Neuz not the IP from the INI anymore. even if put in it0 d" b+ j8 B, m: a7 L6 }+ f5 Y
% @% D: N; C. R
Max skill's

3 x! K  i+ G8 C( }% C/ g, m* B$ ~8 F( Q% 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
) q: f& j& j" s7 f: e! o( f! Y$ u  W2 \6 b, [4 I* V1 f- S6 \% S
With the TUT can provide the remedy it: [0 w6 a. ?. G+ [: O. g

# t' ?! a# d& O  o% [: _, @# 1 opens the file SkillInfluence.h
* p' k  \$ i: p. t& j* x& O# 2 Search2 C$ ^$ b- {: u: ?2 b
Code:
; _3 Y  P  f0 Q) x6 O* ^6 ~3 Q/ B5 e5 }; W# C* [* g
# Define MAX_SKILLBUFF_COUNT 14- @7 q# T6 h! g( l9 E

" }% X. ~% z, f% S/ g1 A# 3 Change the 14 to your number (eg 21) and save it from& C# J, b" \& x/ j6 p  o
# 4 compilation and ready
( s  d' A+ k& Q! k+ V
# t) u6 X& O3 M7 `/ s& w! ^! o2 Q$ `; q. b
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:$ ]$ I( @. {7 o& M3 b

* r8 o! ?- M) {- F0 n9 }dennisdra. u/ b3 |! b1 i7 u
.Crasy( U+ C  `- b* d7 N( @
©ross6 [1 P) }4 H6 o7 \1 B
Sedrika- n  `$ _0 R9 z6 c5 N

9 R9 g9 Q  v* \. E! p. H+ Deverything 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!   Z  c) R2 x  z3 a

6 m0 P. X7 R- k& G9 i1 rP.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less8 ^0 P* S: ~, K/ n' n
. l( k0 J- o! P

; o: a8 J8 t( e; [Update 1:
how to turn off "Profiler" in worldserver.exe
7 t9 q' E9 b9 e: G3 D

7 z& I7 d6 T0 S& l8 W- S! I8 D
6 w. A6 ^+ t% i! H: @; E- i6 Zin VersionCommon.h of Worldserver Solution
+ ~* v- B' \4 ?- _& l/ {( GLook for  w  T- S5 M7 T8 x" F: h

; e$ J5 }) u9 _% u: n6 h#define __PROFILE_RUN
5 ?5 e7 t. n- ?1 d
9 e6 f3 S7 Y* J* jcomment it or simply
0 h: D/ F8 V/ \& W4 j9 g+ t! @; [+ D+ {
//#define __PROFILE_RUN # M+ v; ^& Y7 A  M" F* e  l7 e
: C* W7 u! d$ J& _9 m9 T

* }) K9 p$ a4 Ccredits 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( K8 D# f+ `9 P" p
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

手机版|小黑屋|飞飞世界技术论坛  

GMT+8, 2025-7-2 08:24 , Processed in 0.070259 second(s), 23 queries , Gzip On.

Powered by Discuz! X3.2

© 2001-2013 Comsenz Inc.

快速回复 返回顶部 返回列表