飞飞世界论坛

 找回密码
 立即注册
搜索
热搜: 活动 交友 discuz
查看: 15069|回复: 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

% h6 {. \' M4 R% ^6 qchange level without Rebirth
3 m8 m- P4 v+ C; N8 _
  J0 V( D2 X6 ^9 PNow, let us begin.3 c2 Z, Q# E  P. n
4 M- X! S1 r$ a( G  i
Requirements:
3 o, t! _+ o, _& l$ I9 D2 L; uSource
+ y9 j5 B' ?. F" V$ o* k3 JNotepad / Editor' `0 n" ?0 N  D
3 x1 V4 S9 r2 V, {, p
/ / Tips by Sedrika, j: q+ h7 ]+ _8 f
7 T4 @0 I* m9 \) f$ t" q6 L4 d/ ]
It is up to you how you do it ^ ^& x9 x1 K+ p# i, z  A
; R; F7 u7 `0 L& B$ m0 u0 H
Go into your source folder and open the definejob.h
# d8 \6 e( N) a0 ?/ qSearch there for:8 p& S8 V2 k$ p' o  q6 L: V! ?

: E# M. d# B; R  d#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå
3 h8 D1 Y  D5 B( z#define MAX_LEGEND_LEVEL 129& b% g2 M: d+ \( s2 r+ }) z9 y
#define MAX_MONSTER_LEVEL 1604 K1 _4 o. R" ~0 G6 d) _. a* [: f, S
#else // 15Â÷ è÷¾î·Î ·1o§è®àå
$ O) j$ e4 e; b, \#define MAX_LEGEND_LEVEL 1214 w5 V0 P: s# {. n" G4 ]
#endif // 15Â÷ è÷¾î·Î ·1o§è®àå
( `2 v! q$ i5 B
) {" O  x' p: I4 |; g# x" z0 q
Red: Player Max. Level
# y/ }- V; w* M% x- mGreen: Monster Max. Level
4 G9 D/ w0 j7 w! }: v& k# k  n& {% H
These changes as simple as you want.
" ?# C! \1 Q% q2 o7 i, T( [- ^# }0 h4 U1 w
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* U0 e
& L7 M9 d, V( {5 ?3 \5 @
Part 1 of blocking CE
: I- f1 E5 W8 s5 \1 l
) A6 ?. ~4 Q0 V( P6 D3 I: p
In this tutorial I will show you how to change the Head of Mark flyff.% k3 ]5 H2 ^" |; `3 {0 _
The current Head Mark is well known, 5E, which results as a string ('^').  Q8 r* _9 w2 e. V& c! f; T; P" q
$ a& q6 ], l1 M; t
For this we go to the World (Project) and looking at the Buffer.h after thistext
; [% V. Z0 m1 N- T7 _Quote:
1 t1 Y/ k9 f; I! I- k4 R( U) h# Define HEADER MARK '^' / / Normal messageheader
) D1 h1 `0 z4 p' G2 [# Define SYSHEADERMARK '%' / / System message header0 K& T2 C0 w7 R' I  z# {+ L- ?
What the Sysheadmark is looking for is not even the top 5E.
- H4 R& k  T2 LChange this and it makes the CE Not work on server.
4 q) i# e6 l1 b# Z- C0 c2 J
/ H) m  a/ Y3 {  b5 _$ nThen Tom's anti-hack is no longer useful.+ [6 e4 T5 k' g* ]8 b" [7 z9 p7 e

6 M% i* \' m6 [+ iLG Sedrika
Part 2 of blocking CE
. b. a) W; k& E
3 B0 Y( j3 a: C( [4 q
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. : p" i8 d9 p& o* D7 B
What does this have an advantage?3 q/ p8 N6 V8 b. w1 C! \
The editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself
! n7 v, y; e. {) T4 k
5 J# ~$ |  D( U3 q4 P2 ^/ r" ^+ V+ X; A0 o) h3 p8 m; S
First you need to get open source even know how you do it, is left with you, andyou do the project on the Neuz.
/ O3 R% |" Z& D7 O& u2 `
6 p  D2 |6 v# ]. G, i7 `0 r, tThen search for the following content in HwOption.cpp
# h, t" B0 P8 p+ {8 g0 V9 L$ r8 j/ T% `. g6 D" v7 x$ N- i
, u4 i, Y* r/ \! H7 ]
if (scan.Token == _T ("ip"))
( P2 M6 C/ ]4 J7 @8 M! |  N{1 ?2 x, F+ S/ z/ s
scan.GetTokenEx ();& q* N; r0 H1 o1 j- c) g
strcpy (m_IPAddress scan.Token);" d2 l( R% M- l' n
}+ d/ l2 [3 \1 r% Z7 r$ W9 h
and turn it into this:
1 c7 S! a4 e4 sQuote:
$ |6 i) X8 d6 o- M% o: B+ w: f# E& |if (scan.Token == _T ("ip"))
/ ~; r3 [8 A: P7 k{# ]+ z" t0 o+ Q! B3 b
/ / Scan.GetTokenEx ();
: U5 S8 j% D/ h* r4 t/ / Strcpy (m_IPAddress, scan.Token);0 h! p- @$ F! J* R0 T% F" d" U
}/ H$ @; v) A$ u7 ]6 S
And you created the solution.
3 Z8 k* L8 X- V: d7 W
; F0 |2 L, h6 t, P: q
. x' l2 N/ I5 ]Then read the Neuz not the IP from the INI anymore. even if put in it
& v8 [/ r( B/ i) z
6 Y; U- _& T+ H, Y9 U
Max skill's

9 [" a- A! F3 R; d; W  X- U% G, X9 B5 z7 r0 g# O/ P1 Y/ b
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
2 p& u7 ?; m( S7 {8 i, y/ b" l
* Y5 }9 q5 J( d6 JWith the TUT can provide the remedy it
8 B+ F2 K' n, ?" _" ~" j/ Y* I8 t* j
# 1 opens the file SkillInfluence.h
7 {9 G, f' _* H, u# 2 Search
0 [7 u7 d0 G- W! e' Z' M6 iCode:1 O' a- T, b  y7 D! \

, p! ^% [/ R. ?7 ]# I2 _# Define MAX_SKILLBUFF_COUNT 14
% Q. v( R: D* q5 g
8 g2 x$ b8 O: [# 3 Change the 14 to your number (eg 21) and save it from" P$ y3 Q; R1 l1 |8 f$ T. ^
# 4 compilation and ready
! ~1 F$ J8 ]/ [# O8 B1 T$ U! g- N

' ^3 X9 `, i) q- F. w% V" {7 TI 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:
+ k0 A9 m, `/ d; R/ A8 L! o
& e+ X# K$ [& S& b; kdennisdra8 T5 T2 A$ o9 I/ `. I6 l# b) r
.Crasy
0 `3 }8 \9 c/ x( l- A( P$ Y; \©ross) h1 V" U, e7 F8 Q$ h( c
Sedrika. u4 l/ b8 r1 y  [$ Q9 V
! w  ^4 ~: X" }3 W  f
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! ) m0 B$ x" u9 a/ E
, \8 _' N/ n6 V9 a5 r3 l
P.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less
" [$ m/ w- @4 o0 R2 I+ ~9 [
, ~, H5 c0 ?/ |8 F$ L" i" ]. l7 @5 }1 h) w8 S* W
Update 1:
how to turn off "Profiler" in worldserver.exe

% H% P2 @6 g. ^* q! W$ \) k3 W" ^. t) H0 ~. D

% k9 U) q; y5 R: l8 ~8 C$ Vin VersionCommon.h of Worldserver Solution
4 g0 [; @# k7 ZLook for8 u: M2 L5 _( ?8 G0 D$ b' D% a% e
; P" N  _; @# y
#define __PROFILE_RUN
( K% _. p5 T: k, _  B8 u& v( \; M, R( R; n& k# Q
comment it or simply
  f( i0 D7 e9 {4 P! Z, `! ]3 _$ `* i4 K' o8 c
//#define __PROFILE_RUN
& }8 G0 q0 Z: M/ Z  x1 J! H
2 W8 z9 D4 ^" e3 u5 h
% q" K' r& u) r/ A  mcredits 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投寄。谢谢。我添加更多的很快如果你有病加太
1 Z4 N0 d% q% U' r# _
回复

使用道具 举报

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

本版积分规则

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

GMT+8, 2025-11-23 19:19 , Processed in 0.060849 second(s), 22 queries , Gzip On.

Powered by Discuz! X3.2

© 2001-2013 Comsenz Inc.

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