飞飞世界论坛

 找回密码
 立即注册
搜索
热搜: 活动 交友 discuz
查看: 15160|回复: 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
* {+ D  X# y; x6 i8 K/ ^5 L
change level without Rebirth! P& L; _2 z( X; h: F/ k
' g, B6 t) {+ T
Now, let us begin.0 k! g/ k  X3 W: D
- g. [5 `8 n. e4 ]% W
Requirements:7 e) G$ Z, Q0 Z
Source3 J; K' q+ y' [, ?
Notepad / Editor" p. i; R1 T6 b0 F9 V

% E8 M, f3 a- u2 i+ L: u/ / Tips by Sedrika  K( z" x: O9 E
: J9 O# V: V2 W
It is up to you how you do it ^ ^
9 p2 U7 ~' d/ ^# N+ w% o9 @$ g! M- s3 e8 d% X
Go into your source folder and open the definejob.h
0 o! w1 p9 H; Z2 hSearch there for:( k0 R0 I2 v5 }% o7 \0 T/ K0 d

) v- x" q1 D/ e: x( c. K#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå
9 k2 _0 ?+ k+ c( N4 T1 R#define MAX_LEGEND_LEVEL 129
- t6 l9 l: U  R4 n7 i#define MAX_MONSTER_LEVEL 160  C5 q. p, D% T
#else // 15Â÷ è÷¾î·Î ·1o§è®àå
4 ~" f# C6 Q* f6 U5 E) e1 J& |#define MAX_LEGEND_LEVEL 121& m3 l+ B- e9 T$ E# v' D) y# Q9 f
#endif // 15Â÷ è÷¾î·Î ·1o§è®àå
, z4 [3 r% l1 k' ]: \# _
8 t4 C( b8 n7 c$ Q: q3 m; C
+ ^" g( O0 z: A$ f: b. aRed: Player Max. Level2 h9 {: e6 |( D9 z6 Q6 C1 _
Green: Monster Max. Level
6 ^/ W) t& T; K( O3 S) l4 B
* `" L# R! @: B+ vThese changes as simple as you want.
; ?2 w0 Z9 s2 W, O9 b+ H9 e. K1 S" @7 O2 F; I
Then you have to just recompile the World Server Files + and make your clientin the Definejob.h the same changes as in the source.. h) N/ y3 j$ O& k

) Q* Q1 j* o4 b1 }# [
Part 1 of blocking CE

