|
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
& N$ D: c+ z d0 E6 Q3 o o; \, schange level without Rebirth
- y% ]) v, t' i* k8 I: Q
# d* \( o; i4 D) BNow, let us begin.& h/ d! m9 K$ K- X6 M- _
3 a6 I# e ?6 x
Requirements:
4 N$ C7 r8 s% Z$ ]Source& q% j/ U# D/ t. |* k
Notepad / Editor
5 t7 ]1 b9 N( Z+ z- Y. X- F
6 @8 f% ?/ s5 t1 d7 L/ / Tips by Sedrika5 ^. @: `5 U% T7 T7 }
: m$ C$ ?! e4 g0 V9 U5 _- ~( u3 mIt is up to you how you do it ^ ^3 o+ ?$ z' U: z5 @( B) V
& g! Z9 V7 Y DGo into your source folder and open the definejob.h
1 p6 L5 A6 m/ Q; T# g/ G% P+ YSearch there for:
# Q; x% H1 q: y
" v) {7 t4 [0 q* | ~$ c* K#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå
% {& y' ~: m7 x# q0 N( a#define MAX_LEGEND_LEVEL 129' y3 k9 v1 N/ C' v
#define MAX_MONSTER_LEVEL 160( j1 j; }: E1 D6 U6 N) p" y8 ^8 {
#else // 15Â÷ è÷¾î·Î ·1o§è®àå
, F Z& H% X `: W" Y0 A3 s! U5 |9 l#define MAX_LEGEND_LEVEL 1217 A/ d% h0 M/ ?% E" e$ U$ p
#endif // 15Â÷ è÷¾î·Î ·1o§è®àå
- m( r; _, w Q# j& }; }2 Z o$ M5 H- `' T* K8 N& Y7 v/ [, e
7 G0 E3 L* D9 A* R
Red: Player Max. Level1 A% X: d' C: h; |# S' q# Z: i4 w
Green: Monster Max. Level
, o* I Z4 f3 l4 @ B1 U& v! @0 S% F
$ q, L4 O: M9 Z" w4 t! ~) B. \8 q8 IThese changes as simple as you want.
7 W' L& O7 G! f7 t) v3 E) B2 {6 D" B5 Y* V- t$ N$ `6 O, 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.) Z+ @( u" ]4 E" t. h- D3 k
8 P$ p5 [9 Q$ |# I
Part 1 of blocking CE : D) d! V% f! N& _. ^
E4 R' Z" ~+ ]: ^2 w$ }* g! ZIn this tutorial I will show you how to change the Head of Mark flyff., V8 D O; e5 Z( V! a" p
The current Head Mark is well known, 5E, which results as a string ('^').7 R0 D9 D1 d8 X2 w
, d8 d% P* m x# Y" ?For this we go to the World (Project) and looking at the Buffer.h after thistext5 H7 c4 u. z! H6 j' f
Quote:0 m$ D) ]: u3 l3 V$ `) G
# Define HEADER MARK '^' / / Normal messageheader. U* t% t5 W+ e+ `# a) f: F
# Define SYSHEADERMARK '%' / / System message header
b. B( a- {9 g# T& dWhat the Sysheadmark is looking for is not even the top 5E.
; |/ |& e, s* f! vChange this and it makes the CE Not work on server.* F) \! t8 g4 R: L* f: q: K5 k
+ I& L' v4 H+ ^) w/ l' |3 i# ]
Then Tom's anti-hack is no longer useful.
! ]2 c$ i9 m3 }& u8 W1 Y# o
+ i; h" D! B) ]" a6 j) U7 y' cLG Sedrika Part 2 of blocking CE
$ s# x& B2 b) W# g% d7 n2 M8 K2 B( o4 F8 D- R( A
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. # Y; v1 f# b2 c0 H
What does this have an advantage?
N- M$ g; @2 wThe editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself 7 n+ U, _; g# R
" |7 e4 s3 W6 i; Q) s4 o% c1 V7 m. k$ ^
) d: O; x! ~" E: A2 wFirst you need to get open source even know how you do it, is left with you, andyou do the project on the Neuz.! f x2 D. t% b n
# T4 N! x# Q/ g0 J" J2 HThen search for the following content in HwOption.cpp ( o3 G1 S \0 c/ M0 R. i) g3 H
/ `" n% f# p2 Y) e' { W
6 ^! S- v8 |% Y! [- F! Sif (scan.Token == _T ("ip"))2 H- b' |4 L6 w' W! y- U" O
{
; m$ T0 X- Y4 d, }& gscan.GetTokenEx ();( [1 n p6 u: x7 f( r
strcpy (m_IPAddress scan.Token);
J7 d3 c; ^- P" R}
. w6 b# C" b! yand turn it into this:1 D% @0 S& @3 M" p, E) l% P. L
Quote:3 \3 O a* [. B# P8 U
if (scan.Token == _T ("ip"))% R4 v; l6 o+ Y; j5 J- T6 p: s) s
{+ }6 D# E5 P* b/ j/ ]
/ / Scan.GetTokenEx ();! O% M8 P- T+ Y4 P6 Z, w: @# F
/ / Strcpy (m_IPAddress, scan.Token);
9 s& |- ^6 E3 V& R/ R$ ]}
( H) D& A# z' H, X- Y# l ?4 JAnd you created the solution./ J4 ^% M- e; I# Q+ {) ?
6 v, ^( n+ {- ~- c, c6 w+ O' H
3 b+ J, H+ Y; P: @, K( o) G& @. V! Z, cThen read the Neuz not the IP from the INI anymore. even if put in it
. e' Z) V3 h7 G+ ^3 S7 V: ~+ c7 @
Max skill's , W3 y g$ F# A* K: N* M
; I0 D) M* R( v/ C, \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 + x+ X- |8 N3 t
6 s2 x7 f* D% `
With the TUT can provide the remedy it
6 K+ a/ I6 p9 q" W, r- l1 H" `% k+ J1 R4 n
# 1 opens the file SkillInfluence.h U8 w( `- u( x/ a8 j
# 2 Search
) p; Q+ r' Z( u+ c% O3 ACode:1 p; u' E7 B$ m( t" e* m$ |# q
, v- v! }1 ~3 {* `# {% i! Z# Define MAX_SKILLBUFF_COUNT 145 n/ B) M% X b
s! i% J' t# Q) m$ E3 U# 3 Change the 14 to your number (eg 21) and save it from6 y+ ~+ |# i# I3 A
# 4 compilation and ready* d, Y7 u" ~3 p, w# q" p' E1 o: R
`( y! [3 j* T$ N2 ~+ x( i; X
P1 f- B) E% `- }7 q' [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:
( g+ z* E) w" s9 X$ W4 L& f: e0 _5 E. d/ ^+ s1 [
dennisdra
; i1 G% S+ e) Q$ L6 ^4 T# Q.Crasy6 D% s% q% u6 `) `- A
©ross
" W8 L# i( R# c$ [# G) FSedrika( Q4 f D$ ?4 q- b
- k4 E* y& e% q; ^: b
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!
7 e) v, f7 ?( E3 C' {. s! ]8 w
7 \5 @5 h8 P9 {* A) \! a5 Q& s7 G$ GP.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less
& S% B# D+ X: R$ K
8 B6 M# p& A! e( z2 U) b7 x1 D! c( H$ t3 |. r
Update 1: how to turn off "Profiler" in worldserver.exe
" x7 w/ X+ Z8 r: X4 B
& Z, ?: r3 e% L+ B0 P( _
' G0 p4 d( `0 t7 W; {2 _in VersionCommon.h of Worldserver Solution2 j8 ?2 \. W Z0 n3 c
Look for
5 y" \1 m6 |7 x/ K8 W7 N) _) D+ i* m
#define __PROFILE_RUN: T: f4 q, s: h |9 X9 V
/ T# q, @- n6 r% qcomment it or simply1 k1 R- q: B% d4 C# m
3 {6 \ _; Q# y
//#define __PROFILE_RUN
( `9 L9 n5 ~0 {$ h5 O) K7 B8 Y6 t% j, M( s& O, Z
0 c4 }2 |+ i3 t) S; acredits 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投寄。谢谢。我添加更多的很快如果你有病加太 9 j5 ~. f; w- | v' o& O0 l- f
|