飞飞世界论坛

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

改变最大等级

[复制链接]

197

主题

203

帖子

1054

积分

管理员

Rank: 9Rank: 9Rank: 9

积分
1054
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

. h* [  {  v) W/ y* O: `+ rchange level without Rebirth8 l+ u$ m* W; S2 W& O8 D& A8 Z

" W3 s7 i8 K  J6 P- ~# jNow, let us begin.' z( v7 \0 |$ M! }9 c

" `' ~3 V6 K' V- V* lRequirements:
1 h& b; G4 c( N7 n3 E8 ASource+ Q' W  E: r4 d% Y( D
Notepad / Editor. S' C  h  L( Z7 t& t
' f1 ^4 ?& C4 ]2 Z; i
/ / Tips by Sedrika
" B: R- w6 E) I4 w$ ~& M) n" M* B. E: e
It is up to you how you do it ^ ^
% @- b* X& g( w. d; v8 W
  T& Y& c. t( |; M) mGo into your source folder and open the definejob.h
4 o5 t1 r  o# ^: \9 ISearch there for:
6 L2 K+ f  D$ ^1 ?/ g
* h1 ^5 {0 Z8 n: ~#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå
( h' S% [* C  F, y4 N#define MAX_LEGEND_LEVEL 129& R# Q8 o" Q2 z* W/ _3 T
#define MAX_MONSTER_LEVEL 160
3 S$ @$ T" m( _2 o3 x#else // 15Â÷ è÷¾î·Î ·1o§è®àå( q- B7 }- X( D+ y; I  ~
#define MAX_LEGEND_LEVEL 121" ~4 i$ \- n6 c
#endif // 15Â÷ è÷¾î·Î ·1o§è®àå
, [; w5 O+ K3 f  |) \8 G
6 ~9 H" u9 C# W  r% u( R0 s
. U4 t* R1 ]5 m# L$ I  cRed: Player Max. Level
8 n* K7 i' q  W- |! r- AGreen: Monster Max. Level4 o3 V2 \1 w/ _& P& p+ c' D
9 U0 j% r, L- w4 ?1 u% [
These changes as simple as you want.
9 C$ ~: q# @. V2 {' w+ A% \0 V: l. l9 P; j; X- j9 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.
: O4 Z# s% P; F2 H. u9 I
; }1 J# F# \" |! |  l
Part 1 of blocking CE

3 U, r5 a2 D! G  b0 d9 D
( O/ X0 d4 L: L! N7 L/ I2 q; P; aIn this tutorial I will show you how to change the Head of Mark flyff.
& o0 K) n" V$ e, R' lThe current Head Mark is well known, 5E, which results as a string ('^').. {1 b8 w& M2 s$ S& R

: ?* k5 T  p; c; rFor this we go to the World (Project) and looking at the Buffer.h after thistext
8 Z, Z  z; u8 jQuote:/ d, f6 F' A2 O1 h1 \* E5 |
# Define HEADER MARK '^' / / Normal messageheader
1 P1 D& K5 o. E/ s# Define SYSHEADERMARK '%' / / System message header0 Y4 s4 @3 x8 E) ~9 p
What the Sysheadmark is looking for is not even the top 5E.) s2 C! h# d+ R7 z, Q
Change this and it makes the CE Not work on server.
& q" R& w& ]2 T, m5 T" A
0 K. i" z4 h7 ?7 z, W6 jThen Tom's anti-hack is no longer useful." ~  p% e- {/ y: u: t
" v* n0 {2 X+ P% O9 \0 C- {" V
LG Sedrika
Part 2 of blocking CE
/ f2 n1 m4 y. o1 b4 `: R
4 C( i- t) E& K8 ]
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. / N9 E" D: u1 w6 ^$ H$ d( z0 `7 L$ o
What does this have an advantage?$ Q  ^0 i6 B3 C. o6 D3 i
The editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself # e: z9 @) [9 v' J9 I8 a
2 \3 H5 i# t& Z7 W& D2 D' ?
* q; K- o; E+ d9 L8 m' ~2 d6 M+ h7 `
First you need to get open source even know how you do it, is left with you, andyou do the project on the Neuz.: n/ M7 @  `9 E. E% X) Q3 _
7 f6 v! ~) B$ |9 m8 w
Then search for the following content in HwOption.cpp
* p$ p' s( A+ Q1 N# y* B) o9 l- R1 |) P* Y1 I. @3 U+ O+ F
8 o& G/ b" |/ k2 C& Z, b
if (scan.Token == _T ("ip"))
& \! e0 D' }5 a4 z) v  s, o{% p: Z' V! \; V5 G5 r  t+ T+ f
scan.GetTokenEx ();
' N) a8 @6 l. Z7 bstrcpy (m_IPAddress scan.Token);0 K% [+ H! S* [8 j) U
}7 v4 A( z* w( D& V, g' @
and turn it into this:
. y. \* G; v" H! O/ k% }9 m% HQuote:! P0 n) Y7 T' f0 j' h
if (scan.Token == _T ("ip"))! h' x( G. \. Y  b/ U$ B+ s
{, `7 s% A' d6 e; e
/ / Scan.GetTokenEx ();
  R' J! W- w) R/ / Strcpy (m_IPAddress, scan.Token);
- M( D9 Y( U& q}* V+ a% {6 B6 k# J) d4 L; j$ M2 O
And you created the solution.
- r: ]% }- ^% C
* C# S3 {0 e* ^1 x) ~2 F0 V# h, B! Q. B" w4 l8 {
Then read the Neuz not the IP from the INI anymore. even if put in it
+ e7 c% @/ _3 k3 J+ c, F$ E0 C
/ u, k- {+ Z# r4 a" A( L% f  J0 W
Max skill's

& z9 g8 N- x" y, z4 l5 i, E( j# N7 }' V
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 ^& Y1 w9 X" Y3 {# [
' H3 x7 G+ I0 X2 t0 n- L; e: KWith the TUT can provide the remedy it$ `9 O$ w% [$ ^* l9 V$ F

! v* Y9 m) d4 _: j  E3 a3 |# 1 opens the file SkillInfluence.h
* p! _/ V  @( g. {# 2 Search
! y# w  d* ^, Z) `Code:
% E1 L) U" l  P% P( L/ e, K: z. Q$ c/ O. z
# Define MAX_SKILLBUFF_COUNT 14
! s4 U0 J5 v% ?" v% j# H% {- A* E  F: Q9 s' e
# 3 Change the 14 to your number (eg 21) and save it from
- ^, Y- ?/ Q# Y# 4 compilation and ready
6 u- Q; s# T7 g- V+ S, H. B, r

  F; d2 Z7 @$ ^6 d% KI 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:1 x7 ?- {$ R& ~  O- I5 L: s

  e6 }7 O% e+ k/ |dennisdra0 k( V) R$ R7 p) _+ T1 [6 x
.Crasy
6 _+ f) l+ b' N/ _©ross% X8 ~% W; n% _1 q. R7 [
Sedrika5 j* @+ |0 Y' N1 `7 z# ]3 [& `0 @
& \3 L6 j# x$ j( L# t5 p; _9 @
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!
4 U2 _* }& m1 o6 s  G2 `- B, ?1 B0 s1 T) I
P.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less
: U0 P# d" j8 [: T2 U+ I3 D# f# T- b! U8 `$ S! F5 R

* N+ K9 r& I* H- ]1 S. [Update 1:
how to turn off "Profiler" in worldserver.exe
  B7 G1 n0 p; V

0 V+ J; s: ~2 r) R  `
) Q4 R6 m- V- X/ Kin VersionCommon.h of Worldserver Solution# L0 D2 {- e: c6 v4 x% T
Look for
* S  J2 o' o4 \5 D& g# t: k
0 g2 ?5 R, V! E* ?5 g5 F7 z+ u! F7 W#define __PROFILE_RUN
: c% D: }' X3 e4 B$ L% V9 @  j# i8 J4 N$ t4 ]8 u: O5 h
comment it or simply
7 S1 c7 Z* `" D' e- x. F: y" l& E8 x8 m' c
//#define __PROFILE_RUN ) R4 W, l# s  b$ o+ P
3 T/ t; `/ ^* n; V4 n& ^* r5 B9 v) N- L

! ]" S( i% x- H, \# mcredits 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投寄。谢谢。我添加更多的很快如果你有病加太

& H1 r% ]# V# m: E# |9 ^$ h; i
回复

使用道具 举报

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

本版积分规则

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

GMT+8, 2024-12-24 01:56 , Processed in 0.107761 second(s), 22 queries , Gzip On.

Powered by Discuz! X3.2

© 2001-2013 Comsenz Inc.

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