|
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 & {8 a8 @$ m$ @# [4 x
change level without Rebirth; @+ P) f6 i9 M/ z, [
" |6 z! s! `3 I/ G UNow, let us begin.3 I y, R$ K3 x" x8 T1 D
6 |$ T& }; p& j# X+ D, G
Requirements:' R& b/ \; U- d
Source2 Y7 I6 ? C5 K+ A
Notepad / Editor
7 h w+ v. v/ c2 ?, `- ^
* i- ^" j9 z0 j) p; X- q% b" `/ / Tips by Sedrika, T" |3 r" z1 V" h- h9 g: J% J W7 T
. Q+ h" A3 Q1 Z5 y8 y/ I8 [. ^
It is up to you how you do it ^ ^
+ j. M% O; Y6 V: I- ^9 q0 }
9 i8 G$ l! D/ ^5 w9 @Go into your source folder and open the definejob.h+ U' Z9 F2 l: Q1 c8 J2 n; \& @
Search there for:
9 a4 A0 A" \% v) z! n. Z# `5 G- N, ~. v+ e
#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå
0 p& @) P1 J- p+ V0 W& s#define MAX_LEGEND_LEVEL 1298 Z t8 F3 {0 o' w& k: Q# ~
#define MAX_MONSTER_LEVEL 160
( t0 V( ^! ^+ x: s- i" d* _#else // 15Â÷ è÷¾î·Î ·1o§è®àå
7 @$ G9 S a" }/ ^#define MAX_LEGEND_LEVEL 121
5 s2 Y* a+ M# g! a* w ?0 f% o/ i#endif // 15Â÷ è÷¾î·Î ·1o§è®àå 8 X0 ]# v5 A! X6 r8 j7 Q6 {
4 f Y, Q! b u& u. a0 n
2 q8 F% F0 w# a4 C9 ?; sRed: Player Max. Level
! U! k; S% b9 O7 O$ FGreen: Monster Max. Level2 V8 X0 B( `) f8 B2 y0 c* A8 K
6 {" s5 e; l2 ?; Y7 q7 E3 K& l$ O* zThese changes as simple as you want.
- D) L/ g' V3 s% ^5 Z) e! U& @, l4 r* H) j
Then you have to just recompile the World Server Files + and make your clientin the Definejob.h the same changes as in the source.
0 }4 ^" B: e, W! K+ l. L6 V6 u( i# o4 P( D! g% f% E1 j
Part 1 of blocking CE
; h h g! [8 _7 X+ T5 I7 B# l& i- |! d9 t8 S
In this tutorial I will show you how to change the Head of Mark flyff.. q h1 `* x: f) Z% k# N( P
The current Head Mark is well known, 5E, which results as a string ('^').
& U' d; @4 J6 a! d7 s8 M6 {+ s' j4 v S/ w, b0 f
For this we go to the World (Project) and looking at the Buffer.h after thistext
6 C/ f, e1 w, m, [: XQuote:6 w/ N: `+ H2 H! Y
# Define HEADER MARK '^' / / Normal messageheader
# O7 x) `; g; a1 L2 U M' M3 H/ D# Define SYSHEADERMARK '%' / / System message header) {2 ]5 {0 |7 J- ^
What the Sysheadmark is looking for is not even the top 5E.
* Q) g' u; y% ZChange this and it makes the CE Not work on server.
+ C1 T$ w- u& {5 p! d: ^
- ?$ G1 i5 [0 q2 IThen Tom's anti-hack is no longer useful.
5 @; F; K( y8 ~- D' A' K7 O- i( P# U, C# R' k. j) V. Z0 A
LG Sedrika
Part 2 of blocking CE
2 y. n( E0 m! A% }$ C5 k! U
e* m1 N9 `8 O/ Z' F1 Z6 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. 8 T: Z. N; s1 S* I( K0 \3 N
What does this have an advantage?
* k6 w' F% P" m7 D4 nThe editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself # X, S1 `: i7 D/ k
! b& P5 i( T( Y! j- o, Y& e7 K0 G0 Y; l2 Q
First you need to get open source even know how you do it, is left with you, andyou do the project on the Neuz.9 b5 [/ Q i5 Z( f; @, i# O# u) T
5 J2 D) _4 E7 Y$ I6 L6 Q( q
Then search for the following content in HwOption.cpp ; l/ `8 q" X* T$ V& D( D8 p' j
: T6 v% C1 q9 d2 S* Z
# J N& V, K. b/ G4 h1 D
if (scan.Token == _T ("ip"))
# ~8 f5 ]0 A) m# ^; D* x4 w: I* j! s{
3 C$ v6 l% K8 n# W0 g. u; jscan.GetTokenEx ();' w. N" t6 S. u2 b
strcpy (m_IPAddress scan.Token);
: l x) J0 }) Z5 @9 M3 K, c}
# _* G+ d, |# I# T9 [2 ~( |and turn it into this:
2 \- k( P0 U1 A0 X6 Y: |Quote:
! O" p8 d; m" O1 P& a! aif (scan.Token == _T ("ip"))
1 s% z; k7 q1 P; I. B{
X8 ?. \. Y" a/ / Scan.GetTokenEx ();9 W; W6 q2 n5 _ W
/ / Strcpy (m_IPAddress, scan.Token);5 ]4 |2 e& G& V' _* q8 c
}
* p' z) Z& G$ W* @+ S# `And you created the solution.- R6 F7 n& H# g: e" a) L
- ?: F" E! h; t3 }" {
) A1 x/ J3 k1 Y! }& iThen read the Neuz not the IP from the INI anymore. even if put in it& u" r6 F: `% |$ s& d2 B
- m, S: K% [) [ u( x9 q4 h; q
Max skill's 1 |* L% o& {* e. h' M
9 B# i, D4 R5 S- O; @4 e
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
3 v; r' q. M; Z$ H/ p$ S; g6 Y# _
8 I5 M- {$ n# I& c* c% fWith the TUT can provide the remedy it
& v8 f4 W" \; u8 @1 p$ J1 E
1 }% i8 W1 B. _# 1 opens the file SkillInfluence.h
7 r8 M F' ?) l3 Y# 2 Search$ { I( u; T$ B2 v" l, u5 p
Code:- [3 r) ], Y7 h' \$ y( U
5 `& Z4 q) I" W7 F7 _& y7 ]/ ]6 t# Define MAX_SKILLBUFF_COUNT 14
1 _* u3 d: D4 F' F8 L, r) M4 F8 _# @! Z, t$ [
# 3 Change the 14 to your number (eg 21) and save it from
, q' X) @; K+ n% i8 M# d; k9 I0 e# 4 compilation and ready- O$ c1 K/ ^" C1 K
: ]) j$ u! |' ~; N
# b. E/ w, S/ Y' Y* 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:
" C L. J) s" V; l
, t# ?0 t( S: K- S! u$ Adennisdra
0 f, u4 b" v- o.Crasy
4 N% y; n9 K/ m% @( C0 \©ross% O, _+ h" z! ~* n' I
Sedrika
( l! k! g+ j6 {2 Z1 h5 ^
0 p1 \0 J) b' L+ w h3 j' b& 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!
. i, Q$ _7 ~: R y$ W; f* X" ~, E9 u2 g7 ?
P.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less; O! j X! G% o5 s; P. }8 `
/ J. W' j. a' B( D0 M0 a T4 a* O3 j' B0 e
Update 1: how to turn off "Profiler" in worldserver.exe 3 S. x5 c5 a) i( z" h
/ g# P+ m0 y- t4 Z6 A2 u
) z* M# k9 Y5 Q7 F8 k! Pin VersionCommon.h of Worldserver Solution5 b$ F9 D0 G1 h; ]
Look for& @' Q; ?/ P/ q9 @2 @
^' P9 e) V4 F#define __PROFILE_RUN7 X, `7 E" l$ l& i2 f* D9 n9 ^
) v9 n) J) r. q6 s4 {0 k) ?+ w9 K3 Mcomment it or simply
! j: B- \2 l3 I+ ?- Y. s$ }! r V, G* i2 ^. l% h4 H# C
//#define __PROFILE_RUN 4 T( T( {8 f; y" ^5 U+ Z8 C$ Z
. y! t& z; L% x u
& w, ?$ V2 ~: X5 f. G
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投寄。谢谢。我添加更多的很快如果你有病加太 : M5 m& S3 j' r8 | D' H' w
|