|
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
?: h) Q! x$ i& Pchange level without Rebirth3 B' D! q5 }+ B& U) S
! i1 L- Y$ K5 I0 @( D, fNow, let us begin.
4 g9 o( u7 N0 }! A( M
- v4 B' ~: Z }% n( |Requirements:
/ F; a. l' S) r( vSource
8 V! o5 U$ l" J; \7 GNotepad / Editor
5 u% T' p1 y% c/ ` f3 w/ [" w, H
( w1 u1 M7 C8 M6 T0 }/ / Tips by Sedrika
& S0 r6 B, r0 c0 ?$ Z: J- g k
) m& F5 ?4 K; r5 N! e, H% w4 e% rIt is up to you how you do it ^ ^
' E8 P/ [6 y& z5 ~8 u% P \ a5 y# N
Go into your source folder and open the definejob.h
" u* q$ s( j* G: lSearch there for:
. O, {: ?, X7 l) C6 T. G4 A% `2 j0 S4 h6 f
#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå
: U3 M1 Q. l3 N#define MAX_LEGEND_LEVEL 129
! {4 I. C# y: U* \: P* G* ]& w#define MAX_MONSTER_LEVEL 160
6 I& J) o+ @( Y- s c#else // 15Â÷ è÷¾î·Î ·1o§è®àå" j2 [' G% c6 C0 x; D
#define MAX_LEGEND_LEVEL 121
# T# S2 ] f1 x% l+ v#endif // 15Â÷ è÷¾î·Î ·1o§è®àå
: g3 O' ~, E) z2 i8 y5 R
1 x& z' R7 ~& \/ r: f s: }8 k
/ a5 ?- F0 J- r, D& ZRed: Player Max. Level( B$ v7 k4 {% u4 E% D
Green: Monster Max. Level5 W' P/ P3 o. U& g, c* E
; t |. P% X! r7 d' y IThese changes as simple as you want.
0 C. Z+ \0 F; Q; e$ {5 _' ~& E: n% f# J+ l$ ], g; T1 i8 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.5 y2 @. C) ~! M( U; P
% y- F/ t; `8 ~4 b$ @
Part 1 of blocking CE 4 U) O4 s8 |1 G3 K& S( w c
" L" H( I$ }) bIn this tutorial I will show you how to change the Head of Mark flyff.
5 U1 @7 H0 x; `/ b p0 I$ OThe current Head Mark is well known, 5E, which results as a string ('^').* E) t! ^" Y6 o% G* c6 e
% K& d# K7 G4 n) Q
For this we go to the World (Project) and looking at the Buffer.h after thistext* Q) T& T) ~* J5 ^ M( u
Quote:
7 ~9 g* {5 S8 \8 C3 l& Q9 y# Define HEADER MARK '^' / / Normal messageheader
9 k2 F6 k0 B1 k# j8 @- a% s# Define SYSHEADERMARK '%' / / System message header% W4 L& ?) j2 p# W4 h( Y3 d, o
What the Sysheadmark is looking for is not even the top 5E.& L4 q0 w1 I6 [/ G
Change this and it makes the CE Not work on server.
9 t7 a8 K/ ^, s# `1 _( B- S5 j
; u7 q- u6 W/ I" |. O8 ~% Z5 _Then Tom's anti-hack is no longer useful.
, ?4 F3 L8 x* d* G/ d
3 |4 W! j! Q, J9 Y4 CLG Sedrika Part 2 of blocking CE ! Q# E/ C* y2 S8 g
+ U$ z+ U) k: \( j6 J1 QIn 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. 7 y5 K+ j0 f) x# R/ g# e
What does this have an advantage?
8 b4 c2 G% X `; dThe editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself 7 G3 D8 y3 S3 o, e
% K: C) A% G# F3 I% }) q7 s6 X; W
% J7 Q& y% R% rFirst you need to get open source even know how you do it, is left with you, andyou do the project on the Neuz.6 g8 C& H4 x j' p" R- ]& L+ K3 m
- {5 a) a& e) T+ a& P3 y& j
Then search for the following content in HwOption.cpp ) Q" F4 U; M& A" ~% Z1 {$ [$ F8 q! s
5 ?$ {; g& a' w8 j' l5 S% J7 a2 t- I) `
if (scan.Token == _T ("ip"))0 B w: O q P- I$ C; e8 `
{- f+ X* s4 V6 n; w
scan.GetTokenEx ();- _* Z! U: U' u" w9 ?
strcpy (m_IPAddress scan.Token);* q3 w8 y4 z7 p1 f( O
}
# O+ M7 b" n" J9 e4 ]* e- a9 A9 Nand turn it into this:0 F8 |" m( c/ M
Quote:
c# X' K8 x; k3 f& X: r7 U$ P8 Lif (scan.Token == _T ("ip"))5 V. X' c; e7 A# o9 D
{
2 B% X8 T6 b8 q0 _1 z' u, F/ / Scan.GetTokenEx ();
. L3 M& j6 R2 X" ?( ^/ / Strcpy (m_IPAddress, scan.Token);0 J6 j; {& |. Z% x1 V
}
4 N0 {. { k; w* k0 J TAnd you created the solution.
; n$ \5 E5 X; x7 G$ i, \# M8 I* ~/ R& X6 n# f* ]- o1 ]6 k0 o Q
. w2 o! U6 ?, E
Then read the Neuz not the IP from the INI anymore. even if put in it* w0 f3 K6 {2 @" [6 X
1 V; P& C* v; e. n
Max skill's ) D, I# J a# D$ z0 p# ?/ p
: r3 ?" b5 D* k7 b) W6 ?2 LAll know that, 14 Max buffs, you get all the RM Assist Skills + Skills fromBuffpang and no more space for the YJ, Knight, Ranger etc 0 U. h8 c) w# A! M# P
m( @* Q/ _, y2 X8 _
With the TUT can provide the remedy it; r. p- W9 A" R2 n3 l) t3 a
' C5 e( {& l- v; j d$ w# 1 opens the file SkillInfluence.h1 }$ V+ t2 S; E
# 2 Search$ h% C* }. P8 j8 y Z5 l6 V
Code:
& ~% Y! }) K! m7 v
4 y2 A; l, b: C/ ?% `# Define MAX_SKILLBUFF_COUNT 14 i+ K% Y: |( J: }
$ z7 O, R6 r8 ], c* @# 3 Change the 14 to your number (eg 21) and save it from
b; [! k) z9 {$ Q7 ~# 4 compilation and ready
, D5 p- m8 j; k5 q x# Z( c( {" O2 T' V9 d' Y
9 l9 v! e. x [I 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:8 Y% i, h, |1 W0 d
' M$ f% T8 T% Q& Rdennisdra
8 z8 B3 i o% Q! S1 F.Crasy
- p' @; n1 D- U©ross
% e3 x5 F. t9 {Sedrika% t9 y4 o/ Z) n3 E# t5 V3 j* E9 l
* P3 t. Y( H. Z3 Z9 `6 `7 K" \7 Veverything 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! 1 v/ C$ Y/ I0 F
/ M, z0 c3 s; ?- h* i2 _P.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less
* [2 g- E5 }% F8 ?/ u& F+ t; i3 {# i! \" e/ M" @3 C$ s/ z& N
1 q, {7 m# }" ^4 v1 T6 i. GUpdate 1: how to turn off "Profiler" in worldserver.exe
2 r5 p, m; C4 k! |2 m" i3 W! u
; ^2 P- q0 b o' l9 D0 K) D( F. E; }0 }' d8 Z s& w
in VersionCommon.h of Worldserver Solution
$ t; f S: X! C3 k' ]( u% y* p/ ^8 lLook for! P- P7 A! y3 w9 T* Y8 a0 C3 X
; \/ Q7 W4 A T6 M2 O% `#define __PROFILE_RUN
2 v1 s" M: v# H! }
5 r1 b( z& v q$ h4 Kcomment it or simply* M7 k+ s- N- q/ G
: e& J( Q2 n9 m* Y$ W
//#define __PROFILE_RUN
% u1 P; F& T6 {- i# P3 \( |& {3 H1 @; {' W( Q% k
* ~) [+ o% a9 C8 Z
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投寄。谢谢。我添加更多的很快如果你有病加太 1 T0 B7 d# F6 p
|