飞飞世界论坛

 找回密码
 立即注册
搜索
热搜: 活动 交友 discuz
查看: 13685|回复: 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
4 r3 i2 }! Z! s4 y. A1 L1 h
change level without Rebirth
# z/ |1 G+ ?; p, Z2 |9 s0 x' R% E, L9 u  t% y: Z
Now, let us begin.
( l- t0 g2 o$ ^# ~* ?9 e- m5 {
+ U  y1 b4 r7 f5 r7 l6 a( J$ eRequirements:
$ r- `- u  ^6 j4 [Source
! ?+ a5 ^& b$ CNotepad / Editor
  S, M7 p; ~2 R8 o3 j: i" d  E' |" w/ m% U9 }0 g
/ / Tips by Sedrika
. x& B* K9 K4 K& L0 X) q5 \4 n( q( F
It is up to you how you do it ^ ^
0 n* _6 y( F4 t4 `. U/ \5 L2 U, P
) Z/ I. i0 [  z" m1 L4 f* j- aGo into your source folder and open the definejob.h0 H2 X  ^) E$ |5 P, D
Search there for:. R, ~- y' i2 a0 ^7 }" g8 P3 p

! O" G& `$ M/ c; g" \5 x6 M#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå5 ^. Y. n$ h4 O; U3 F
#define MAX_LEGEND_LEVEL 129
( g! {" }( n' ^. o, B#define MAX_MONSTER_LEVEL 160
1 b' U. C* X4 B8 x1 [7 T#else // 15Â÷ è÷¾î·Î ·1o§è®àå
3 F- M7 ?$ X- r#define MAX_LEGEND_LEVEL 121. I. {4 H: D+ t( m
#endif // 15Â÷ è÷¾î·Î ·1o§è®àå
- D* t9 L7 N2 X) J: k/ E7 v8 F, q, ]  @

, ]0 c8 _2 ]& `- e$ yRed: Player Max. Level$ J& T+ h; F( u7 m$ W
Green: Monster Max. Level8 e; U# B7 p1 k/ m
# z8 d  |0 R0 j0 V, L6 S# X" g
These changes as simple as you want.
" D/ h0 r+ Y$ e/ ~: i1 P. @5 c
( p- L1 _; m* m& T" lThen you have to just recompile the World Server Files + and make your clientin the Definejob.h the same changes as in the source.! J# Q6 a& @- j; ?+ }# d. j$ g7 u$ ~

7 x* \$ P# v& ]1 H- W
Part 1 of blocking CE
/ ~: k) R, Y& u& [- e; u
. `+ q0 \+ h, A* `, O
In this tutorial I will show you how to change the Head of Mark flyff., J# K* c5 C+ @  g6 A
The current Head Mark is well known, 5E, which results as a string ('^').
, |( z% l9 Y$ K8 N! `4 x, h
8 C$ A5 @9 j, ^9 x" Z1 A  a$ eFor this we go to the World (Project) and looking at the Buffer.h after thistext
; |; c9 S+ s1 e. UQuote:
0 h/ c- x+ A8 X5 ^2 W- n# Define HEADER MARK '^' / / Normal messageheader
+ `" L8 `- l0 H# H# Define SYSHEADERMARK '%' / / System message header
7 P# X0 w4 r3 ?2 O- yWhat the Sysheadmark is looking for is not even the top 5E.- i" M% \; _) ^$ W. x
Change this and it makes the CE Not work on server./ G6 m" O2 I5 ?1 ?/ G7 d6 r7 Z5 H
- ^# t& }( q% R) v, Q6 t
Then Tom's anti-hack is no longer useful.
! Y3 [& N9 a. R& l9 I" C. {) V* E8 z* Y. o
LG Sedrika
Part 2 of blocking CE

: M" N# k  M0 [, j0 O& q8 ?
% y& ?: F  U7 Y. x; c/ jIn 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.
5 E4 X* X2 O$ a# B( |What does this have an advantage?
7 C% G: K# r' _% ^9 a  nThe editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself
7 ]! ^1 h5 q% M% n8 |& e4 t3 ~/ y" U  f) f4 E; N* I
% k4 m# W' F" |' K; O% L
First you need to get open source even know how you do it, is left with you, andyou do the project on the Neuz.* C) K' Q* ?' A

: z2 n, L1 v6 y" E" ?Then search for the following content in HwOption.cpp
/ i% s0 @" h: W$ m) t5 ^0 o$ h" E1 t& r* }/ r5 Q! o+ O8 |

