飞飞世界论坛

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

改变最大等级

[复制链接]

197

主题

203

帖子

1084

积分

管理员

Rank: 9Rank: 9Rank: 9

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

" Y: h/ Z6 `8 Y' ]3 L6 Zchange level without Rebirth
* b! _8 [, s* O$ F/ p5 }" }
3 M% \% I. v3 S3 {7 f! X1 QNow, let us begin.7 X4 {$ ~( u+ u# m7 R( J
& b, t) ^# W/ W. V( I
Requirements:
: h' L2 y% L' a, |/ ~) R4 q* {Source
4 X; A8 }, p, B- nNotepad / Editor
# F) l; d/ |7 f8 O% f
1 p( s& f; C/ V" B( u0 \' r/ / Tips by Sedrika7 {; C; L# m* w/ b1 N) j
  R7 p  P& m0 H3 C) }8 [
It is up to you how you do it ^ ^
2 d% ]- e- G: `/ R6 Y6 z% ^
  H- C0 E& ~. w* u# }! ~Go into your source folder and open the definejob.h
$ d9 j% s! B. v! H4 i* Z2 h9 rSearch there for:: \: m+ n, @+ L) o- V+ I, e$ f* U
; r* J- B+ e! T& c$ O6 c
#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå2 y8 ^8 K. k% ^# U* @! n
#define MAX_LEGEND_LEVEL 1299 D) R4 r2 K9 A5 b& y; U
#define MAX_MONSTER_LEVEL 160
2 z1 k7 I$ [% b* T3 Q, k# |3 F#else // 15Â÷ è÷¾î·Î ·1o§è®àå) y& j7 e, m; K* E( L" @" Q
#define MAX_LEGEND_LEVEL 121
/ d' X" v. b9 b#endif // 15Â÷ è÷¾î·Î ·1o§è®àå
0 Z3 r7 h% [% b' j) m* [1 s  M2 v, v/ B5 A7 d3 i; W
' h1 ^9 }  Y9 O6 y# f5 l- x0 Z6 O
Red: Player Max. Level7 }- Q1 |: B! i) ]
Green: Monster Max. Level
5 z/ c' B' T, f) k! b: |0 ~' q3 c8 h/ g$ d
These changes as simple as you want.
  S% g" d9 }' R, F; Q( W. q; E6 `0 |
