飞飞世界论坛

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

改变最大等级

[复制链接]

200

主题

203

帖子

984

积分

管理员

Rank: 9Rank: 9Rank: 9

积分
984
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
; \" [, K2 ^1 p4 M2 u
change level without Rebirth. w% [2 f! N1 \0 Y8 I& Y' m# i

/ ?- b2 W- E0 u! KNow, let us begin.1 _7 J# w  P& G
1 b6 ~3 u+ a3 O+ }9 c
Requirements:" S" q* U9 Z2 _5 I9 `7 T/ Y
Source
  d* B7 o( W' vNotepad / Editor" r0 O8 C# ?  F. I+ a

6 w5 ]6 s# q0 h/ / Tips by Sedrika. o6 N9 }! y3 {% K3 M

7 w$ `5 _+ l! \5 }8 zIt is up to you how you do it ^ ^
% C: X8 i  w& g' O& t9 o* t  p% \5 F8 K
Go into your source folder and open the definejob.h) k6 I6 K+ o- c1 @! @
Search there for:
4 X5 R) \& A* `9 ~4 T9 {( d4 D7 y  O$ D6 A$ v' E
#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå& N# e- F! K* v
#define MAX_LEGEND_LEVEL 129
  ~$ J6 V+ v: q" _0 X5 t#define MAX_MONSTER_LEVEL 160& v/ K! o: q8 _) c( E; ~
#else // 15Â÷ è÷¾î·Î ·1o§è®àå8 p6 k3 y* X9 W/ l
#define MAX_LEGEND_LEVEL 121& B( n: h9 I( Q6 d" T
#endif // 15Â÷ è÷¾î·Î ·1o§è®àå
, }6 C- o, p  o+ j& [9 g5 p$ K, U' L: o+ a/ i- p0 m1 s  T" k9 W

5 g* y7 O) K4 {: w& \3 TRed: Player Max. Level
/ S& S" P+ t/ Y) BGreen: Monster Max. Level/ P2 x; _3 J/ K4 s0 R3 |. f2 G# J
6 B6 ~& o" G! ?2 Q8 L
These changes as simple as you want.% [1 f+ T) F1 a1 L5 Z( @

4 U" |( X( |0 |* RThen you have to just recompile the World Server Files + and make your clientin the Definejob.h the same changes as in the source.
7 f7 H) q" z/ p4 B- b: Y/ M$ j
- Q, j+ [0 L1 K3 m9 f9 X/ y& n
Part 1 of blocking CE

: V$ e0 N, B0 w, `/ z6 S/ |$ j" @" d
2 d- l- }2 J6 U1 FIn this tutorial I will show you how to change the Head of Mark flyff.' }/ d; Y# S; T/ U  N
The current Head Mark is well known, 5E, which results as a string ('^').
2 U$ e, g: r9 \2 L5 v/ G) o: Z
+ b) r0 \# x$ H  d/ S% D+ a" vFor this we go to the World (Project) and looking at the Buffer.h after thistext
1 S; N- L5 A8 fQuote:0 r6 c. o1 Z4 d. S
# Define HEADER MARK '^' / / Normal messageheader6 e- ~6 ]  \, O$ D
# Define SYSHEADERMARK '%' / / System message header
/ l' a7 a2 A, t# `% a$ tWhat the Sysheadmark is looking for is not even the top 5E.8 j2 i6 t- o( A* h1 F8 b. X
Change this and it makes the CE Not work on server.
# x- H% f- M  V5 V" C8 y* r/ |3 h% b* n; m7 C  k
Then Tom's anti-hack is no longer useful.
7 W- Y4 [# Q& D2 i
9 w% K6 M0 p- X$ o1 q$ K4 i6 TLG Sedrika
Part 2 of blocking CE

1 _/ S2 e! p/ s7 ?/ t8 P8 W( s
1 @" Y) M; d8 U# zIn 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. ) T9 T- B' f; j: H: D
What does this have an advantage?
7 H! V  l8 @+ U. AThe editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself
4 l( j7 [8 \) W; ~1 p% L/ [; e+ ]
: x0 B* n- B  [4 X, E! y/ c
4 `5 N, [8 f2 \2 k* PFirst you need to get open source even know how you do it, is left with you, andyou do the project on the Neuz.# k5 b. r6 s9 e1 `

7 r) a# k7 z6 K: q' e1 QThen search for the following content in HwOption.cpp 1 }1 Y+ i' R4 E/ d/ a+ y4 G. Y% ?
$ I3 q* q! J# p3 Y

! [* g" R, J4 r% Q' Yif (scan.Token == _T ("ip"))
1 y+ A2 [9 @4 |$ M4 ~6 R5 U. ^* P6 D6 K{. h5 u3 H& H  k  z% Z4 V
scan.GetTokenEx ();
, F' {' B. m9 t7 d' D  s- s3 [strcpy (m_IPAddress scan.Token);1 A" c2 I& w+ ]& [' c4 @
}
: E; V. o' t2 {# {$ W% X0 oand turn it into this:
' B' J# H9 Q6 q, Y% D- xQuote:
8 |! p7 D# I+ e. O, I' uif (scan.Token == _T ("ip"))
9 y) Z  k9 `* u{
9 q% p. P, L, _. Z5 E1 T/ / Scan.GetTokenEx ();
" M/ F0 u6 z. `/ / Strcpy (m_IPAddress, scan.Token);
1 N0 y0 z& ~7 N6 B0 ~- c7 Q}
' G0 l5 o" q: x2 M) aAnd you created the solution.
, r1 f$ l( k9 X$ k) M- U, A' `# ?6 E4 J  Y5 N% |3 a

& W; _4 R$ m; W" u: n# zThen read the Neuz not the IP from the INI anymore. even if put in it% t; o" A' Q# \$ l4 ?1 b. u2 C) f

) b+ k. R7 O1 }& H
Max skill's

: V5 f: h2 i3 X: E1 x4 l2 B2 N5 e7 e  d/ x* f& d+ u
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 # f5 z$ P) {/ S5 r0 r# b5 }

- m$ I0 ?2 m$ a( tWith the TUT can provide the remedy it
) x% I4 q' |" z7 [& v1 V6 }8 g; {9 c& S# f, N1 R
# 1 opens the file SkillInfluence.h& c* b- F4 Y, [/ V' @
# 2 Search
5 G1 N! I/ F$ G/ g: ^5 ~Code:2 m/ K& e* v5 e/ A1 z5 c+ \+ p! T
9 r& A+ n9 V+ {) |% V
# Define MAX_SKILLBUFF_COUNT 14
; e+ Y$ g' f: P* |3 ]2 C& E, V2 L  z
  g: g9 @* J0 q4 b( T' ]# 3 Change the 14 to your number (eg 21) and save it from1 M. X! B5 U6 S2 L
# 4 compilation and ready; W5 ^# ?& X: u

! |/ o$ q0 A; h: q- _
6 v0 X4 [+ d! ?3 l9 z" W8 x$ wI 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:
# I5 m% `: r, o' M/ h. x* x
) Q9 B5 n+ ]( E! T: X( T6 y" j6 cdennisdra
1 Q/ N. h! m/ c5 A) O2 e( o/ R.Crasy
/ J6 o. C# s+ F) `©ross# t7 [7 N- E/ U) z. v( ^6 |% p9 F
Sedrika1 @/ p9 N* U; P' K
( e+ \0 i' C; _+ u3 O0 Y
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!
% `% S2 c! u, q  C+ Z6 G& Y; h& b/ ?* j$ _: f, j
P.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less; P, C( e! }# ~, O$ U
1 I! E6 f6 f- N, f$ u! K+ V

; c  L- i* Q$ IUpdate 1:
how to turn off "Profiler" in worldserver.exe
% o* U* l0 f1 b
& }/ H2 R9 s0 \' I6 ]9 ]  [

/ G3 A' S' X% @& [2 Iin VersionCommon.h of Worldserver Solution, c. ?  \2 X0 Q4 c% E' q
Look for0 `* g( C2 z$ u1 Q

8 v: `6 g# J' j) T0 }( c& h* t#define __PROFILE_RUN% G& a# f, ^. Q5 ^
% f9 Y2 b; O9 e2 M8 U
comment it or simply
. s2 B0 M) T( c- k' E+ [
9 P8 z6 E6 `. R( A' ~3 p9 j2 U//#define __PROFILE_RUN # w4 Z& X8 C  ^( b8 j2 W
4 X% ]3 G, t4 ~; j& b2 T" x
/ f+ [1 C# c! ~1 U
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投寄。谢谢。我添加更多的很快如果你有病加太
/ i' L/ U! \0 R) R% Y/ {
回复

使用道具 举报

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

本版积分规则

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

GMT+8, 2024-5-6 22:44 , Processed in 0.074776 second(s), 22 queries , Gzip On.

Powered by Discuz! X3.2

© 2001-2013 Comsenz Inc.

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