|
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 6 R, B, R* z1 d5 r6 F9 I+ I2 ~
change level without Rebirth
f7 f4 @( g- X
' a7 g W; x7 D$ Y4 E: INow, let us begin.+ H3 u7 g; ^ A0 {$ v! g" k
# L& k5 ~# B6 ?1 i+ P4 i' ^- y
Requirements:. I& ~* q- j8 z3 o+ b
Source5 v( e5 D! s1 {7 n: ^
Notepad / Editor
1 _; ]- q* ?0 `. K
& Y% N- d1 ~1 e& z/ / Tips by Sedrika
$ N/ G- i0 B; k3 W: F
) o" }% ~2 Z2 z2 J, I0 @It is up to you how you do it ^ ^) O3 s$ p: r+ f/ N
- [3 [) I @4 N1 @- ~5 u- J
Go into your source folder and open the definejob.h/ W! N. q' H' ~% q8 |' a
Search there for:% V$ M5 O. V' H- e* W9 {3 B
1 r: m. T' G6 F: A# G6 S
#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå* E* `& Q, J6 X
#define MAX_LEGEND_LEVEL 129' S/ _3 h% \7 B0 E* z( G
#define MAX_MONSTER_LEVEL 160
$ b; A9 A6 B1 `# [#else // 15Â÷ è÷¾î·Î ·1o§è®àå1 a5 {, V" `$ N/ |
#define MAX_LEGEND_LEVEL 121
2 _, `! P9 r9 ?1 Z m#endif // 15Â÷ è÷¾î·Î ·1o§è®àå # y( B& _% O3 A
/ n4 n4 M* T) r, o. {& \# {! E0 [9 b. `/ K2 W
Red: Player Max. Level
$ U/ g' R/ W7 B' pGreen: Monster Max. Level( t3 X, y! y0 z, ^/ d4 h6 g
5 `- Z: Q, l# n# ]4 xThese changes as simple as you want.5 v" @' U& q' E8 K
3 U4 J6 u' l. D' w9 Q4 EThen you have to just recompile the World Server Files + and make your clientin the Definejob.h the same changes as in the source.
4 T9 L- J: K6 F. ~
. r X, G6 z3 j8 F2 S Part 1 of blocking CE 6 W) Z3 U5 n3 [# E( t5 ^1 f* @. O
# p" S+ T- q/ x$ ]1 mIn this tutorial I will show you how to change the Head of Mark flyff.% N* z) P/ p6 I$ i3 n0 h) `
The current Head Mark is well known, 5E, which results as a string ('^').: O) Z5 y) Z! R+ X0 M% g
3 A I6 `8 A6 c" C) i
For this we go to the World (Project) and looking at the Buffer.h after thistext
5 \+ ?* Z/ J2 HQuote:
$ W- B6 [$ J$ l- n8 h1 W# Define HEADER MARK '^' / / Normal messageheader
; h9 a1 j9 ]4 k; F+ R+ n* i9 [2 I# Define SYSHEADERMARK '%' / / System message header+ P6 ~0 |$ t7 }8 z
What the Sysheadmark is looking for is not even the top 5E.
, D' D2 b2 x0 q ^+ f" @Change this and it makes the CE Not work on server.! x) @' `0 g0 ~- S
6 Y7 w' ~; B' O% E P: q3 J, KThen Tom's anti-hack is no longer useful./ s/ e* z+ c6 r: ~0 [
* q& e9 r: g P7 N4 p; s. `0 i5 }7 w
LG Sedrika Part 2 of blocking CE * c$ A& [5 f! i4 S8 s
& E; ~: E6 f' n$ Z0 R
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.
" J& n$ K: C$ S' V7 e w# ~4 l& h! RWhat does this have an advantage?
* p x5 J5 \, O P1 {' k _& [The editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself
z4 x& v6 b0 G
' ~2 \+ ?7 ~3 g
) K0 }* R4 R0 r. Q& T) K% KFirst you need to get open source even know how you do it, is left with you, andyou do the project on the Neuz.
5 z( o( g8 ]) u2 P F5 F4 D2 T8 _6 z/ a5 }* {3 J" p% b3 |- u
Then search for the following content in HwOption.cpp * h: Z3 L! F- b+ ]9 a( ^/ ^
5 i4 L/ A/ k) w) Q$ y! J, i
* a! E |/ t5 V( K* Y: ]( Q
if (scan.Token == _T ("ip"))
+ [% l' v* Q% F0 N8 e3 A% G4 P{
1 s& D6 P& c9 N- U8 w& V: W5 u: D$ jscan.GetTokenEx ();
7 L- D# @( f6 E: F% ?) Fstrcpy (m_IPAddress scan.Token);
6 O& r3 O& e$ P D- @}
9 n' ]3 q2 d( band turn it into this:
2 I' ?$ D4 F+ s! IQuote:
. g) x$ c5 ~1 X u- x- Dif (scan.Token == _T ("ip"))
- q% Z1 o6 w+ Z1 Y% ?3 W# o, U5 _{
" C7 I9 z2 G, G! X/ / Scan.GetTokenEx ();
$ E: D# f! ~2 {+ s2 p& N/ / Strcpy (m_IPAddress, scan.Token);
- E% N; N; A. I3 E7 t8 u" {; a}
( n; i$ f6 M3 q" O+ r# Z: s7 N, kAnd you created the solution., S" B# |! w; S' Q
4 \6 K& h' w- r N# M' I
4 e+ A' ?( k0 w+ YThen read the Neuz not the IP from the INI anymore. even if put in it$ I$ n! R) l: p
' a8 {% |0 u: B
Max skill's ; c2 D6 L' r- t. W
+ U, o* _6 A0 k7 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 $ s& Y3 k* H) h, Y
2 `' _& u9 ^; _- g5 w* Z! P" \6 @8 vWith the TUT can provide the remedy it
# A: }3 W g( |4 N, k3 ?
, J& G( _; Y8 x9 _3 U# 1 opens the file SkillInfluence.h
; B7 m; [. a! T$ c7 \5 X# 2 Search9 i% Y1 h7 ~& D9 n% }
Code:8 R! j$ }1 u& {1 m
9 g m$ L8 g, z# q( [# c2 f# ^" [# Define MAX_SKILLBUFF_COUNT 14
. r- ?& A1 l0 s% o1 m5 K% F. m0 u, J3 K3 t; {
# 3 Change the 14 to your number (eg 21) and save it from2 |6 O6 I% Q0 Q& A4 {
# 4 compilation and ready
$ C# Z p+ W0 i% B. ^, M1 q
" j% {3 E' S9 S! X$ k& a4 W1 T2 [1 c. m. ]- e( P8 c5 X: P1 [5 ?
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:4 s9 q' D; K$ u$ F
" e7 F8 a# I# l: a( s& gdennisdra
! r5 x7 `2 e- ?.Crasy
3 v4 W5 t) m# x©ross
; ?& @5 b( m5 b( P' vSedrika
" p @& g- F# ?/ {, u2 V) ?: Y: S) v+ O) p3 _" R
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! 4 t _" n0 [* O- n0 f3 B% l
& x# j, _, o7 O. E) Q- p: I) a
P.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less
- h" M2 M$ @" C) T$ J! \' c' N: l
# S, Y- v6 K: R0 V( ]2 q( M
" H3 U" x% k6 n, s# WUpdate 1: how to turn off "Profiler" in worldserver.exe ( T) B0 G$ N5 h$ ^, z" W! F
: E) W" a& u: t; M
4 w5 i& L% Q+ e* |( i: e* Y; bin VersionCommon.h of Worldserver Solution8 N# |) H# T) J/ g
Look for
. Z. I5 E' Y/ f1 ^# a1 |; D. h
( a( R5 M' `9 A; m2 a U#define __PROFILE_RUN; d0 z3 N8 @7 f4 O! O! N
6 z% Q5 I" D3 e& ]
comment it or simply
9 c( {+ G$ B* ]8 J$ ?: z7 t6 J5 O- U+ z) P1 d4 p+ R; U
//#define __PROFILE_RUN 6 C) G; @! c5 ]
: { L0 j8 ~- g! T1 i* g* N% P
' b4 o" k( M* T- @( i) b7 d, _! {
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投寄。谢谢。我添加更多的很快如果你有病加太 ) \3 G; D O7 o2 N S% }
|