飞飞世界论坛

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

改变最大等级

[复制链接]

197

主题

203

帖子

1078

积分

管理员

Rank: 9Rank: 9Rank: 9

积分
1078
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
+ l, j' T6 y$ W6 M# l
change level without Rebirth" }) }* {9 ~9 ?3 A: Q8 ]) g; t: H+ L& l
4 @( y7 \$ H- i* o: S8 N
Now, let us begin.
2 `$ m" i6 L/ ]  ?2 T( Y
- z2 K  ?$ n( u  ]Requirements:* W6 M. n% m+ A& a( a1 F8 f7 ?
Source
6 x: F4 B" S/ U0 W8 v& J- t5 CNotepad / Editor
. b1 X1 w5 ^8 I) [6 g) L
( C+ F1 O# w3 M/ G% i) Q+ q/ / Tips by Sedrika2 g0 g4 _1 e& l" q5 k* Z/ L* Y- k
: \. D: c/ I: x
It is up to you how you do it ^ ^
0 n" M6 k+ y! l0 W1 [; O+ z! ?, ^4 v
Go into your source folder and open the definejob.h
2 X+ m- ]+ k' \% }3 e2 X: ESearch there for:. [1 E) Y7 ?5 H7 a8 o7 f# q
6 A3 S$ I# a4 y8 g) V
#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå; e  d% c% c# j) Z: ?! ~* {' z
#define MAX_LEGEND_LEVEL 129/ c5 L: ^! h6 G6 K; D
#define MAX_MONSTER_LEVEL 160$ B( S( \. X+ L: ~' C& J$ S
#else // 15Â÷ è÷¾î·Î ·1o§è®àå
: @4 {7 ]+ ]0 |2 C$ E#define MAX_LEGEND_LEVEL 1210 W" j3 m) u- Z  w& o: P$ [4 m
#endif // 15Â÷ è÷¾î·Î ·1o§è®àå 1 s' m/ D: T, @

% a+ z% i0 E- }3 D! a8 K. |  B6 Q. C6 Z; Z" Z* |, E
Red: Player Max. Level3 d5 n' F, {) ]8 J- ?
Green: Monster Max. Level/ B; T' w/ l# f7 I# c

4 S) m6 }( m( L3 tThese changes as simple as you want.4 b8 K' W# l7 @% x4 z8 q
$ m# E0 ^- Y8 G, w; p0 ~9 s5 W
Then you have to just recompile the World Server Files + and make your clientin the Definejob.h the same changes as in the source.
1 n7 V) Y4 F0 D) _; ]5 e. D) {) E& x
Part 1 of blocking CE

' `5 K* M$ Z, }8 C9 x( r8 W& n# }% ~% ]3 N9 g" y
In this tutorial I will show you how to change the Head of Mark flyff.
5 q+ X" u! _; S0 z" l7 eThe current Head Mark is well known, 5E, which results as a string ('^').
' @: G$ v( p8 X& z4 O
6 w5 |' t5 b" B- CFor this we go to the World (Project) and looking at the Buffer.h after thistext' [* A* W3 _1 g: F7 D
Quote:8 x2 @/ ]* ^! D4 j9 _6 ]
# Define HEADER MARK '^' / / Normal messageheader% A, i0 F! J% z- ^( L
# Define SYSHEADERMARK '%' / / System message header' _0 {1 }0 c3 x- T
What the Sysheadmark is looking for is not even the top 5E.
* f% d8 z! @9 y' f1 e& |Change this and it makes the CE Not work on server.# c; [  ~( j+ X2 V

) N  L* P9 H5 `* P7 U3 }Then Tom's anti-hack is no longer useful.
7 A- k$ ]+ k+ y. y$ w
" _9 ?2 N/ n. J0 s$ rLG Sedrika
Part 2 of blocking CE

, g* u, Q$ Z9 ~( A7 Y/ X0 [
( I9 [& j4 t4 mIn 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.
% M- U  H1 D3 `( `0 IWhat does this have an advantage?
4 M" X! i$ z5 ]2 N1 l. ?5 BThe editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself
5 N7 O% q0 ^, d$ I  ]/ r8 N
9 S; i. z' h1 e9 i4 I
) n, Y1 t3 y3 c( q; z1 RFirst you need to get open source even know how you do it, is left with you, andyou do the project on the Neuz.
2 k% x+ h1 ~; O) G$ Q8 v# i
! R5 }' V5 m' F( VThen search for the following content in HwOption.cpp 7 m' [- U/ e5 _, v1 E' v) L+ b
0 \" V- @: }9 n1 r
7 T! I: k; y- g3 i
if (scan.Token == _T ("ip"))
, I; K" p! M0 i+ z{
% }& o( S* R2 G( y0 Wscan.GetTokenEx ();
* g3 }% \, ^6 U1 q/ K4 Bstrcpy (m_IPAddress scan.Token);& ?$ _! V9 c9 }+ {& Y0 G
}
1 ?2 u2 o3 F1 C' B' Yand turn it into this:
8 @& [; k9 Y: p( F. h7 p7 a6 KQuote:
5 d  [' L$ E% r2 A8 u! _if (scan.Token == _T ("ip"))" @* b% d" I0 m1 N
{* w8 T; |. e+ k; a
/ / Scan.GetTokenEx ();
) I1 D* V) f% T8 d/ / Strcpy (m_IPAddress, scan.Token);! ~( V. w+ t* b, `# d
}2 l4 r$ J/ d. c4 z" {
And you created the solution.+ m; S$ S" T: m" Y; s, n# h# l

