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 @5 y& {! z- W5 P, D# ~9 Dchange level without Rebirth: M9 ~; J \: e$ a3 D; j8 u
$ @% ~& y# C8 L6 l# B3 S! q6 F
Now, let us begin.
! f2 ~4 ?* U; d h
- A) f9 }& `% D5 [Requirements:
& e; u+ M- X6 z, u; nSource
; g7 _% L7 U" ]/ _6 s" J0 mNotepad / Editor/ X0 u- W/ T6 l
( h0 N9 ^4 P, k. H2 _- s/ / Tips by Sedrika
: e% d% i: y2 n7 F9 @ U( A1 s0 v9 R4 q
It is up to you how you do it ^ ^% f; H% U7 K- { n4 q% h" K" D
- | U. s& Y/ J# [
Go into your source folder and open the definejob.h
9 u+ i4 J1 k( n2 `Search there for:" H* x, K# x4 A
) f" x9 _! w8 h
#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå9 z% f: T* s* w1 q4 l" y( X6 x
#define MAX_LEGEND_LEVEL 129
7 d* x% m7 Q: ?! C#define MAX_MONSTER_LEVEL 160* n: K. N2 C. Q! X' W9 K7 g: |
#else // 15Â÷ è÷¾î·Î ·1o§è®àå. R' V2 B7 u6 u9 z
#define MAX_LEGEND_LEVEL 121
. n3 P1 k/ u2 X) h( g9 Q2 h4 W#endif // 15Â÷ è÷¾î·Î ·1o§è®àå ' K6 I% A6 C" J! L- ^2 s
. N x1 C8 V# V+ F
- n( u0 Y. K6 x! W% d ]( J1 ~
Red: Player Max. Level
+ L. I% a/ ^ ]$ b. } q/ j7 K5 T. hGreen: Monster Max. Level
; T3 G- g6 n! [' ]- B7 c y; {8 o! y/ T* W# ]' E; d! Y9 o
These changes as simple as you want.! }! C! ?: m1 _+ c- m
: V/ b* [6 e3 u% b- C. j+ F1 j3 WThen you have to just recompile the World Server Files + and make your clientin the Definejob.h the same changes as in the source.& \! u" ~$ z0 L6 @: D' V
2 h, m$ T v' L2 x- t) ]% d h( Y
Part 1 of blocking CE
7 L4 r2 N4 |, `9 ^2 o
6 I# b9 X9 E0 J7 E% r1 @; [' kIn this tutorial I will show you how to change the Head of Mark flyff.: n: j \7 R1 ^
The current Head Mark is well known, 5E, which results as a string ('^').: z, V- ? I8 i- A
( @ F6 q. W& D+ U4 ~9 [For this we go to the World (Project) and looking at the Buffer.h after thistext3 I7 y6 `7 r' N' A* g2 }
Quote:
) E9 K% k! n- \6 H5 C) }' k& ~# Define HEADER MARK '^' / / Normal messageheader
4 E/ Z5 d+ i F8 v ]# Define SYSHEADERMARK '%' / / System message header
% N9 M5 _4 ~" H* n: O0 z: JWhat the Sysheadmark is looking for is not even the top 5E.* e1 I# u: @# [' ]: I* u$ ]
Change this and it makes the CE Not work on server.
0 f8 H5 \. G; [% O' S1 w/ v2 ?* n7 k6 n, ]2 \# d7 d/ s
Then Tom's anti-hack is no longer useful.# Z% c( H+ ~, l5 F3 R+ J: O
5 y9 i+ R& v, ~2 H5 t9 [
LG Sedrika
Part 2 of blocking CE
5 B5 \1 l2 R8 X$ A- u5 K R( O/ P$ ^" k8 K5 p
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.
" I9 _- K$ v. d1 i2 W% Y8 ^What does this have an advantage?
3 K+ k" z! z" h# S& A+ m6 O$ d6 P6 VThe editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself ! c) Z; K3 q1 [4 K: n0 h0 i
! T2 Z0 w) @) X: W7 u2 A3 J2 L" d# `; m: z# W" j
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 o" e+ D9 Z' f1 d6 Z: D# O( k( p( C0 Z' E( y
Then search for the following content in HwOption.cpp * x' S$ @# y$ K' d
" c( Q# h. f( ^2 n6 ]
3 \1 F; y, \1 [3 J5 Y8 I( D; [if (scan.Token == _T ("ip"))/ ?3 \, E' d$ B, E; Y
{
" z9 c' J: e0 R# u; `0 W G1 C3 _scan.GetTokenEx ();' d/ R* j4 \ E2 P4 M- K" K* D0 Y
strcpy (m_IPAddress scan.Token);8 F7 a3 X+ P/ Y' z5 l* ~) M- A
}
5 I- c9 I2 d W \! x" x0 fand turn it into this:
4 q) x5 |& c' v6 s _% sQuote:
/ z! A: T( H2 W$ `. ~& v6 ?if (scan.Token == _T ("ip")), r- N. C! R( x8 {
{
$ \9 ^+ C: y- J/ / Scan.GetTokenEx ();
' _* y) f) W" @/ / Strcpy (m_IPAddress, scan.Token);
/ X" O( `. o- i: w4 \4 D) i4 {}5 R% u5 M( ^! T1 J0 q
And you created the solution.% |+ C1 H) d# N8 n. e5 O. I
7 ?& ~" S( J# J! F$ t$ O# \6 G! ^9 Y% I L2 w
Then read the Neuz not the IP from the INI anymore. even if put in it
8 |' G3 R9 Q/ o2 F1 n1 r, I: p
- ]( ]7 s" H7 U/ @: I4 f
Max skill's
5 m4 w. m8 `) p5 I6 Z8 _, ]4 ]: Q5 P
9 d6 {, w6 o" n2 }) vAll 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 i! C$ s7 L( y- a8 h& J
. n0 a* h8 n6 zWith the TUT can provide the remedy it: K( P, R9 Q. N1 l
8 V' p* @1 w: g' F: |# 1 opens the file SkillInfluence.h1 G* u) }0 N- I; e" e" X- b
# 2 Search4 {$ S! z, C9 M O7 p+ l L
Code:3 B$ m+ R% c) A8 s- u' L
( h* x$ G* O. k6 q9 P' }
# Define MAX_SKILLBUFF_COUNT 147 V( ~% ? y8 i _4 \. o8 `
, [( O/ \: y8 H0 ^+ K# 3 Change the 14 to your number (eg 21) and save it from
2 C: x: _' k& a; k! P' P# h: L, K# 4 compilation and ready
& d: L6 P, R7 i) ?7 t4 s
5 c# [5 W1 x+ q2 M; X
# `$ m3 V3 d- L6 K$ p# t2 M+ UI 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:
0 k: b2 E2 C& M) ]* N7 b. M: T; E9 o0 R( y* w! h: ^8 h! C. z
dennisdra
: ^8 k! v9 e3 O# l1 r. |3 Q.Crasy1 K' X- z8 V* e# G# j, N
©ross! x) q ^3 l" t- ~5 b3 e j
Sedrika( \& i/ U( m$ q' j8 |
8 O- _5 i1 V% A7 B! q* l e
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!
( s }$ m' g3 `/ r
: T( K. S& k' \8 ?P.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less$ T) } e- ?; N: O$ t E @5 z
! U/ [# @& d) M) Z# ^2 I' j
+ Q) ~/ ~7 `% f# b2 KUpdate 1:
how to turn off "Profiler" in worldserver.exe
& W! }; a0 G/ M2 T c0 ]
2 D: G: m1 C* K' f8 j
! h0 p6 K( ~+ O2 V1 \" P- g. Lin VersionCommon.h of Worldserver Solution
& a" `, a* n( QLook for1 W/ H- q1 k6 `% ?9 C* c8 \
) X' O# _0 k& H$ d5 ]" _) h. |
#define __PROFILE_RUN
% L: z" o6 E( T- l9 x) C0 |
3 W5 R! c% C- }) J N4 Z n6 y9 Wcomment it or simply
' _( }' q2 s/ d* f3 w4 f7 ]1 \
//#define __PROFILE_RUN + f/ w* K3 q2 A9 U5 F
, {2 N* Y* G- B2 R- @0 p% k) S/ y7 C7 ~4 G7 d v0 D6 _) j
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投寄。谢谢。我添加更多的很快如果你有病加太 7 a/ f i3 A7 \# I, T
|