|
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
l) b2 S S: `) A% Q) I; u" echange level without Rebirth
- L4 f* R' S7 l( O: Z$ q: E
; b* ~6 T4 K3 J8 r c# z' w& @Now, let us begin." j- I6 B+ @: w- l
+ {0 S. w, F& r6 t
Requirements:
. ~& k k. X0 r( f5 v5 f) LSource# W0 T+ v: G N: f
Notepad / Editor0 p- B2 n- f' t3 y; p+ k
. s+ K, _! Z3 }2 E/ / Tips by Sedrika
r- N7 O" | _7 b- @6 P2 f
1 G, ]9 `# y* h9 J4 ~It is up to you how you do it ^ ^
- i U: G. I' h( }
4 @, d; ^( X; O' Q5 QGo into your source folder and open the definejob.h
/ x x. Y4 `8 i q" v' wSearch there for:
) \5 b+ H+ H2 e* C' Q6 v G6 l$ ]9 Y6 i6 D2 P$ \+ z
#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå
0 J1 e( ~* ?/ k6 O' i/ M- ^$ {* I, O1 b#define MAX_LEGEND_LEVEL 129" \* n6 U l$ c: ^1 R; p3 P" ?# ~
#define MAX_MONSTER_LEVEL 160' y3 x/ h% y1 v) {& L4 K8 I+ r
#else // 15Â÷ è÷¾î·Î ·1o§è®àå
4 U' M2 E& Q9 T$ }) b4 q; G' H. f0 d#define MAX_LEGEND_LEVEL 1216 I( n1 n% H- {. K6 \/ H9 a8 c
#endif // 15Â÷ è÷¾î·Î ·1o§è®àå
7 u7 Z# ]7 B: L3 v: ~
/ L0 y' [$ ]% g# X. Z$ u1 _1 U( V+ u6 a6 V C* ?7 [3 C; x3 G
Red: Player Max. Level
8 w3 ]0 `6 _6 w% Y0 mGreen: Monster Max. Level; E8 U: E% u: ^$ a2 t# O0 q( M
7 m: O$ h" S4 f% Z. ?% s/ PThese changes as simple as you want.9 x% \ q" g3 W
: l& [5 k5 @8 {, M* Q# k8 O
Then you have to just recompile the World Server Files + and make your clientin the Definejob.h the same changes as in the source.! f( @( q2 d$ x+ J2 W6 _( g- S
8 t% }1 J% B4 M3 c. Y' j! O0 n. _
Part 1 of blocking CE
1 p# W( w! z. q- Q4 g/ l& T9 i! X8 {! m l0 ]
In this tutorial I will show you how to change the Head of Mark flyff.
% b& m* t. v# Z, V9 {The current Head Mark is well known, 5E, which results as a string ('^').. u/ h5 u% n& T! Q9 X; I) U
' y8 D( I W0 M8 m
For this we go to the World (Project) and looking at the Buffer.h after thistext
% j y$ Z% T" u8 k& \: @Quote:/ y8 B1 N0 g- e+ S, n% t: H
# Define HEADER MARK '^' / / Normal messageheader
6 S3 f& R1 y: ^# Define SYSHEADERMARK '%' / / System message header( A [- S( u7 T0 C4 ~
What the Sysheadmark is looking for is not even the top 5E.# p, ~* r, a: {. d5 w; V* T I1 m
Change this and it makes the CE Not work on server.
% d2 j Z& k! O% ]$ j" e# { w. L* W
: Y- @; a# L5 G) E3 oThen Tom's anti-hack is no longer useful.: a1 W5 ?( i$ U. m
6 W: m: U: c- X6 w: w6 e7 h7 d: kLG Sedrika
Part 2 of blocking CE 1 t# F( m6 [! ?3 k' h) r3 v; F
9 I( c: C9 B0 o7 k; JIn 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.
" G* u, ~: _2 k8 S5 b3 dWhat does this have an advantage?7 Q' L6 V6 Z' {
The editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself
0 l3 W9 l# w8 y+ |1 A
) V, x" y. B' d- s. _+ Y- W7 ~8 w0 x2 d7 t; C& b" T6 |
First you need to get open source even know how you do it, is left with you, andyou do the project on the Neuz.
2 s3 F4 S5 M2 t" Z) B
. a% D1 ?. @" Q( g5 u1 QThen search for the following content in HwOption.cpp
6 u, K/ t" s' _
% ]* J- \# G8 M
. z7 k: k" I( s$ ^& |4 [if (scan.Token == _T ("ip"))& u1 }5 @: ?4 C0 G3 J3 m
{# V c" K3 ]) h
scan.GetTokenEx ();; j9 e" ~& |: [7 e' d9 ]0 p9 Y
strcpy (m_IPAddress scan.Token);
6 K% b6 K4 L7 I0 \' \ |0 _: f}7 t, o" H, E& C2 Q4 P' e3 m% {
and turn it into this:8 c6 a* b# }/ t3 W% ?' U
Quote:
, G; Q4 Z: E0 U% }7 vif (scan.Token == _T ("ip"))% B) I8 [- }$ h {) s4 O7 E
{, w2 m8 ]" H" l& f+ P5 C
/ / Scan.GetTokenEx ();
7 N, _: \& s5 A# J- z- F/ / Strcpy (m_IPAddress, scan.Token);( x9 C$ ]# Y6 V8 U) F; F# H
}
7 T) m, H! m* u) TAnd you created the solution.
9 O, V. [& d @7 p
* T+ E A( q/ h# r/ G
9 n2 C7 T8 P, a) @Then read the Neuz not the IP from the INI anymore. even if put in it1 ^5 C& P+ Y$ m7 f
) A" C* L9 i9 ^" M
Max skill's
! N: d1 v- }0 A; ~6 U0 b1 Y+ Z4 b4 {# e# S0 @4 q) g# v' x F
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
- N- t( s1 n! k2 W3 ?4 D: c1 r1 {2 u% ^
With the TUT can provide the remedy it- k) [/ ?4 I( d/ D- | F
f2 z. U& Q; f6 i4 X' B( [
# 1 opens the file SkillInfluence.h E/ b! H% v. c8 ?" G
# 2 Search
- D- c- a6 u3 X8 U2 A0 ~6 C( GCode:- C5 q. x$ e6 x h+ h$ L
2 b5 U8 d$ d4 {# Define MAX_SKILLBUFF_COUNT 14- F. m' Y [9 M3 W6 X2 p: P8 ]
- z. D2 L, v% b' y# 3 Change the 14 to your number (eg 21) and save it from5 X" x0 m3 S5 W: |9 v
# 4 compilation and ready) @) S1 T! H* b6 |0 ^, F
' L* A( J( ~& ]9 j: k5 |* R
5 W. W" Q8 U% S% L
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:
/ B6 s0 n4 {2 @, V2 ^& d) c8 }1 Y, E& ?9 p& x0 C( @
dennisdra
* S, _+ w( `+ B- C t+ j" ~9 K& b.Crasy" j; g% P. x9 s% O+ b/ n1 l0 I
©ross
: n! B, |8 q% o1 ?8 h4 ^7 t4 M: ]Sedrika
+ Z: k- Z) X/ A# m! P, w' k9 u* I& V p$ [& u
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!
% `+ W5 B# U; j- T, @2 h! ^: d+ x+ `3 G- F' E6 G
P.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less
9 t; W1 {/ q+ S# Z1 A2 x
% D2 T/ t0 g7 H L
1 G' g" x L* U0 D4 IUpdate 1:
how to turn off "Profiler" in worldserver.exe $ r( O- Y" o% A& W$ i( o! ]# y j
. [! `! r/ t5 T! A+ G, [% u3 p
1 \6 U. |8 x/ p" G- K c, ?% \6 y
in VersionCommon.h of Worldserver Solution' ^& G1 U$ c& Q
Look for
# I1 b; _0 ~# r8 y2 P& [& ^+ u2 Z1 B7 N- P" {9 D6 T# b( {
#define __PROFILE_RUN
/ S: p' \# o9 b8 f7 w2 z {/ O4 w" \( ]! i% N
comment it or simply# J* B$ ?9 q3 n8 A r: Y7 d
4 Q8 r+ ^- U* M: L% S7 w4 }$ z
//#define __PROFILE_RUN , J* c4 F8 o# e* f7 W6 h
2 s5 a& {+ w& \6 e
+ B( B* v1 f# C5 A% v& P5 q. ^
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投寄。谢谢。我添加更多的很快如果你有病加太 % M. q) }+ U2 J6 B9 S
|