, ~& `$ C3 L4 {( G, q1 B, i
4 R- o3 u5 n3 S7 MThen read the Neuz not the IP from the INI anymore. even if put in it
9 p: G1 J" z( C. f4 q1 y7 ?
) o1 l2 I# O9 d+ n. p$ w* W2 f8 g
Max skill's

# B. C9 @4 Q& L1 O  d' l4 z4 z2 a- y$ U" O' _: D* m; b0 d" Z
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
6 V% |: X' ~* T2 }1 q! e7 p+ K
, m" g* ]. y' p; zWith the TUT can provide the remedy it
# g* _6 t( |$ I9 _9 M0 ^: U6 s5 i" @
# 1 opens the file SkillInfluence.h
+ P3 W2 O" G6 s# 2 Search& P# l% t+ A9 c# X+ P
Code:
/ M' |2 |4 ]/ k5 v2 G
9 p  |6 {. t: R; s7 l8 w# Define MAX_SKILLBUFF_COUNT 14, E" R, Z+ c2 Q3 y

9 B9 |* V" y5 j5 D0 }# 3 Change the 14 to your number (eg 21) and save it from: w$ L1 e, X1 z) F
# 4 compilation and ready) ^8 n; \1 g& X  L( c+ i

2 a% _; d# _1 ^; K, P5 e
* V8 d6 N0 @! V5 o  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:
: F8 I; \3 G! P( H  o8 G: `4 w! _4 w) P
dennisdra2 o3 g  a' X2 y3 b* C. p
.Crasy
# ~( y3 O6 t2 h+ n6 w©ross
4 B3 k8 ]; \) T; dSedrika/ o7 ?' B  h0 k2 x" N* K# p3 |
% V% E) _# I" a
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! ) D! y( ]% W6 A# a
2 E* H4 m$ w7 y$ q6 M
P.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less
, F2 ~7 w& o1 H8 ?9 s  L8 p% w
- J/ C( {- j3 f3 q9 y
7 D( G3 ]! a  r  TUpdate 1:
how to turn off "Profiler" in worldserver.exe

# O7 G6 X! c- \, f- [7 }! P7 t
9 Z  m5 J/ T8 T* O
7 Z* Y. H/ B0 K  @in VersionCommon.h of Worldserver Solution
* e3 v0 Z2 S! j- `8 wLook for
) i% S8 {2 Y8 E9 _. h) P# s5 I- X; r% J. E: X2 @! E
#define __PROFILE_RUN
% o2 }( U, X& f2 J. `8 t; S( \- t, a. @$ J+ h+ s/ e4 r6 f/ H0 H8 [: p
comment it or simply+ u& L. c1 u; V! R

5 @( J9 J; O, ?! O) k//#define __PROFILE_RUN
4 U& d* Q# |5 ?% G( ~+ g/ s
3 e8 E) {$ |1 r1 H# D6 |  w# M+ j% Z( c# _. c0 k
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投寄。谢谢。我添加更多的很快如果你有病加太
& L+ g9 m. ~# ^% V3 w+ M2 `1 {! Y
回复

使用道具 举报

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

本版积分规则

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

GMT+8, 2025-10-23 11:29 , Processed in 0.061996 second(s), 22 queries , Gzip On.

Powered by Discuz! X3.2

© 2001-2013 Comsenz Inc.

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