|
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
( O8 r7 @4 h) N; Kchange level without Rebirth
, |' z7 b5 o( b$ M0 _
( O2 [ l4 w( C$ y) ~Now, let us begin.( n/ p4 G. ~: }
' ^8 L. @6 k. MRequirements:
& U9 |9 Z; x, hSource! `* t1 R9 ]$ V: e8 Y& u8 m
Notepad / Editor
; i6 y& |& J5 X# j P3 s1 g* b
. z) X9 `4 N& k/ / Tips by Sedrika
: \& y# s# ]& b: G
2 Y7 D1 q3 Y3 `# s5 b1 E- Y% AIt is up to you how you do it ^ ^% [2 e. }5 x2 o4 Z1 J4 \+ j3 l; ^
' [' h+ a, u& y
Go into your source folder and open the definejob.h
: f* d. {1 T& f, fSearch there for:
* Y! n8 Z. e1 m! |3 g% [) {( ~% W/ z3 n% i8 a* N E
#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå
$ c4 J: T, w: B$ j: [4 ]1 m#define MAX_LEGEND_LEVEL 129
* d0 l O4 V0 Y; X" ^0 d0 v% B8 c#define MAX_MONSTER_LEVEL 160
6 V& v: K8 z5 t6 q#else // 15Â÷ è÷¾î·Î ·1o§è®àå
9 Y6 i M$ U; U; x$ @% V* t6 U#define MAX_LEGEND_LEVEL 1210 t4 {* J! f2 I2 F
#endif // 15Â÷ è÷¾î·Î ·1o§è®àå ; S/ j- i l, f3 t& `
/ w4 E3 ], T5 \& S+ g) W$ z2 b
. O( Y" G) r$ Q' B( C0 Y
Red: Player Max. Level
1 N7 d) {( f4 S! f7 T0 x0 s1 w4 VGreen: Monster Max. Level
( B1 s4 Y/ A/ m, e2 ], l5 w* O6 I; P: D5 K1 j( a: r b! `
These changes as simple as you want.
, n+ ~' H. O4 S8 y: q, ^2 j! Z" |2 R/ J/ k
Then you have to just recompile the World Server Files + and make your clientin the Definejob.h the same changes as in the source.) e6 @4 g% T8 I8 `& h4 m- ]+ O: H0 X
1 A) v/ L G% u9 _
Part 1 of blocking CE
9 ~* T" U3 N9 k' V1 z( @7 E! b7 J, a* I
In this tutorial I will show you how to change the Head of Mark flyff.
5 ?: L4 A5 l6 T3 w8 eThe current Head Mark is well known, 5E, which results as a string ('^').
3 l2 Z5 F/ d' f: S$ H" Y5 R9 N2 V0 `, w, \. K1 P2 n
For this we go to the World (Project) and looking at the Buffer.h after thistext
, T/ y2 K7 a0 gQuote:
4 }" K6 I9 o9 v4 s# Define HEADER MARK '^' / / Normal messageheader. s: p; p \! k0 [
# Define SYSHEADERMARK '%' / / System message header8 j1 I7 l6 ^6 \# V( n9 k
What the Sysheadmark is looking for is not even the top 5E.: t$ ~& {! ^; w; f* {8 w2 ^6 n. \
Change this and it makes the CE Not work on server.
* h0 [9 `* L% O2 e0 h# W2 t% H7 l* n7 ^" A# A/ I' ?
Then Tom's anti-hack is no longer useful.
, I9 ] V; k2 O1 @$ q+ d- U% z; P8 C
6 ]) q" A$ M" q% U8 t. _LG Sedrika
Part 2 of blocking CE
+ g( W' S2 a# O' J) h8 z7 }' F1 n4 f, E- 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.
h. Y% K8 J/ a4 Q A6 H+ B- UWhat does this have an advantage?
: u4 e5 u) o) k! T' p! i3 LThe editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself
1 A0 O: K# x: {5 X4 B6 L
4 N- {. `. u2 ?1 H7 r; V5 e4 ]! F3 x# O2 U7 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.) K0 \; U2 _4 S1 ?6 d
4 T* b+ |7 X: y4 a' V0 T# L" WThen search for the following content in HwOption.cpp : N, a# R2 R1 f8 u
) S$ H6 L& y% n6 F0 E8 `: Z* L( g7 o0 n) ~9 @* j+ W4 C, K- @. w( c
if (scan.Token == _T ("ip"))
9 v# Q2 w b7 J8 P: K6 K! R1 t{/ o- S% c7 F" a7 X5 w
scan.GetTokenEx ();
4 R: f- j) G) F1 E8 ?; Ustrcpy (m_IPAddress scan.Token);
9 H9 i9 O" x7 x}: k2 ^3 v' E8 w4 b# W. D
and turn it into this: ` k, x$ |; ?
Quote:# I2 P3 O/ q, i0 k. X2 Y1 d- m
if (scan.Token == _T ("ip"))
' l; ~$ n# ]2 f; \. u& O5 B% E{2 A' D l" b% W) f0 l* Y
/ / Scan.GetTokenEx ();
- P2 y4 W( O; k! p# S/ / Strcpy (m_IPAddress, scan.Token);- r6 P" ~% B+ F/ F5 \5 a# R& s
}
5 a& ~+ ?6 C9 N1 B* MAnd you created the solution.- }( r$ z8 m6 j- w- s7 e8 E
; E @4 e# Y! T) S i1 _' I
8 B8 R& w& l0 \. Q/ C* JThen read the Neuz not the IP from the INI anymore. even if put in it
) o( I# I3 b& M8 O4 c& y. l5 [4 V. @+ K3 k. J6 J
Max skill's 7 V, o8 C; y0 ~
# `6 m. E( \& e0 _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
) R: ^" y4 Y6 Y! z( {
9 \! _9 p5 s. AWith the TUT can provide the remedy it
- m5 E$ Q4 H y0 h: F$ n- X4 n8 S0 ^# E' w& Z; c6 s4 S
# 1 opens the file SkillInfluence.h
, w# g; D7 x% ~. L# 2 Search
& D$ T7 D/ }1 c9 ]Code:
7 `: _2 B: l+ b, \' z2 G. U3 X7 q4 t
# Define MAX_SKILLBUFF_COUNT 14% i, l8 t! ]& h5 i
Y4 S7 S. l9 A$ I
# 3 Change the 14 to your number (eg 21) and save it from% ]! @+ a# p1 u0 b
# 4 compilation and ready
! D; i9 W0 T! F) ]& K9 d/ z# E5 a) S
9 C+ I* E: p3 l1 ?, h. O# S* A
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:
# \/ s/ ]5 C5 X7 Z: `
1 Z# O. D8 {& g: d# x& j2 vdennisdra
/ i# E4 [& _' n5 b& P; V, Y.Crasy' n7 m; ~. }5 a1 z* r" v
©ross
, O1 s, F( T! S1 C3 H3 ZSedrika
/ O8 q; \- x9 S+ m4 o
( S e; n9 m+ t4 j3 K! d& `$ P0 Feverything 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!
* C ]. x9 K7 R( b$ W+ J9 W3 h5 o& k
P.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less* P; Q: c$ e, N# o6 \; c; G0 d
" t/ T6 E5 _* i4 q- B
8 d8 x& D1 B% c; ?Update 1: how to turn off "Profiler" in worldserver.exe 3 F' B1 j, v4 b) b- m
8 D. Z( M4 U9 J* m4 R2 g; W! e
8 w, c; Y$ t- j4 lin VersionCommon.h of Worldserver Solution. H7 c4 s# G f( _8 n& c
Look for
+ `: |# B# X2 J v; V: M3 A$ P5 h2 E" r$ H$ s7 u" c1 L
#define __PROFILE_RUN
8 n5 D7 N; r. d) ~( ^1 p2 d6 z' o2 c
comment it or simply7 E: V% E0 y8 Z5 V3 h
+ Q$ p5 S* B+ ?3 I3 h6 K//#define __PROFILE_RUN + L5 @. r+ U# k8 X( F& X) P/ k
+ w3 q9 d8 i I$ H) x, B) s3 a2 l! w! S8 F6 t$ t& |
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投寄。谢谢。我添加更多的很快如果你有病加太 9 G7 f6 W {0 q' G R) ]
|