|
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 # V" B5 S: b/ K; _4 {3 I
change level without Rebirth% k) k1 X6 l1 |) [9 @7 v. m
2 Z% i3 N3 o: _
Now, let us begin.
! ]) W- G J6 q* G
1 y. f, V k3 x. FRequirements:
: k8 @3 k* Q4 W' p; [' bSource& q2 E1 B7 r# A( G7 g' d
Notepad / Editor
- }4 i4 j' w) i0 F5 j1 M& ~
7 R7 m0 y9 T) ?5 N7 Z/ / Tips by Sedrika( v! A+ u7 b8 z0 V
3 M( ]2 i! q3 t/ o( @( B' ]" `; gIt is up to you how you do it ^ ^
* u+ v7 ^" O5 ^+ `+ p
^6 B9 M+ k( e KGo into your source folder and open the definejob.h5 `2 S! e' y+ ~! c# i. c
Search there for:+ v5 ^& @# C$ ~
9 e+ }* f( ^9 ? M1 F( {: S, f* U
#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå
" _7 U S% W3 p* g/ r! {7 i1 R#define MAX_LEGEND_LEVEL 129
& ?( C6 [' Y3 {' J+ { e0 k6 C* E#define MAX_MONSTER_LEVEL 160
4 a2 Y6 R9 y* `4 f#else // 15Â÷ è÷¾î·Î ·1o§è®àå
4 T$ c5 t1 N+ q$ a#define MAX_LEGEND_LEVEL 121
7 p$ W: K2 ]0 V( z5 G1 S#endif // 15Â÷ è÷¾î·Î ·1o§è®àå
8 U. A3 N# Z$ @! [: @
{2 @% K- `- A, c( \' ]9 S! H+ r& n! J8 f4 |( G. x# V6 N0 ~! Z% L
Red: Player Max. Level2 K7 D1 Z+ R5 p; n$ B
Green: Monster Max. Level9 j' S1 r0 B1 A/ k
* o# `4 r& ]# |. R
These changes as simple as you want.
0 I! C- h7 {* ~ f4 Q& _) V% S7 c+ E9 K* @' N% M' e 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." i/ T. P6 i; U7 D4 e* e+ {) q5 Y
' l. p1 h. U4 B, F* @3 o9 i& G( `* q# @ Part 1 of blocking CE
' ]! q0 u( Y, t0 m8 U
* J. F8 [0 t8 @4 u6 T2 VIn this tutorial I will show you how to change the Head of Mark flyff.
1 l3 E& W* ]$ P3 Y, n! JThe current Head Mark is well known, 5E, which results as a string ('^').
; I" l% n8 I$ G8 ]5 G% e2 [$ W
% j" J' \( J7 e" j/ B+ b: \For this we go to the World (Project) and looking at the Buffer.h after thistext
# B, o, W- g C9 g3 XQuote:
! Y3 k: t4 @* e4 G3 U0 q; s# Define HEADER MARK '^' / / Normal messageheader2 b' @' l1 r9 n+ W3 D% O- d! c' I
# Define SYSHEADERMARK '%' / / System message header
+ D+ {! J9 w- f% h0 }What the Sysheadmark is looking for is not even the top 5E.
1 W" E; ?! K. a7 ` ~1 p) A: MChange this and it makes the CE Not work on server. {8 q6 l$ F5 Q/ ~3 z2 q
! x1 i' U' u: F# pThen Tom's anti-hack is no longer useful.9 F6 h4 W- }# l5 h8 Q" d7 M
5 c: }# |' Y( s, p: w1 l5 r3 I7 jLG Sedrika
Part 2 of blocking CE
3 B, t( u! c) c
" K! T" h0 V6 a# D: Z. |# aIn 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.
, i0 X( Y/ i- v F) CWhat does this have an advantage?0 t" Z4 A4 ]( k! `2 `
The editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself
9 U8 [/ d6 k, s3 U8 t% c7 ~8 e9 B' c" X7 v n' Q$ b9 j# k9 `
# h @. c" O; @3 x7 O, A4 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.) c! {. Y# K6 A. Q% g$ j( Z4 O
: E0 u& ]4 f) f- w* g" h
Then search for the following content in HwOption.cpp # K$ Q9 X0 D7 G6 i! S3 E
: {8 _% V' s0 {. E! W& q; o8 a8 ~/ s. f! ~+ E
if (scan.Token == _T ("ip"))
* Q% K/ ?8 Y/ ], c+ a7 @' _{( E9 x- c4 ]0 l; G+ X
scan.GetTokenEx ();% s6 v: [* K1 }0 Y
strcpy (m_IPAddress scan.Token);
- [' w; \8 L4 k6 R}' w( Y6 |& L3 I0 r- @1 T. k
and turn it into this:0 K9 y/ G# ?! h$ T1 B
Quote:/ A6 C9 t, u9 p( q( C
if (scan.Token == _T ("ip"))6 f( L& _& G! p6 ]$ z6 L* T' v, \
{* h0 t, G; Y) f3 u% W
/ / Scan.GetTokenEx ();
. P$ B0 Q# h- P; Q6 Q) Y( ]8 k* p/ / Strcpy (m_IPAddress, scan.Token);. O( R3 v# V `& g; u* E2 Y3 q; [ z
}
+ j" x$ J4 P6 @( q5 W4 fAnd you created the solution.
% R' h8 }0 y3 F1 v
9 S7 [5 i: @0 n' h( V
& h1 B9 p" \0 g3 x& [Then read the Neuz not the IP from the INI anymore. even if put in it
$ ?1 \+ x2 C' Y/ C. {2 l5 q" @( n$ i! o; r
Max skill's 2 @* K/ ?, r2 f% w; L+ P+ t, I
% H% f0 g1 m' o/ |/ K! J* t
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 A g5 M( K( x2 u( x( ]7 v' ]( F
" { A% G6 z8 @- }+ X$ ^With the TUT can provide the remedy it, \3 y$ T% B5 ?# k2 {
; F. G& b1 B% w* y8 z Q- w! I# b
# 1 opens the file SkillInfluence.h
, G2 J; @, u- `7 i# 2 Search. y; S: Z) W+ [' E2 i' f+ e
Code:$ ?: T& L6 R) k) x
% D2 q+ [* n9 u# Define MAX_SKILLBUFF_COUNT 14% R$ {/ W- B7 Q
; B# P, l: g* l/ b& j7 z
# 3 Change the 14 to your number (eg 21) and save it from) P; c+ p4 Y# C
# 4 compilation and ready
7 C; }3 c% o: o. p* Z
0 O6 P6 z" f0 ~/ @, a
# h8 W2 F9 K0 k v9 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: i+ C7 O+ [/ b" q, R9 A$ n
6 [/ B5 c3 T3 `0 ~dennisdra
1 X, a- q% f& i8 U.Crasy
! D2 S% B+ X- b' p- T \3 o©ross0 ~4 z" [3 X( H; I% M6 V
Sedrika
y& v. S, n" d8 O" u, ]& l1 q2 i: U, W( O6 E7 P5 W
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! : g" o# L( H4 |- ]# h! T' u
$ Q/ X2 ^. O- v( g0 {
P.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less3 X9 }: C; V" [8 G7 R( v
( r( [" B5 p. F- y- F; S9 `( l0 w5 P5 q9 s- S
Update 1: how to turn off "Profiler" in worldserver.exe 3 G& G0 @; C; K3 u7 D( e' \# [5 \
* B2 B* z6 s' F1 J
^8 o- {* `* o+ m3 I% A# q& B! \in VersionCommon.h of Worldserver Solution' S4 U3 F D E3 r
Look for3 v0 g& _$ N6 y2 D, k% P9 F/ F
) Z6 e! N+ Y3 T$ E6 a
#define __PROFILE_RUN
; a, o, ^2 M6 t9 x% j, B& r4 n8 W/ Q3 B- j5 C0 a2 ]7 v
comment it or simply F# l) O W7 W$ p6 S
6 H" J( Y% g0 X. f, U- h//#define __PROFILE_RUN
* m1 O l6 W* S) n
: u1 ^2 q+ P% R4 {, S
- C4 m: Z0 Q$ N, L' I \; G* Kcredits 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投寄。谢谢。我添加更多的很快如果你有病加太
7 L/ _$ Z8 D9 N- k |