|
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 1 B" t' j% V5 K R
change level without Rebirth
, n' ~% w7 Z# d5 ^7 D; m0 Q4 t( g8 N
( Z- O) }% o. ~2 D7 y1 JNow, let us begin." F1 \4 f( S( ~, V+ c0 }& j
5 b# \2 I$ Z( f7 [* ZRequirements:* p2 s- T- J4 {9 i& e) t
Source
( S. m& i! l; N5 oNotepad / Editor8 M& ]6 h% K, E0 E6 h8 c
, A v% H. Z# e4 W4 q0 R
/ / Tips by Sedrika
2 z# A, ?- p3 r. f5 z6 N
3 e6 h+ l8 F! V/ \# ?9 I8 MIt is up to you how you do it ^ ^
6 c5 U% g8 h0 R6 ?9 E% o+ D( T
/ j. O- J* |; m) c% A* K5 [7 E8 nGo into your source folder and open the definejob.h
% K# [) o/ t$ \8 |$ I8 t0 hSearch there for:
1 A; ?' _3 e' h( o$ M' y. c; u% Q3 n4 D& b6 B
#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå# f( O0 z& t O" q& k1 w
#define MAX_LEGEND_LEVEL 129
6 A! Z; h' w+ p, B# m#define MAX_MONSTER_LEVEL 160
# V2 L" b. o: @6 s#else // 15Â÷ è÷¾î·Î ·1o§è®àå
1 r# Z7 ` |+ T% ^#define MAX_LEGEND_LEVEL 1216 C6 O0 H9 Q; \6 j
#endif // 15Â÷ è÷¾î·Î ·1o§è®àå
! v u8 B! y. m0 G0 U5 c8 H1 Y% ?
' @( `) k% y6 rRed: Player Max. Level) ^/ v6 [# `3 ?' m# s6 H- ^
Green: Monster Max. Level
3 @: }( k4 b# \5 y1 B6 e! P# u" ?+ Y9 Q/ ]2 k9 `! m
These changes as simple as you want.
2 ~: L* A9 q8 ?7 b- |5 _ P: e. Q' ~5 d* U8 i$ e+ u" G
Then you have to just recompile the World Server Files + and make your clientin the Definejob.h the same changes as in the source.
) Q: { T, d, Q: W6 k7 r6 j8 }" K, {4 [4 k3 i
Part 1 of blocking CE 1 e: [/ C3 ?4 I
* a6 f1 h. ?3 P* _- Y3 yIn this tutorial I will show you how to change the Head of Mark flyff.
& Q% D i# f- q; j( {0 K xThe current Head Mark is well known, 5E, which results as a string ('^').
! O: B$ R/ Y: A9 o6 K+ W0 B ~' }; y4 d
For this we go to the World (Project) and looking at the Buffer.h after thistext
3 A. T8 r6 N8 O1 a& g# t# BQuote:' q8 a- k& b+ J2 p
# Define HEADER MARK '^' / / Normal messageheader) H# a, D3 l/ }0 j
# Define SYSHEADERMARK '%' / / System message header+ M3 Y+ M4 C5 Q. M; m
What the Sysheadmark is looking for is not even the top 5E.# `' ^ M% C8 |* l# G8 `. u2 T
Change this and it makes the CE Not work on server.0 Q. q7 l/ J+ A0 o* s( u
: u3 g0 ?+ m3 g# ?+ M
Then Tom's anti-hack is no longer useful.* i9 M) x; K% Y" n5 i v7 V% I( n4 I
+ k* Q! p. y) H' i. lLG Sedrika Part 2 of blocking CE + q, r, w2 m# |+ y, b7 F
. J {$ b$ e8 F2 u: i( bIn 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.
" r) u3 s; N$ @, z) GWhat does this have an advantage?
# {4 u- E; V8 w- n+ H4 }. g' ~- fThe editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself " d7 W4 m4 H7 T- E8 Y/ E
; n: s& M6 n: o/ b" y- p7 x" a, j1 P$ O1 w/ J5 x/ t
First you need to get open source even know how you do it, is left with you, andyou do the project on the Neuz.2 _: E7 R. _* H9 G- ^( H
6 e# A/ U0 U/ z+ f, |5 C- y# Q* E, kThen search for the following content in HwOption.cpp ; K, k5 ]/ A: i( ]/ d9 I% R
! W- K) U$ ~" r P
5 Z. c; N8 x1 y! z; z8 Vif (scan.Token == _T ("ip"))
0 J1 ~, q# T6 Z0 d. ]& r{
$ {5 p6 [8 S( [, @- uscan.GetTokenEx ();
& y" _' Z7 W9 L1 }. @; Hstrcpy (m_IPAddress scan.Token);
% |1 i9 H4 T4 P. k. h. }}
7 ~ ^. f: n' jand turn it into this:% l0 Z: ~* B, b8 _0 ]
Quote:& Z0 Q" x1 M' x9 u
if (scan.Token == _T ("ip"))& S T' J; E' a+ s0 Q
{. c$ p- C! p) h8 v( w
/ / Scan.GetTokenEx ();
1 {5 L/ \& i @5 D' n. |3 J/ / Strcpy (m_IPAddress, scan.Token);9 K4 | f! | B9 d+ g
}' e' q) z# T* K1 r% F5 t5 f& L
And you created the solution.# i: L' c3 r& H. E; Q
4 {! L5 d+ A5 ~ D6 Q
- a3 T+ n. ^- P& n2 ~( KThen read the Neuz not the IP from the INI anymore. even if put in it6 m% ~# _+ n$ ~( C9 p9 p
( b4 [, c: W+ j6 k9 T- B- W
Max skill's
$ t0 |0 {/ w: o9 L0 W# c' J# z# E8 R \# [
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
% a! p! h: Z$ T8 W) C, U; S* `; {: k9 R0 c: X
With the TUT can provide the remedy it
: ~) c7 g1 d A2 Z% I8 @0 J, M. Y$ C9 H$ I
# 1 opens the file SkillInfluence.h4 B/ ` W3 [) U) M. x, ^
# 2 Search8 a3 n1 Z' n& r' A- m. X) A
Code:
3 ~- [( j5 `2 ?6 J$ {) l& {1 L8 X/ M( i1 o
# Define MAX_SKILLBUFF_COUNT 142 y3 G% L6 z0 n7 ^: i1 n
: C {, x4 H1 }4 \, x( z# 3 Change the 14 to your number (eg 21) and save it from0 X1 B$ F- T5 h3 |2 s: w% q9 w
# 4 compilation and ready
: q$ A9 l) M- Z& ]! O# `" P* _: c! I
8 ~- @8 E. T, F0 X3 rI 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:
! s3 A2 p" R& J; X) r9 `5 t9 f* Y* m5 s4 v4 w5 v( y/ x% U
dennisdra5 h/ Q" T4 W5 u2 |
.Crasy2 P5 r) O+ s: M, t2 y1 _
©ross; F. A! ^" Q; M2 g9 ^
Sedrika
9 c+ U& i; I; ?" ^8 J& v$ [- p, Z# o# l4 o
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# c5 t) D8 [
$ I, j' P/ I; e( x
P.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less( m9 S5 M8 u$ |+ K" G1 L5 g9 {5 Q
6 u6 u+ V" z( E( ~# a. q
& I# Q7 ~7 y% t9 ^. i' J0 `
Update 1:
how to turn off "Profiler" in worldserver.exe ' T, [# n% N) {; h( O8 I$ {6 z
# o/ X9 g" |# {( H3 s4 }: ~ p+ C0 f1 [. o- `
in VersionCommon.h of Worldserver Solution
+ T9 v- G5 c1 t2 Q aLook for) {! {# E& \8 ~3 ?- L0 {- a/ @
- ?. R' t' l5 E. G
#define __PROFILE_RUN. d8 I- z7 L! N1 F
0 M+ U8 U1 w+ I" [8 Dcomment it or simply
% t; [6 ~& [% L" o8 n7 l, f/ j6 Z9 V( \4 P! |. R' p+ H
//#define __PROFILE_RUN 7 v5 D) K6 q( ?$ g3 l
; ]" _+ }$ V9 l v& v: |
% b8 x( P6 E" n( j; Z9 a
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投寄。谢谢。我添加更多的很快如果你有病加太 ( n8 r/ N k& k& }0 L
|