Then you have to just recompile the World Server Files + and make your clientin the Definejob.h the same changes as in the source.6 f, E- p( j9 ?5 R9 Q

( S5 S/ R9 K/ P, P4 C5 J& z: X' T
Part 1 of blocking CE
' j9 t5 ]$ S; J* M/ y' s

- Z  A: B' Z0 J+ VIn this tutorial I will show you how to change the Head of Mark flyff.
9 C' b% o* H: C6 fThe current Head Mark is well known, 5E, which results as a string ('^').
7 Z1 I8 O* ]+ K6 V9 z4 O- `- s
6 W! Z. Z& e/ {3 HFor this we go to the World (Project) and looking at the Buffer.h after thistext+ W6 ]- \) p0 K! |1 R7 o
Quote:
. l& J6 m1 O' w( V" F3 I! K8 w# Define HEADER MARK '^' / / Normal messageheader
! w- \# l: ?5 C  E5 v# Define SYSHEADERMARK '%' / / System message header4 Y3 g  j* z: G# J# {$ |4 m1 w% F* `
What the Sysheadmark is looking for is not even the top 5E.
  N* ^( g. T% ^+ O* MChange this and it makes the CE Not work on server.
- h& G4 J/ a6 s+ K5 N* Q( R* J% _& @" }! K% U
Then Tom's anti-hack is no longer useful.4 i; m5 Z6 E' }" q' `
1 v5 w% ]9 \6 P* \% n
LG Sedrika
Part 2 of blocking CE
2 t- c  ?. V7 R/ O- C  f

& f. w8 n4 {( Q! P3 YIn 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.
( F; J$ u8 F' [+ e$ XWhat does this have an advantage?
% }& M* J1 e( m( X0 q+ j, GThe editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself + Z2 c, @4 B1 S6 n1 M) t

$ E7 }# d. X$ W/ [
) ^% i& ]: S& \% L- o/ h8 kFirst you need to get open source even know how you do it, is left with you, andyou do the project on the Neuz.0 f3 q& L: h0 A& H4 y
0 ?4 @. n% u: K
Then search for the following content in HwOption.cpp
  ?- Q# d3 R) Z8 L$ c/ t7 {- H
# P' F! ]6 @# R: X. B5 ^9 S/ M; @# w- M* e
if (scan.Token == _T ("ip"))7 a" n) l! N' R( A# u
{
3 V: H9 Y: ~5 M: G/ A3 n- ?4 Cscan.GetTokenEx ();
3 s/ r1 u% a( M% Nstrcpy (m_IPAddress scan.Token);# S( a4 A; u6 I: y# `4 W' r% F
}4 o0 m: e. u: E4 u( G" c, w
and turn it into this:/ J/ G/ L5 N, Y! w7 ~
Quote:2 p, ~- Y' N7 ?! K2 I. g
if (scan.Token == _T ("ip"))( b5 Z# o8 I; l) j2 c. u
{
  v  \) B7 O  j2 r$ b, B" ^! X/ / Scan.GetTokenEx ();% F2 R- h5 N% E! q) S
/ / Strcpy (m_IPAddress, scan.Token);* W/ F/ S* j0 {' N8 n, \  K
}: w* E( b2 @8 U6 b3 x" {. ^
And you created the solution.
1 ^1 y, ]7 W6 ^+ D2 h2 I4 w
& R. V5 e- o" Q, D  ~4 M4 K' |4 W' w. q4 _; D1 U- R
Then read the Neuz not the IP from the INI anymore. even if put in it/ X% [- D3 m! y2 _$ F$ w5 U9 b: a8 T  y
" B- t7 @7 G' g2 _3 M
Max skill's

& ~- A/ ]+ X: K- V
# y, v$ u/ p1 I& J; [$ ?. \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
: L( V$ W* F6 g2 a9 O. U2 O% K+ N+ z5 f
With the TUT can provide the remedy it; @/ u6 E0 p" U

, v4 m' r' f: T; N8 ?# 1 opens the file SkillInfluence.h
) v7 Q# H9 H% p# p2 m7 N- _# 2 Search
  v( e# H6 ~6 U$ i: l9 Q' DCode:* c: X, [$ g9 F7 m) @
7 Z' T' b% ?5 N3 I+ Q8 B
# Define MAX_SKILLBUFF_COUNT 145 V4 ?1 s! U1 W, {6 H+ L1 ]+ C
% j+ O4 Y5 c+ B& G5 r: b5 m& A
# 3 Change the 14 to your number (eg 21) and save it from
! \2 W) u# F2 N# u. C6 O# 4 compilation and ready8 n7 j3 D$ c8 T$ I6 W( e: y

8 f) k1 G! c5 C" {( [5 T! h: ~
0 h1 k! }' s/ o' sI 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:3 T+ A6 v# [2 P6 Q' B

9 W, |% x& M1 h9 I  w! \dennisdra' }' x, }, J( f
.Crasy
) H3 f0 o$ V( M. u" x+ P©ross
) m0 o# R" k( N- fSedrika: _) o6 {2 H- }9 A% p) o

! T" U. N% @( a0 T* X% o6 Q0 eeverything 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 b3 W* ]$ T, d1 ~+ \* t# s; d' F
% x- o# h" Q) i. n% [3 \
P.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less" y: S: W1 [, w" C, n$ I3 J

: u' o% {( }" e# v) H
7 X5 K  S' W" n1 }Update 1:
how to turn off "Profiler" in worldserver.exe
( k! V3 J6 t, Y
' C# t; k: A3 z7 g% G" `5 ?
) Z) P- n; w, J: L% c' m
in VersionCommon.h of Worldserver Solution' v2 `% r: Q& d4 o4 V
Look for; [& T5 D& F0 B8 `
, p4 d- n4 I% `# s/ ^
#define __PROFILE_RUN7 I9 ~' y3 T3 j  B4 }7 K# q' V

9 O, z, L4 n* @1 @" M" Q3 `5 Ucomment it or simply6 E& A' `- S. ]# K

& s7 m" n; K) Q: Q' i# [//#define __PROFILE_RUN
* @4 D1 P* m; J6 {
( ~, Q8 G/ J4 A6 F1 t- X6 r6 D6 z8 t" z% w
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投寄。谢谢。我添加更多的很快如果你有病加太

2 [# i+ _$ y3 h1 |7 i; i' i) _
回复

使用道具 举报

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

本版积分规则

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

GMT+8, 2025-11-16 02:41 , Processed in 0.069180 second(s), 22 queries , Gzip On.

Powered by Discuz! X3.2

© 2001-2013 Comsenz Inc.

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