|
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
( S. m, G: x% ?8 S8 Dchange level without Rebirth
% h! C. @/ P( V8 s$ {/ W, ?
) n3 M7 s* S( y9 G* H% FNow, let us begin.8 L' @4 W4 F8 J* Z- l
5 L% L* x& r% wRequirements:
- Y# b+ c: n, W+ f& O5 y& K" ASource+ z- Q- _4 O3 |( D6 ~) ^5 Q* U
Notepad / Editor
5 g3 v( S9 a8 K& l+ c% P8 B
) J8 U: Y3 B. @& f' L+ p2 R, y7 o/ / Tips by Sedrika F+ _8 \5 p9 A* _; K; s6 e
2 a7 f( k* y5 G5 Z4 r# \1 cIt is up to you how you do it ^ ^# U1 \( L, W! {
; _" G6 Q. s9 K0 u8 g1 t
Go into your source folder and open the definejob.h
! ~, \4 E5 C8 p% m# R+ q) j& jSearch there for:7 n U8 D W" @5 }& C' A
7 r6 o# j9 i! H) x$ a. C3 x8 G#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå( Z% \; c, D- M- I5 P1 N
#define MAX_LEGEND_LEVEL 129; b( j. q2 g* ?8 o6 ~4 f4 C
#define MAX_MONSTER_LEVEL 160
* v& L$ I1 | O1 i6 ^#else // 15Â÷ è÷¾î·Î ·1o§è®àå
. ]. T6 Q/ G6 c# _#define MAX_LEGEND_LEVEL 121
4 J2 t! `7 G. j/ m: b#endif // 15Â÷ è÷¾î·Î ·1o§è®àå ; |! t5 U. g/ H7 C8 H4 j( S# h6 _3 x
% X* C+ b( g- e7 ~+ c# x M5 I! D" b ?( a$ x, W3 z' X
Red: Player Max. Level
4 C- c2 S) R/ I4 K: a0 D3 T8 eGreen: Monster Max. Level* x& e0 h# r5 D5 _$ C
5 Y* S+ F3 a/ A( @- |These changes as simple as you want.; H( Y$ R8 E" { [5 `- u& x% D1 @. z+ a
8 ? [. B( ^( F3 J. F* @Then you have to just recompile the World Server Files + and make your clientin the Definejob.h the same changes as in the source.7 _( Z# K+ H- Z% e2 i5 I
: m# o2 I' f- |
Part 1 of blocking CE : B H3 e D S) k+ I% D8 d
. }' w* |7 H' d" y( `: u! e3 j/ y7 o7 }
In this tutorial I will show you how to change the Head of Mark flyff. M* T) E( o" c) h
The current Head Mark is well known, 5E, which results as a string ('^').3 j, q: i/ U" B _
/ B( z( N' P! s% P4 l3 ]! M
For this we go to the World (Project) and looking at the Buffer.h after thistext
; y, b5 {* I. xQuote:8 e7 p# u; S* K0 U5 t. H
# Define HEADER MARK '^' / / Normal messageheader
7 [6 }& V! [4 e5 p' Z& q; T/ w# Define SYSHEADERMARK '%' / / System message header) _, u6 T* F( N7 C) D
What the Sysheadmark is looking for is not even the top 5E.
" p; X$ X/ g8 ~4 }" sChange this and it makes the CE Not work on server.0 _6 Q% i8 R1 t9 n) w9 q( [
& E7 c, H$ q# M- z
Then Tom's anti-hack is no longer useful.3 M1 b- z t2 c1 i1 E' s
0 T6 C* W& f' l8 _' M1 f) @# _
LG Sedrika Part 2 of blocking CE 4 I9 t0 x2 a; t8 c- z$ Z5 @
' V6 B$ _$ U# F( Y3 R$ v
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.
3 s& A- d H/ y( f6 M2 b* J+ E/ DWhat does this have an advantage?
. m( d7 }( l% v5 x, I) VThe editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself 1 j# L0 _0 c/ ~6 s7 A" n& t$ T. q9 M
& k/ @4 c8 e) X# Z9 A; ~. r/ e; G3 B* i9 d
First you need to get open source even know how you do it, is left with you, andyou do the project on the Neuz.7 j8 t+ d7 n. G7 a* a
# X+ f* ?; ^: L6 _Then search for the following content in HwOption.cpp 8 d6 R: ~' ]4 ]. T
+ p5 z" y8 x# `, d5 ?. v' I) X
0 B8 s- \9 l' H$ Z9 ]if (scan.Token == _T ("ip"))
4 q: K& w; G( n& r% Z{
/ I2 V! w. ~6 K6 \scan.GetTokenEx ();$ u# i' `4 r6 U/ K1 u( C8 A
strcpy (m_IPAddress scan.Token);
6 b! l: g% \) W& A3 A}- S3 r, h4 e) }- X
and turn it into this:
" o8 P. E2 _7 I% c8 [% m& pQuote:
. P7 X: {6 q, m3 [if (scan.Token == _T ("ip"))$ d% _. B+ }. X& B7 }$ O1 w
{! h- Y* V& c4 C. p( R$ w# r5 \
/ / Scan.GetTokenEx ();
+ K- _( o7 T0 b5 \, o/ / Strcpy (m_IPAddress, scan.Token);( e/ A5 L8 i, E6 L, H; L7 }& z' |0 r
}
8 F0 ~8 H I0 m. x' @And you created the solution.
- e# n4 g# n" N9 a; b
' [. z1 ^. M0 p* x" e) [& Y; _+ K, ^+ E" q+ Z
Then read the Neuz not the IP from the INI anymore. even if put in it
: `; }; Y! w1 U; D( r7 {: R
4 V5 [( b, @! R5 ?1 w7 o Max skill's
: t) G7 p9 S3 J( @$ w
1 O d7 M( \/ v; f! m1 P- iAll know that, 14 Max buffs, you get all the RM Assist Skills + Skills fromBuffpang and no more space for the YJ, Knight, Ranger etc 3 P2 H4 s- [9 Y' O( w* p
3 {" g8 x2 i$ R9 K, {( W
With the TUT can provide the remedy it7 Z. F5 ^$ K/ q$ E: l9 M$ D$ V/ d
m* g# \9 L' h1 ]8 x1 q1 l
# 1 opens the file SkillInfluence.h. u5 j0 D1 b+ K! `# p
# 2 Search# F/ {+ ?/ E" D6 S
Code:
. u6 {' D( @8 U) p1 ^* h+ }) I# x+ i* R, y; m9 \
# Define MAX_SKILLBUFF_COUNT 14: J5 B- }2 @( v ?
& K1 ^, V9 P% h; w1 t( \% B" h% p
# 3 Change the 14 to your number (eg 21) and save it from" Y0 C8 L I4 U: d5 K, K
# 4 compilation and ready
# \: F8 t) Q5 j3 q( x: A; Y" c6 G1 O6 F6 _9 Z
( X% `" h' S7 O
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:
4 F$ U7 h* I6 h& r% d2 a3 A- ?, {( d% e
dennisdra) p- ]: s5 Y) `/ V; N% e& F# `- v
.Crasy: m6 e# H$ o$ g
©ross; ?. ^$ k+ i" e
Sedrika
6 V8 D% M7 i! P+ `
$ U0 i7 f7 P6 r1 r' z- Z# Q& g2 Geverything 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! ' p& y- y; \* Z# n- W, R
t' [& {/ K% eP.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less
. r! B8 X6 `3 Q2 n9 }2 L9 [ }+ E5 r2 ]3 B+ g" B' d" z
8 {" N% t2 R$ _2 s' TUpdate 1:
how to turn off "Profiler" in worldserver.exe * M u8 v0 l1 @7 @8 h
% T7 t D4 a, ~" `
7 u$ x+ d7 g* g% q' Kin VersionCommon.h of Worldserver Solution% i( [- [5 k+ H3 ~0 J6 _
Look for
# V' l% Y" s) I& V$ ? I" ]
+ E1 i7 B" |; F, } h6 V! }#define __PROFILE_RUN
5 C4 B3 {2 U) ?8 l, m
' w, \ n* C- K4 v( t, v5 t7 D1 [0 N+ V; Bcomment it or simply$ r [$ E/ a0 @4 t4 ~( @0 P
# V* Z" N1 ^! l9 q% z//#define __PROFILE_RUN
7 \9 f- m F7 m K; k+ i
q, o) F4 J9 k2 g% n! b2 \% J4 K8 f& a: w
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投寄。谢谢。我添加更多的很快如果你有病加太 & f3 w9 D" a$ H V
|