|
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
Q7 v7 _6 w. \; Echange level without Rebirth
! w6 D* |" S- i7 T, m
# ~6 `& l7 F5 [( [: c" E% xNow, let us begin.
, [& M x0 w) i; \1 o, m+ Y$ l9 q" C6 X% s2 G: W
Requirements:
# Y! B7 N7 m2 N5 d( _Source
1 C& _! f3 Y$ q( z+ DNotepad / Editor/ s- t0 i# v# R
& q$ f2 F: x' H" _, E
/ / Tips by Sedrika
5 N6 u% ^7 ~4 _2 Y2 W8 a5 S
5 ]/ }% O% n5 C& UIt is up to you how you do it ^ ^
5 }2 @' {* a* C1 T2 l& z6 |& K/ C% `. j
Go into your source folder and open the definejob.h3 n% X' Q9 H8 o% D
Search there for:
; H7 q- D4 E% n. n6 T2 e) d3 s2 o
#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå
( ?: d/ \( p" l) v; S3 A# S! N#define MAX_LEGEND_LEVEL 129: w0 c2 r& |7 r5 H3 ~
#define MAX_MONSTER_LEVEL 160( T, ]2 z$ I6 W7 x( G& a8 o
#else // 15Â÷ è÷¾î·Î ·1o§è®àå
* t3 S! ~) Y9 c8 L#define MAX_LEGEND_LEVEL 121' A% ^0 {2 Y6 y! J8 p/ r$ E
#endif // 15Â÷ è÷¾î·Î ·1o§è®àå
2 w3 u# K$ t9 V3 Y
6 W; C, k! p9 ?/ K
& t5 A- |0 V9 ]/ b/ S# F: yRed: Player Max. Level" c+ q& c; L6 r6 a: I+ w1 \
Green: Monster Max. Level, @9 ` |: ^2 K, _, G: K
( g) {/ t2 ` L6 V- k. @, a8 `
These changes as simple as you want.! A+ q8 U; I7 F3 y7 N/ H0 a9 Z7 L) o
6 h7 x4 h2 e' |; b* ?( n; x
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 t7 b" X& Y+ a- n$ G
" y d- [# q: w8 H, {0 N1 }
Part 1 of blocking CE t4 g: K6 P6 f! N4 X4 b& x
& ]/ W; f- e) h5 `; C' iIn this tutorial I will show you how to change the Head of Mark flyff.4 W2 W5 G9 ?( c, ^ O- A3 x
The current Head Mark is well known, 5E, which results as a string ('^').8 {( A, s9 T, L) J
2 y0 Z) A$ m: N2 lFor this we go to the World (Project) and looking at the Buffer.h after thistext
- U, a& c& I; T& Y2 oQuote:
/ T7 P; a; ]; E) n5 s: {5 k% Y# Define HEADER MARK '^' / / Normal messageheader
, m& p$ j9 z" b/ L2 o7 ^3 _+ f# Define SYSHEADERMARK '%' / / System message header1 h6 J* d" }' w: u7 n) N, l4 B4 B
What the Sysheadmark is looking for is not even the top 5E.
/ b& J) j: A% y% h2 O8 S0 mChange this and it makes the CE Not work on server.+ }. V* \( `( E, i+ w
! z6 N7 u1 Y+ o! I% Z3 g
Then Tom's anti-hack is no longer useful.# e* H9 Q& t& q2 h: W+ ]
# {6 T4 k/ {" _* Z' dLG Sedrika Part 2 of blocking CE 9 F, E! o3 M' D7 H; b" |0 F, r* ]
u0 o* r2 }1 y9 M1 p, \8 B' PIn 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. ; d- g7 c6 l% I1 e9 U* B% u
What does this have an advantage?
3 P+ Z$ A$ A* U% T7 x( y/ D( b8 rThe editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself
6 E, i, s! k* b/ b6 w. e2 J% N$ M6 S( W# j. R* c7 B7 h0 x
) ?6 L6 b" o' {& iFirst you need to get open source even know how you do it, is left with you, andyou do the project on the Neuz.; |3 ~1 G& s6 B' [- K- c
# U+ H K/ m/ E1 ]- c& @
Then search for the following content in HwOption.cpp
* h! U8 ]9 o" s" h: B% ~
( P& {9 i, |% X; Q# t' H s/ K9 j$ V+ W1 x5 J( m4 f. q/ n
if (scan.Token == _T ("ip"))' m# d. t, v( F# M' O9 K
{( d4 ?$ ?9 K7 @6 S8 o' M8 u
scan.GetTokenEx ();
& H: q3 m6 ~2 J8 K0 X+ s+ Q) o( pstrcpy (m_IPAddress scan.Token);
4 W5 R8 Z( {, Y% n( \}
. \4 g7 O: F& Q6 v; ~! {and turn it into this:% V( }. ^/ o- v k
Quote:
0 b* H0 Y! E0 p# qif (scan.Token == _T ("ip"))$ c" f4 o( G2 M/ x1 h# ?3 U
{: ^8 w1 D/ t2 `4 @$ X
/ / Scan.GetTokenEx ();
! R$ W0 E! N @: z- a9 R/ / Strcpy (m_IPAddress, scan.Token);
; B t+ n# b$ l}0 r+ ~7 x6 M5 \0 ^0 d. S: n, i3 {
And you created the solution.
; J) R8 v" [9 X4 B
* t. i% y {8 O2 Y2 v& F) T/ i* \! r1 L% y9 P
Then read the Neuz not the IP from the INI anymore. even if put in it& U, b G& A& U
9 Y. Z" o/ q: |. z4 n' v
Max skill's " p5 q2 n: o/ V, T; o7 d
~6 V( @/ q: Q! S+ d* XAll know that, 14 Max buffs, you get all the RM Assist Skills + Skills fromBuffpang and no more space for the YJ, Knight, Ranger etc ' G' B2 \. }1 Z
" }% R4 B4 `3 f/ u8 ?$ J
With the TUT can provide the remedy it
; ]1 ?/ [. f5 h6 d/ r
1 k3 @) `* b* |9 x# 1 opens the file SkillInfluence.h3 ^+ A) |; @: F; A
# 2 Search) U* N8 C5 e# x4 r8 v, R
Code:
" r! u6 L) U* l- u+ [) M6 }3 M X2 [' o7 |: G
# Define MAX_SKILLBUFF_COUNT 14
5 g7 G w9 [, a+ ]; B& C! i. r6 |5 \
/ Z! ^) m8 j7 H+ l, q) n# 3 Change the 14 to your number (eg 21) and save it from2 S+ y5 k) [1 { U% F' ]! l
# 4 compilation and ready
) d, h$ I" g8 c( v
% t" N* |! R4 y& X& I% A; h/ a4 ^' f/ S: v
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:
+ J& n' W v, g5 i9 N. a8 m2 J7 G8 G* _! Q0 y1 K
dennisdra' I4 V" q1 X5 r( p- _
.Crasy
* `7 Q! q: @$ s" I2 c W1 H) e©ross
$ m( _+ u4 H% w# a) GSedrika8 ]1 N5 z9 T! T+ ^7 B
# e" O, H; _; P: v( W
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! & L0 d) j! G+ s* W7 S( }4 T4 h" T
# l4 w+ `. q; O k6 l* v
P.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less/ G |+ L3 t! M8 m
0 @ D& y: o' ~# G; M% q! t4 O( ^$ \% N7 i: D5 b9 ~
Update 1: how to turn off "Profiler" in worldserver.exe / |8 h0 h% [. [- j- f
; F4 b) e, \4 L$ x, Q( S* J
" ~" z$ L* v& Y+ A$ E) }in VersionCommon.h of Worldserver Solution
& m+ ^* ?% Z# r: a: qLook for' H. j% u$ c0 I7 v) V( J
1 y' g( Q5 D" c }#define __PROFILE_RUN
% v1 B& Z; W* E, Z+ d) a9 g2 @! o b5 i7 C! W+ P) B6 T
comment it or simply( n) A' P0 H7 q9 H
C `8 |" Y. K7 ~) T, }//#define __PROFILE_RUN - g( U- G8 z2 L/ @( L
2 ]' k+ N: r3 I9 j8 {7 _- k
+ \6 _% g$ d( N6 Ucredits 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投寄。谢谢。我添加更多的很快如果你有病加太
$ C; [+ m1 e) k! _! d0 I |