0 H  a, R7 R  a9 _, I
) J* z* y$ I  G" L" GIn this tutorial I will show you how to change the Head of Mark flyff.- _; ]9 a: w0 q1 E! a
The current Head Mark is well known, 5E, which results as a string ('^').0 O7 f3 ^( t7 k* b, w2 |
; Y8 Z+ X4 r6 r
For this we go to the World (Project) and looking at the Buffer.h after thistext
0 m" q3 L7 H/ U. u* BQuote:( Z+ ]0 `2 K0 B2 ^) c3 w
# Define HEADER MARK '^' / / Normal messageheader
$ g: M! [, v* h1 Z# Define SYSHEADERMARK '%' / / System message header* t1 I' I3 \- K$ b9 s
What the Sysheadmark is looking for is not even the top 5E." y; G1 y1 R) }6 H
Change this and it makes the CE Not work on server.
+ l  N9 @; Q, x5 F! X
; \7 k: J2 C$ G4 EThen Tom's anti-hack is no longer useful.
) ^& Q: S" t3 W' [  {* g( m) N+ q( C0 C# t0 [3 N, Z
LG Sedrika
Part 2 of blocking CE

' `* x! Y7 z# `# c, g" Z( b3 q* G% p8 x
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.
6 s8 P, F) H/ g: d$ ^4 HWhat does this have an advantage?
, ]1 w. Q( Z$ h+ O- {The editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself 7 W1 T/ a. z8 I& \

! x* R4 h& T, {, ]9 {# m* U9 Q
9 F4 T; E( |# f: c' LFirst you need to get open source even know how you do it, is left with you, andyou do the project on the Neuz.
" d# \: i; [1 G9 i8 M8 c% u! a( H' U2 U
Then search for the following content in HwOption.cpp % |$ H' B+ J( i5 \

2 W6 I1 @! y' K: ~$ U
& u: C9 q1 f5 e8 v6 f/ i7 X' Yif (scan.Token == _T ("ip"))
7 m0 m! x) R8 }6 b8 K{
7 \. F; {- {- h: G7 p3 L  escan.GetTokenEx ();
2 f) [, \: Y, Ystrcpy (m_IPAddress scan.Token);9 H8 N0 z( ^* O5 k6 R$ ?, l* x# M
}2 B7 n  _1 Q6 i8 d3 x1 `( n
and turn it into this:
0 O1 m1 G7 b" d6 ]9 v8 b* \) cQuote:
  N. m/ |, }- l. fif (scan.Token == _T ("ip"))
" a, _3 l  ]( U$ k  _& v! c{
, v1 u, }# L# U, F0 v/ / Scan.GetTokenEx ();& C; I; O, H" i. {) K
/ / Strcpy (m_IPAddress, scan.Token);2 v( x  C- W5 H. \* O1 |* ?
}
- B( M2 ^; M8 P' T# [And you created the solution.7 I) U( L# m: v3 [/ G1 e. M
' n2 t' V  f# C9 I
$ M9 x' P+ e, i: n( K
Then read the Neuz not the IP from the INI anymore. even if put in it. p9 e- O& Z  Q: r) i6 f3 z; d9 b" T

$ V" `3 O3 r: b" V4 \& [" Y+ {8 y0 K
Max skill's
0 M+ I1 P5 h1 K  x% O
9 V( B, O  e- M7 l0 G$ ?" e: i
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
0 V3 U& }9 i$ z. J8 K" C" i. x, x' q- o) Q
With the TUT can provide the remedy it& _6 m  P+ k/ V+ C8 {, h

* J# Y. s; L5 N" A$ |7 e# 1 opens the file SkillInfluence.h; J% i) @+ b( D3 b' O4 G" c
# 2 Search% L3 g+ {/ v! C
Code:1 j+ L& `/ C8 _

5 g' H3 h* p9 w% ^2 V# Define MAX_SKILLBUFF_COUNT 144 N; K/ R3 ^/ Z# {2 x8 x
! B) R1 p8 _7 Q, ^6 H0 t
# 3 Change the 14 to your number (eg 21) and save it from
9 \( n+ P7 z) x7 r# 4 compilation and ready# x* |, G! }, V: k9 U7 Q+ V

1 T' Y: @9 I5 Q+ I4 N$ B3 Y3 a. }/ [: |
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:% ?8 E6 G- d: a, H

. }$ t$ ^( c6 Q/ Jdennisdra
3 S: Y6 T; v* L% r5 W& b.Crasy; }0 K' k! T$ K* `7 ~
©ross
( j+ }- ^) p. {& M2 P; I  S/ ISedrika% l% o$ o5 j' z7 m, \! m
1 M# p. K9 H4 B; J* ^* c
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!
/ A5 @+ p1 ]9 N, i7 R3 H) V9 _/ }* u4 w& @
P.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less
4 i7 Q4 a* [5 R4 [) H8 e, R  g
# j; Q  ~- X9 r4 i& }. m' E0 M% v; T0 _) Z+ H6 m
Update 1:
how to turn off "Profiler" in worldserver.exe
8 [6 s( b% U. H+ d4 n! e

, y, x3 {2 O5 f1 ?; a+ x# Q/ @' r9 r* l3 ~& w& u
in VersionCommon.h of Worldserver Solution
" A! h0 |7 {, qLook for9 i+ b+ r6 d& l, ]7 s+ D2 a
1 v( Y3 ~& K* Y& `: D8 ]
#define __PROFILE_RUN
3 r  D1 Z; w5 F6 [: _, \9 z3 c& J/ D  [9 a
comment it or simply" a% K7 ~2 ~% M8 c2 W3 ?
/ |/ p! A; n1 N# u3 c- O; U( c
//#define __PROFILE_RUN
- c+ x" ?+ ?, d; P# T. U8 r3 \
" o2 e2 t6 V4 J# b
7 [6 [4 f' }# V/ r' s- ?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投寄。谢谢。我添加更多的很快如果你有病加太
$ U' S  H+ S6 `, E4 f) i# o- Z& z
回复

使用道具 举报

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

本版积分规则

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

GMT+8, 2025-12-1 04:42 , Processed in 0.062681 second(s), 23 queries , Gzip On.

Powered by Discuz! X3.2

© 2001-2013 Comsenz Inc.

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