飞飞世界论坛

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

改变最大等级

[复制链接]

197

主题

203

帖子

1086

积分

管理员

Rank: 9Rank: 9Rank: 9

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

# e2 R4 f% z' i( e: Nchange level without Rebirth6 {1 a8 B$ P+ D, r3 F* K

6 `) [, n) |( |  g& ^Now, let us begin.3 y( Y$ J. S: w9 [7 B2 m
+ i1 k4 U1 z4 C, D1 j5 b: e
Requirements:, k2 @% J* U2 |* r8 q; h' q/ }
Source
* O& E$ d0 i' T( v! C6 ]% J2 J9 \Notepad / Editor
% T, H7 C- q# z1 j3 h' a
5 i9 F3 }# ?: v3 g+ c: h- V" o, @/ / Tips by Sedrika6 ]- F* ~7 {" j/ ^( c# @) v6 _# F

/ J. E' e7 @4 a. U' qIt is up to you how you do it ^ ^
" {. ~- t2 O$ l
) G+ V$ _' X  O3 aGo into your source folder and open the definejob.h
+ e  h) l: H% m" M! }Search there for:& W! _* z2 H" q. |# s4 I

2 u5 k8 \4 r# e* `1 x% Z8 }1 M1 t#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå  t8 q( F: |. v/ Z5 p+ Y( |* {: O
#define MAX_LEGEND_LEVEL 1298 A8 W1 n# `5 s+ I1 [% Q' e
#define MAX_MONSTER_LEVEL 160: ~5 E& _4 M" g/ Y
#else // 15Â÷ è÷¾î·Î ·1o§è®àå, ]& `* N" x+ J8 U, a* s0 K
#define MAX_LEGEND_LEVEL 121
( ?1 }6 g$ R$ `+ M: y8 o" B# |#endif // 15Â÷ è÷¾î·Î ·1o§è®àå 0 ~) o9 W3 s) x' k

5 d4 r, g9 f! I: q& d
5 V6 i: x9 M4 q- W4 l  r  x# x5 FRed: Player Max. Level
, i! a: P1 H% \3 \; ^2 iGreen: Monster Max. Level, G) |1 b( I0 q6 e% I6 w
% |5 c# R1 [$ |, l2 A
These changes as simple as you want.
: y# O% v0 z6 ^* v% l+ A7 G0 V
& R' f; v$ V4 i% u3 fThen you have to just recompile the World Server Files + and make your clientin the Definejob.h the same changes as in the source.% d$ R0 V- c+ [

$ f2 l! U& l  M; r' J2 G% f/ X
Part 1 of blocking CE
$ |& J: ~) m0 Z

* J. I; l4 p3 C. MIn this tutorial I will show you how to change the Head of Mark flyff.
3 l) y0 W9 i- ?8 YThe current Head Mark is well known, 5E, which results as a string ('^').9 h: j1 n- R7 o2 A

5 d  J$ h% _+ ~1 tFor this we go to the World (Project) and looking at the Buffer.h after thistext
% J  W0 h3 S3 b# Q3 g, JQuote:6 J& O9 Y1 k% j: N
# Define HEADER MARK '^' / / Normal messageheader, K3 ^3 |; S8 k% B4 E
# Define SYSHEADERMARK '%' / / System message header8 y: G* t, f( o: M) A7 ~: G
What the Sysheadmark is looking for is not even the top 5E.. w7 @; _' A3 M2 i( I
Change this and it makes the CE Not work on server.
0 ?/ ^  R. U7 l0 p) ^. A+ ^) g* j1 _. _8 r- X
Then Tom's anti-hack is no longer useful.
1 r, Y+ h# G, m& a
& G, S$ z9 ]. v& b7 W" DLG Sedrika
Part 2 of blocking CE

8 P, [9 a+ f# c$ \) h1 ~4 |+ z3 Z" x7 C3 ]" `$ y# f
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.
+ z# \1 [$ L- uWhat does this have an advantage?; @$ I1 O5 s) _1 j0 ~  A# X2 O
The editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself
. b1 `$ p/ P$ ~5 d# J" c- j* ^3 ?# u5 Z2 z! t* Y) a
4 `: I1 f$ @. l7 V% J1 G. D" g9 f
First you need to get open source even know how you do it, is left with you, andyou do the project on the Neuz.1 [% o* v2 q: k) i

