飞飞世界论坛

 找回密码
 立即注册
搜索
热搜: 活动 交友 discuz
查看: 14107|回复: 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
' c0 `3 F5 k2 H2 l
change level without Rebirth
2 d; ]5 \, Y, ]4 {
' S) q  q! e$ F' J" e7 gNow, let us begin.
. s' @3 x4 Q. U3 d% p, n7 E( P2 _, v1 r3 f
Requirements:" J/ I: s! V) Y$ ?2 v+ x
Source9 Z9 c$ \; |& V) j* G
Notepad / Editor  B# b- K6 T; d  P9 `1 }

7 E2 }- ^* Q' b* g4 q% p5 X/ / Tips by Sedrika- w0 F. D* Z" V0 U9 g: I5 h
! l6 Z" j7 i. y, c, s. ^
It is up to you how you do it ^ ^: H6 l. N. T( B1 |. P1 v7 E, Y
3 v0 @5 ]! \- z5 q' C. C2 l! B
Go into your source folder and open the definejob.h9 f( ^: R0 E+ R0 e
Search there for:- j: e: l" `& T; K  x% z
& m: q3 A  I: k: }% [% v/ U
#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå
6 t( y$ P% `" I! h- d$ ~+ i' u#define MAX_LEGEND_LEVEL 129% B: D4 Z+ M9 E2 d$ L
#define MAX_MONSTER_LEVEL 160
# W- h$ `( {9 V0 J) _$ O- u& c#else // 15Â÷ è÷¾î·Î ·1o§è®àå
: d: B$ d- I) P. h6 E9 \6 m6 N#define MAX_LEGEND_LEVEL 121
6 S  i* C) c$ \#endif // 15Â÷ è÷¾î·Î ·1o§è®àå / q5 \" B/ O* d% D
8 T7 }0 w) F4 d7 t1 m
# P( _  D" Y% z3 v3 e. v
Red: Player Max. Level% e8 ^5 V2 H0 E
Green: Monster Max. Level
- @. l$ Z; M9 L0 y  y7 P) p. [+ |
/ C1 x1 r2 x" EThese changes as simple as you want.
; I! e: z- Z# j, x  ~0 Z' N$ ^3 O2 I! Q. P( K
Then you have to just recompile the World Server Files + and make your clientin the Definejob.h the same changes as in the source.5 O: K& L" W! x) |! ^
# b7 E7 ?/ U, k: T' p. U
Part 1 of blocking CE
5 ?& n2 X; _- c8 `6 o

' t+ P! }! c* u; p: l) O2 Z# q* `0 kIn this tutorial I will show you how to change the Head of Mark flyff.- y$ L9 W$ r6 S9 P) l0 p( i2 D
The current Head Mark is well known, 5E, which results as a string ('^').& {  H% ~8 n) Z" J- M! Y

6 r, \! U! f" M/ \For this we go to the World (Project) and looking at the Buffer.h after thistext5 e3 \; E. s: i( b! H# \. m4 z
Quote:8 [6 Y9 |0 o6 w8 ?) g# M% X
# Define HEADER MARK '^' / / Normal messageheader, C. S+ J+ v( z* Z+ g+ m$ m
# Define SYSHEADERMARK '%' / / System message header
0 J; d6 ]! H3 gWhat the Sysheadmark is looking for is not even the top 5E.
4 }0 o) a  W0 S) vChange this and it makes the CE Not work on server.
% m. F$ c* ]% ^. j
0 y- Q* A" G+ H: _9 l5 d: q; Z4 iThen Tom's anti-hack is no longer useful.
8 ]$ G$ G. L  ]$ h+ F% J2 b* j/ q8 D% L4 M: |) x+ O
LG Sedrika
Part 2 of blocking CE

