飞飞世界论坛

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

改变最大等级

[复制链接]

197

主题

203

帖子

1078

积分

管理员

Rank: 9Rank: 9Rank: 9

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

, f& O5 W/ R9 W/ Wchange level without Rebirth0 q# U9 X! k) y
5 L) O1 F3 Y, x, f' t
Now, let us begin.( S' H: M: s/ i0 r
" [2 V. y" C' }9 ^0 e9 D2 d
Requirements:9 i) x9 y1 r' o- g. T6 F
Source
9 o$ h- ^7 j/ ]6 ONotepad / Editor) v- o6 L8 }5 P: F4 X9 O+ p

* U4 j* o3 `% O- l! b- M/ / Tips by Sedrika! h8 T  n1 U" u6 F& r
, o  Q! M- N" m9 [6 Z- [
It is up to you how you do it ^ ^
; m. I" k8 o8 n
) w8 p$ g3 y  |, R8 _& w- F: HGo into your source folder and open the definejob.h
! Q. _: }$ E( ?4 |& i/ j+ ?4 ySearch there for:* }8 H% h( v9 l5 s
8 v( ~$ `8 [% k- ]0 e
#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå
9 U# ~) C! f6 v% @#define MAX_LEGEND_LEVEL 129
6 c+ r" w' C2 G* m1 R* T3 e#define MAX_MONSTER_LEVEL 160% z- c- j$ g& h: J/ I
#else // 15Â÷ è÷¾î·Î ·1o§è®àå' y) n8 L" V" s9 _
#define MAX_LEGEND_LEVEL 1210 r- W. e! ]; N; D) p# }2 W* j3 x
#endif // 15Â÷ è÷¾î·Î ·1o§è®àå
# L8 ?' J% \  E) B
/ ?& |4 H" N# \* C' s' F1 H( K1 y7 C- Y3 }, p, n& i
Red: Player Max. Level7 d3 M, W3 Q# g. C" N1 T+ P1 X# x
Green: Monster Max. Level
9 q  ?* ^/ G7 R# ~' u; w+ ~" {
9 y, a5 d: i9 a' ~1 ]3 c# ^These changes as simple as you want.5 b  J( f. {' J

6 x5 _& A, M$ E' ?! ^Then you have to just recompile the World Server Files + and make your clientin the Definejob.h the same changes as in the source.
. T8 U  H* D5 E+ x
/ ^: L) i! H: }0 x; r3 Q
Part 1 of blocking CE