. P* i7 _7 ?; J0 M0 ?6 N8 y8 jif (scan.Token == _T ("ip"))
1 O3 |8 h3 S- p0 H. ~{0 k, R  L2 [- c- w4 K8 w  {
scan.GetTokenEx ();& q8 Z# Z7 p) S# i
strcpy (m_IPAddress scan.Token);. r5 W% N! g5 e
}/ w2 C0 K" O: s) r6 B9 U, K
and turn it into this:
- T) m: {5 l1 Y! ]9 wQuote:# T" n5 z8 f7 w0 E0 _
if (scan.Token == _T ("ip")), C0 x' T4 M6 W/ b
{
9 B  v8 ]9 y8 {; F% I  S9 d/ / Scan.GetTokenEx ();
+ c3 F3 k" |# g+ B; k( o6 r/ / Strcpy (m_IPAddress, scan.Token);/ L' e" Q3 d8 H. {8 X# ^
}
! I, Y1 `* @, v3 i+ ^$ QAnd you created the solution.5 e, A5 v+ O/ R# P. x' k2 O! z
: `. U) T7 `! \5 B
2 j+ B: h8 a* z- E6 d
Then read the Neuz not the IP from the INI anymore. even if put in it
7 N; B. s; l; r. c
9 T! i9 w3 h- M* v
Max skill's

3 @! \: a% U' S4 y9 I  l0 W$ c# v" D$ @+ c
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
4 }! {$ e& ?+ P" c: {
7 @9 H1 r9 D1 v$ T( kWith the TUT can provide the remedy it
: P" F* [) x6 d3 Z
1 ^' }# h% Y5 ]1 g% x" `# 1 opens the file SkillInfluence.h8 t: R1 M! x) |4 g
# 2 Search
. E! `' |2 C$ a' u# zCode:. Y7 C9 ]+ S- t" A9 L/ a% Z& j& O/ W
& r, @4 O  `  H, G+ w; J; [
# Define MAX_SKILLBUFF_COUNT 14
1 Q' N" K. _3 }2 F0 M) G0 n: `, ^/ b
9 @! G' r! B; u! Z# 3 Change the 14 to your number (eg 21) and save it from
( j4 u! b- |& M# 4 compilation and ready
- M/ ^8 H+ G% m* v4 e6 F0 B' h, F7 i

1 E9 P- ~7 A& S0 T* t' D9 u* O) CI 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:
9 p6 n- u- p- J! k
- w, _9 R7 g3 w" \. K% ~8 J' Adennisdra# f# S7 _5 F5 V+ P5 Y& D
.Crasy$ b% b( R0 b# P  A' E& A" |
©ross
  p+ D4 M2 B* ^$ [* G5 R* y& j9 nSedrika
: S- [; `( h' z, b* O/ {- B1 K$ H, V8 s
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!
' y6 u  m  y6 }+ }9 v
  n, d! o7 C# O3 q! ]. n! zP.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less
- K+ D3 V( E& u+ O: I8 W& }5 g
5 j/ @7 \0 u5 W! G6 F+ y; ^
, |) Z( y3 ^" H6 JUpdate 1:
how to turn off "Profiler" in worldserver.exe
/ a0 @2 m+ X" Q( {( W$ y) v& b, _- c
9 {- N, m0 |! `# a% m8 R
" y9 ]/ V3 y2 F, }; O. ~
in VersionCommon.h of Worldserver Solution  c  x% [) I8 W: x9 e6 P
Look for; p, b4 O& L& `4 b, P

4 x. ?0 x9 D* D% c7 R# M; }#define __PROFILE_RUN
8 Q+ V& g' E* y: y% _% ]) q  d- u$ l* k2 d
comment it or simply0 k2 f: z- U+ o

" z5 g3 B: l$ ~" a2 j& v/ G//#define __PROFILE_RUN
* K1 y: ?/ W2 i- z$ L5 `- ]; d* Z0 q0 E4 H9 U2 t: j

, P2 g* l( J# g" jcredits 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投寄。谢谢。我添加更多的很快如果你有病加太
: j- A& e$ s" B8 ]5 q# P# |
回复

使用道具 举报

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

本版积分规则

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

GMT+8, 2025-4-20 14:00 , Processed in 0.067224 second(s), 31 queries , Gzip On.

Powered by Discuz! X3.2

© 2001-2013 Comsenz Inc.

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