5 f1 n- E7 a$ y7 |1 z5 j- M; w" X  v8 q, o2 E# N% g9 w* w% {6 A
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. & z7 W) R& L$ A/ w3 l/ u7 E+ Q
What does this have an advantage?) k  }  A) p" D4 J# K* q  r9 ~- n8 }
The editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself 0 y! ?' B6 Q9 V* E5 L/ D. A9 h
& ^( ~/ ]2 [! g* S

1 R: s' J& x; B7 rFirst you need to get open source even know how you do it, is left with you, andyou do the project on the Neuz.% y' @. @! l# ]; M! P

* i  G0 u" m+ b' HThen search for the following content in HwOption.cpp
, V7 G- w- J9 V
" n. j6 _; D, h! U) w: z0 l, j1 y
# }: |* i% A% r; O# Z* y. sif (scan.Token == _T ("ip"))
$ z& d/ Z, k% [, p6 C! h{7 B6 }' s6 {/ h
scan.GetTokenEx ();
, x- c7 _7 P$ `. R! ]* Ystrcpy (m_IPAddress scan.Token);
# a- E8 v* @. [1 |; F}
" t2 i1 e! e* m: r8 {% T& }and turn it into this:/ N& x9 W0 A% P  x3 Y% m$ V
Quote:( c, y" l- m2 }6 X1 |
if (scan.Token == _T ("ip"))
. n; p  S5 v1 s' G- B+ ~{
& A5 s/ Q. r7 _5 P* C/ / Scan.GetTokenEx ();6 j  T1 H4 b5 p4 y8 A7 Q
/ / Strcpy (m_IPAddress, scan.Token);
; Z5 {! x3 v+ @3 q8 j8 G7 y}- s1 s$ g* D" H; N
And you created the solution., h. x8 }& C# O8 q
5 H; t: c; Y5 h* T

: _) \4 s9 c/ a7 B2 C' T6 uThen read the Neuz not the IP from the INI anymore. even if put in it& H' q- Y6 L1 [5 `* F- s  R7 m
8 q. n: R- L3 [1 I7 ]& u: V
Max skill's
4 i7 N8 w4 S; _/ ]
% Q4 Y) {! K; j0 Z% [; v
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 7 l( k3 T2 q+ F# G
$ n: E: H9 D& |$ }* _3 B( e
With the TUT can provide the remedy it
. d2 d/ t4 J0 z9 V" G! b1 V( a4 Q/ v( Q& f
# 1 opens the file SkillInfluence.h
3 I3 [2 s- r: A# v# 2 Search+ y( S; u% Z1 X% O) ^6 v6 _
Code:7 H2 Y2 t: f. r/ ]( v

" u4 U) j2 e/ H0 V# Define MAX_SKILLBUFF_COUNT 14
9 f- D* a& P: _7 ~: C+ F+ M$ [  ^( F# k8 Q  m
# 3 Change the 14 to your number (eg 21) and save it from* Z& B4 Z) @( f3 i5 Z1 d
# 4 compilation and ready9 K6 J: E1 M% z  O7 v

6 c( K& g0 @, Y+ K9 [" y3 R3 _" f" P# @  z
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:
  g& J- \2 g' p3 X6 {; i! I3 u
+ h9 ]  R$ T7 }& q2 |dennisdra/ [2 v7 c, c( ]+ R/ n, K
.Crasy
! n* R; f+ c  S' A' t, _* r) C©ross/ m, s* A9 i0 k4 Y4 g# \
Sedrika
" o# `- C" g/ P5 X3 Y
! B0 S! y, z3 T4 leverything 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!
7 ]  E. J5 t( k! b2 r% T
5 q0 z  F6 P9 B+ q! r; gP.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less
8 F9 u: c) R5 n" t" \4 A9 Q  r4 {+ P& `/ A
5 I. s! n& N4 O) ~, e' [
Update 1:
how to turn off "Profiler" in worldserver.exe

% c# A8 n+ p( B0 k; s7 [# c
2 o8 h; m8 L! Z. {- T5 P2 o) d; l# l$ a1 J5 @' D' D( k
in VersionCommon.h of Worldserver Solution. }; e* K( c! \; i+ x6 v
Look for5 X2 h4 _# T! O$ }

( M3 f7 D2 n; W* ]$ p; d7 G% d#define __PROFILE_RUN
: X: y, }- f- ~# f' D
/ S- X" u0 L7 ~( v  i& m6 z' ?; ]comment it or simply
6 J/ C+ G% o/ F% W
+ |: W3 n  K+ N5 ?4 ~5 d- T2 l//#define __PROFILE_RUN
$ C7 H" W: `+ P* C) d
2 ~6 S9 I3 ~2 Z9 f/ F' u% c  P
5 v. N$ f$ W" W/ Q' ecredits 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投寄。谢谢。我添加更多的很快如果你有病加太

9 X' d* O1 `$ K
回复

使用道具 举报

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

本版积分规则

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

GMT+8, 2025-7-6 01:51 , Processed in 0.063977 second(s), 22 queries , Gzip On.

Powered by Discuz! X3.2

© 2001-2013 Comsenz Inc.

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