4 ?$ Z/ H$ c3 J( g1 N5 \$ R& r! a- W
+ _; h& V9 T/ i; kIn this tutorial I will show you how to change the Head of Mark flyff.  I( k# u0 e3 L8 V
The current Head Mark is well known, 5E, which results as a string ('^').( y( g% r0 m7 ?8 }2 E

9 ~% z% |. x5 [1 B5 g  [For this we go to the World (Project) and looking at the Buffer.h after thistext
* x, L: O; {1 Z. o3 e! `% @( bQuote:3 k$ A% b; b4 D: j/ e# \
# Define HEADER MARK '^' / / Normal messageheader
* R6 I9 {- x- ]# Define SYSHEADERMARK '%' / / System message header$ j7 W% N8 K7 }1 Q+ |0 R& U9 x8 {
What the Sysheadmark is looking for is not even the top 5E.
: `) w" M! b$ i+ o" I) A% j5 I& k6 CChange this and it makes the CE Not work on server.  |& B5 ~7 ?# A
+ {4 B8 D" t; g. R0 w
Then Tom's anti-hack is no longer useful.4 E. c4 r9 ^. L: X2 y: z7 \

% l6 B4 r1 h4 `) y, B( |LG Sedrika
Part 2 of blocking CE
: i7 P/ K5 T: F4 k; t: k  S: K
. o* k! n9 Z# y' W3 L5 D7 l
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.
9 r3 M: G( L, Y, V' @What does this have an advantage?
0 p' P/ M3 R9 [' s7 SThe editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself 2 y% {1 C2 q. s; }5 o
9 E9 x: m) {; C' g2 o+ R

/ a( j2 R' T2 T$ |2 M" l9 ZFirst you need to get open source even know how you do it, is left with you, andyou do the project on the Neuz.6 n+ ^$ J3 z3 r' ?$ R' l- S
% h2 a8 Z& G. V. m4 l& f
Then search for the following content in HwOption.cpp
/ x6 _6 B' W1 \2 s; d2 n
3 J5 I& |$ j7 `; c9 ~8 [4 ?8 r0 S6 `& B
if (scan.Token == _T ("ip"))8 {0 E3 i, F7 ?. M) ~7 h
{. o$ W8 L1 _, S
scan.GetTokenEx ();3 W5 A( M! [/ j; s- Y# F
strcpy (m_IPAddress scan.Token);5 O7 G- `& U3 e
}
' B2 s. M1 L. W& N- xand turn it into this:$ C7 k- O) q4 M* z1 m2 {8 D7 m
Quote:, h) M7 C8 y8 X% ]5 b5 s- i
if (scan.Token == _T ("ip"))2 L# x2 s  E* @( v6 I
{
& P/ }6 ^% R* q. F  z/ / Scan.GetTokenEx ();
( g0 n7 E  x7 ]$ K9 a/ / Strcpy (m_IPAddress, scan.Token);- e, {' Y' D- J% W9 R; o# \
}. F* k. C( z1 |+ {9 t6 h7 E" d9 ]
And you created the solution.
* P( w  `4 I1 g; M
4 n- N: \# T! x3 l! a6 [; D/ j9 f
# Z5 p" s. e2 }3 W& r% ]3 n3 y$ \Then read the Neuz not the IP from the INI anymore. even if put in it
; W7 M( I: Q: t8 P% H0 r3 g  d* j+ V/ o+ `
Max skill's
9 y  i$ q$ V0 o9 b' y" P

* `9 ]6 N: [; T( ~0 @; RAll know that, 14 Max buffs, you get all the RM Assist Skills + Skills fromBuffpang and no more space for the YJ, Knight, Ranger etc
+ A4 W: f8 O) Y. B
6 w: F  Q9 C: \: A" S) eWith the TUT can provide the remedy it
: s) r- b1 P- N2 X# E5 Y9 W6 T" I+ G7 `  [* K* D0 U
# 1 opens the file SkillInfluence.h
& H7 s5 ^  J  h2 g9 B  @# 2 Search
' a. D% W& k8 XCode:5 e3 F' U7 P. T5 i/ p
5 \. r7 Z( `) _8 V# `9 H- U: R
# Define MAX_SKILLBUFF_COUNT 14
* k$ c" W  s1 k" i& l- p/ H
3 t0 m9 f8 d) g  J& V. T# 3 Change the 14 to your number (eg 21) and save it from
$ y8 [8 i) _/ M" C# 4 compilation and ready
% w/ ^3 N1 L, P# e; U5 w1 X! h) S0 t! \; @: h: j  l6 z/ R

% K9 r; L5 m# l0 L7 JI 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:
" u8 L2 h  B7 O( E$ s3 l, ]3 _
dennisdra
, i) ~2 E; P3 e0 d1 C! v- Y- P- k.Crasy
' [$ a5 O- X/ m©ross5 m# H+ J6 [3 d
Sedrika
+ g* O& F( E2 z& w& o# U8 I1 I4 k0 |4 N: I. X" h
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!
7 V+ }! M) d; N- h, }/ F
, H* Q% a4 c% x* S6 q- V$ e+ TP.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less- o" x' n% l, [* j
5 J' }8 W# e9 d7 d0 {& u
) w0 i9 ~' t* _- o! R
Update 1:
how to turn off "Profiler" in worldserver.exe
, P/ O) A+ |5 {
2 q( L, r: n$ _  [

, \! _" C% J2 Min VersionCommon.h of Worldserver Solution
5 ?3 R0 F( _/ zLook for
1 g) V$ w& k3 q! n6 z
6 R* B+ z/ m& r- n# X#define __PROFILE_RUN
! v/ e. |+ m8 B; @) w2 Y# Z" U2 k" y9 ^2 S: `/ ?1 z5 F( [
comment it or simply8 T7 k5 [( D% ?. m0 T
+ X: O  ~% u* T+ i8 d$ U/ N* {4 r
//#define __PROFILE_RUN 3 W* k( z! u  A2 K

  ^5 [' u3 @8 H; m6 }/ d3 Q4 g$ S# n- U  {! Z/ G' s: Z% Z8 M
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投寄。谢谢。我添加更多的很快如果你有病加太
- X  t! t/ Z4 w
回复

使用道具 举报

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

本版积分规则

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

GMT+8, 2025-10-23 08:52 , Processed in 0.074382 second(s), 23 queries , Gzip On.

Powered by Discuz! X3.2

© 2001-2013 Comsenz Inc.

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