' N3 E) y$ n  J  U5 P$ @$ \Then search for the following content in HwOption.cpp 5 \4 P* M- N1 n/ O3 i/ O# t
3 e9 J6 U+ w! ?( U1 n0 G" V2 A

1 |1 I+ H% g. ?if (scan.Token == _T ("ip"))- K' Z1 B4 m& U# g* p( m6 k* w
{; L% F! X7 h% U% B: f/ q
scan.GetTokenEx ();
9 L1 M" D: L7 Bstrcpy (m_IPAddress scan.Token);. }5 h5 D8 j. C$ q0 O/ d3 ~
}/ d7 E; z* x6 A
and turn it into this:! J7 ?7 A" x+ x* i. N8 j
Quote:' N. n2 i) l( h* B# n
if (scan.Token == _T ("ip")). `  m( f3 Y- b( [0 d' t
{: v) v; _) }) d1 I3 }
/ / Scan.GetTokenEx ();
4 o0 H; x; B2 L, S9 ^1 A/ / Strcpy (m_IPAddress, scan.Token);
9 l/ K8 j, }5 R/ Y% y4 @}$ {$ X' |$ Q4 ?
And you created the solution.
0 m% R# ^* c4 r4 a: Y! b
: d& p$ I' B, t( b9 _5 D5 D; c- I* B' \5 I4 C
Then read the Neuz not the IP from the INI anymore. even if put in it/ J0 c$ `/ s9 B- p

. `* Q" M6 K0 n7 e/ V. S
Max skill's

: D1 U) u  y' `) s1 O# m/ ^/ r
% z* I% \* W* M* K9 p9 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 2 b! b7 k7 I) a0 H; |. h

+ i: ~2 m; I6 [$ a; FWith the TUT can provide the remedy it  d& j$ L' l" r5 o
, _7 R0 C/ T- A# x. t& ^1 ]* M
# 1 opens the file SkillInfluence.h
8 y& B- P* U& P4 z0 N. B# 2 Search
  l; O2 ~* \7 O& F  e* P. @7 JCode:
5 N) z4 a) Y1 r/ g
. T, q, D( r  `% F9 D5 o# Define MAX_SKILLBUFF_COUNT 148 @0 O+ l# {1 f" C: |

! F+ V9 y6 p( u7 V: ?6 a! d# 3 Change the 14 to your number (eg 21) and save it from
' W# G! J5 z9 ^4 a; p4 O$ d1 w  g# 4 compilation and ready) ^8 g1 a  a1 ^) y/ ~1 E8 s

3 G. {% L# V3 ]  R9 [; I; O1 _& T1 `  g: G0 T0 a$ H
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:
% [* [) k1 h1 O5 i4 s
8 W# Z1 b- P* Y) ]7 F* \dennisdra! C3 R& `$ Z* V1 f$ E8 }: N
.Crasy9 d8 G+ |' L: f3 L, e: r2 j" ~
©ross
+ ?1 }: ~. H$ `5 V: C' PSedrika3 n/ W- z. \1 @4 m7 h* b
+ o& n) @- }: l
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!
6 W# L. M3 ]" ?& ~8 c( j9 \; M6 q! G/ L1 X1 [! `7 _
P.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less2 S2 |& C5 D7 C5 v- @# X% ^7 ^6 w9 \
, S5 S2 k  i0 P! g6 d8 Q$ f0 V

( m8 [# D  R* ZUpdate 1:
how to turn off "Profiler" in worldserver.exe

5 m7 T: V( D( {
% _( a9 |- ]7 `5 j% z9 F, x, A9 t2 s+ D* M$ G
in VersionCommon.h of Worldserver Solution& S6 @; V5 U6 d- I( s
Look for
7 l. {6 O* ]5 L( T3 v. r* L5 ]* T1 n% p0 _1 _
#define __PROFILE_RUN
- G% Z$ F, e. r6 M/ X! ?% j5 D5 j) S* _  C' ]/ M' n
comment it or simply- J1 t/ ^0 V/ A5 [$ q5 x. f4 T/ P
4 b" g1 z% Q0 q& Q' L: P
//#define __PROFILE_RUN $ _* q( y8 M& Y0 ?

  A  g; o! G$ H! s
' P8 [3 Y, Y  @4 ~  H% ~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投寄。谢谢。我添加更多的很快如果你有病加太

7 e( d0 a* k. Q% u' G
回复

使用道具 举报

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

本版积分规则

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

GMT+8, 2025-11-27 19:07 , Processed in 0.059170 second(s), 23 queries , Gzip On.

Powered by Discuz! X3.2

© 2001-2013 Comsenz Inc.

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