|
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
1 Q8 ~8 r* c6 X: C1 f( Nchange level without Rebirth% [2 |1 Q. e2 J3 T1 R! x# D- o
" R; c3 e. ^$ M
Now, let us begin.9 Z$ l) S6 n: c
9 [$ N' J0 i }# b
Requirements:+ t0 S7 J4 \6 f3 n* A' E( y
Source7 f: @: E+ \0 Y! }! c
Notepad / Editor6 t$ u6 i$ b( X; ^
' o- Z2 t& e) t/ ]+ ^4 |
/ / Tips by Sedrika! `; @% d x; R$ j9 A4 O
/ j8 P, y1 o# o' m3 t) Z" Y' xIt is up to you how you do it ^ ^4 d! _. a$ S( e0 m: n
* i5 y, x( Q; \, y1 r
Go into your source folder and open the definejob.h$ c% {+ L0 v0 L* [
Search there for:
; ^+ @9 g+ b6 p, N q2 r
Y7 d" t h0 j$ O; O#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå
+ D8 y. ^) h/ K% G, ? }#define MAX_LEGEND_LEVEL 129
. ]) b8 g: j( n: d7 j' ?' O#define MAX_MONSTER_LEVEL 160
+ |$ Q! L( i' e# z+ u% s# I#else // 15Â÷ è÷¾î·Î ·1o§è®àå; Y) j9 `$ r" ?' \; B
#define MAX_LEGEND_LEVEL 121
2 `) h: P2 i8 c3 }8 p* B#endif // 15Â÷ è÷¾î·Î ·1o§è®àå
' t+ m( f* |$ _6 A4 ^% i
6 j$ w8 p$ y4 f, p8 x; k& x' H' a1 X* d
Red: Player Max. Level) S6 l" m# W. t! u
Green: Monster Max. Level
. Z# G5 J- A' H& X5 G
+ r& K: Y! E% b# a% n5 ^& U' _These changes as simple as you want.
& a! G: S7 z, D, j, _( d: I( R' D$ k
, Q+ H: E$ w, I+ N( BThen you have to just recompile the World Server Files + and make your clientin the Definejob.h the same changes as in the source.
+ r9 `( T( I9 h8 x! a5 e( E
5 V. [- _- I) B1 M: e4 K9 q
Part 1 of blocking CE
! y# d/ Q% ?7 c/ W% f' ?$ J. o
- R+ l( t" x8 g; K5 M" Q8 T# `In this tutorial I will show you how to change the Head of Mark flyff.
7 R* A) H) u: k/ z$ bThe current Head Mark is well known, 5E, which results as a string ('^').& p3 h# F& i$ E
; p* G( h3 @# y2 [5 M
For this we go to the World (Project) and looking at the Buffer.h after thistext
0 U8 F6 y; P9 c$ p a9 b; gQuote:
: q9 @. g, Q$ @ \ s' L# Define HEADER MARK '^' / / Normal messageheader) g8 S0 [* D0 E8 p; g9 M
# Define SYSHEADERMARK '%' / / System message header
9 ]' {, o/ ]# uWhat the Sysheadmark is looking for is not even the top 5E.
& }, X5 O9 I" f; Z- z- T8 @$ aChange this and it makes the CE Not work on server.- O+ i/ M: I5 M# C9 |- J
. n% ~8 @5 g3 H( W3 T
Then Tom's anti-hack is no longer useful.
h9 _' N( Z9 |9 F0 ^% y
, D; N. M/ ?8 G* {$ wLG Sedrika
Part 2 of blocking CE
6 C2 q& H0 }# F3 l _& t* f6 I% j- H- z: ]7 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.
8 Q; Q3 g2 N! @+ H& b- t* K" x( HWhat does this have an advantage?$ Z3 |; G9 p/ F; S5 J% b
The editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself 5 r1 c9 M' c+ F6 _, T9 ~6 Z
) d# C2 ^6 q/ C/ j* o- Z7 N) F- V/ o$ [7 t6 `/ x& k
First you need to get open source even know how you do it, is left with you, andyou do the project on the Neuz.
) U- w: j. M3 E3 M+ n& q7 J* I: K( u0 w0 e% L4 |% I! N
Then search for the following content in HwOption.cpp
8 g* q9 ~5 L/ K& q& P3 G5 I, c7 P/ K( h4 @1 L9 O0 b! _4 E# Q
" Z9 ?6 S$ N* @- a/ w1 T0 J% a
if (scan.Token == _T ("ip")) U* M q* j7 J1 @4 W
{" g1 x2 g9 `6 U! L5 |
scan.GetTokenEx ();2 R; v* I. \* [( G8 K7 J O
strcpy (m_IPAddress scan.Token);
) M, h% s+ z/ M* z( K0 N}7 L9 g' h* N: i9 J& c$ \. I9 ^
and turn it into this:
0 B; t2 k" `. K: r0 g4 i) u2 T4 MQuote:
* v. j, E* V" J$ j3 L; i! O8 Sif (scan.Token == _T ("ip"))% t1 h* e4 D2 j& |7 r" M& ?
{
2 q& ]- p/ I3 [, E/ / Scan.GetTokenEx ();* ^* m$ a. G5 k& p) w1 x
/ / Strcpy (m_IPAddress, scan.Token);3 h9 F3 E5 u7 M7 ]# d
}; k$ y) C: ~* ^8 [
And you created the solution.
) l. P, y! U2 G% A
' T4 ^# y& o5 J4 X+ r, l# o
7 |& O9 C- L. p; ^7 D3 CThen read the Neuz not the IP from the INI anymore. even if put in it% O' \+ b* E. T3 d( H2 p0 K
% K3 |* L- [! @ U0 j B! R5 H
Max skill's
5 H: J' p" {: v" K; g6 O3 Q4 h2 Z9 T+ C. k
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 5 M9 y+ V) }3 f- Z: r+ J! t
0 x. u5 s. O [/ Q8 F
With the TUT can provide the remedy it9 `* |5 V9 ~& Z# I5 W$ [
$ p1 k2 L8 u# \4 m2 E
# 1 opens the file SkillInfluence.h7 K, }( w" Z$ f7 F8 P. n u
# 2 Search6 a: E6 B: I( D$ u+ W
Code:- T) }0 d' h/ c; F( [( }8 }
- H, ]0 N; Z9 p7 x7 T6 [
# Define MAX_SKILLBUFF_COUNT 145 J( _4 P7 Q2 z1 x: H0 Q1 R
6 c% F: T, F/ u# 3 Change the 14 to your number (eg 21) and save it from, U: ]& n, l+ j
# 4 compilation and ready( G c- K* D8 c ]; n# r
6 w0 o5 ~' b! D' c; j! u3 N
" M* J% t, D M u7 M5 fI 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:
# o6 z! [) Z5 t x' {
* M# F: ^6 p w7 {) p% R8 Kdennisdra
$ ]6 e6 e3 g- f, n7 ~, Z7 A- j.Crasy. M. z& q" T/ z0 r1 M+ G n) |
©ross* O" Z \; n7 s2 @9 H# d
Sedrika
. R) }9 U0 |6 A9 e3 O; j4 M8 @/ h4 {$ S8 K2 ~7 z
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! 5 |! f5 L* j. Q( \* m
, C$ V* u/ e- L vP.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less/ L. _2 q8 T6 P+ \' x
7 s- E/ @ O* W# E1 L Y
6 A& d; c+ ^, X5 Q5 [" _
Update 1:
how to turn off "Profiler" in worldserver.exe
) F1 G( z2 ~7 m8 }8 X
& D7 x# I, p$ d3 r' } ~5 O" a" s/ n! D0 X6 e) |; B; U
in VersionCommon.h of Worldserver Solution
; S' l2 b1 x) `Look for" |. ?9 g: m9 _( Z# p& s$ M3 `7 Z
" s) i" I7 p; }$ b* D. U! f: |3 s: O#define __PROFILE_RUN, u2 _- @5 `0 J# d
* ^! j" k! `1 _. E. Z) Tcomment it or simply- Z) Q/ I7 G4 ]: d9 k* e$ `
# M @& a( ]( m/ b& T//#define __PROFILE_RUN 2 j9 Z- U4 l' E3 @) i
8 F! [3 X c0 v( G) s# H
7 {( ]/ X: E$ d0 Scredits 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 A) W' g: l! t3 n
|