|
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
4 K+ C0 U: M# [6 Q9 xchange level without Rebirth, e+ d1 ?8 Y( f+ v3 `( {
( L, g& I+ O" Y% g2 o& x5 P1 c4 U
Now, let us begin.
! X `5 S* o& b" _4 k: z- T1 D, E ~# H& v
Requirements: e; E7 ?! R" V1 }
Source- k# x2 P; d7 n% m
Notepad / Editor
; M0 `6 a( ~/ y9 J3 M% ? k& N1 R3 q' E8 g1 t1 w
/ / Tips by Sedrika2 K1 B" f/ ?# i% f% {) B5 K0 M5 N
: s) R1 ^: U2 FIt is up to you how you do it ^ ^9 j, \. X; O9 G7 h# V
. a! G2 a2 i4 A; Q
Go into your source folder and open the definejob.h
5 r4 }. @# H; b' p* rSearch there for:" F# j4 i* q- n" {
6 ?6 d; [9 R4 O
#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå0 y4 K0 W! z" H
#define MAX_LEGEND_LEVEL 129; i2 q6 f, Q1 i$ \2 n, K
#define MAX_MONSTER_LEVEL 160" V+ u' S4 L8 a7 u& m2 [7 p
#else // 15Â÷ è÷¾î·Î ·1o§è®àå
0 J9 |: h+ j) e& v6 w#define MAX_LEGEND_LEVEL 121! u$ X! P/ E+ g7 f) G) c5 {! r
#endif // 15Â÷ è÷¾î·Î ·1o§è®àå * n) G3 k+ Q# G7 d8 i' n
! M/ B. m( j1 @, U6 Z) f/ ?* r
$ h/ s2 e* w7 \! }, b4 S
Red: Player Max. Level
# x" E. @. ~6 N7 W! x6 w& `& MGreen: Monster Max. Level- g q {& N, K, z$ b
4 v9 Z5 H, `) U5 J( ~: K& U/ X
These changes as simple as you want.
, u5 D' P5 i% S
* A& U. I9 F/ U$ s! kThen you have to just recompile the World Server Files + and make your clientin the Definejob.h the same changes as in the source.
2 N* Z9 A6 R P" N& U/ |% W5 }+ {0 V/ U- U" [! j8 L; x
Part 1 of blocking CE
! U; \' O- r) X* \6 @& W
( M k& [. H' KIn this tutorial I will show you how to change the Head of Mark flyff." y& Z# R- U6 n2 \5 Y/ l9 _
The current Head Mark is well known, 5E, which results as a string ('^').
( A _ v Z) ?
* K3 z) O2 S8 t, |) H1 HFor this we go to the World (Project) and looking at the Buffer.h after thistext
; p3 F- K4 w7 a: G }Quote:
! J& | J# w' Z1 i1 O; \0 E# Define HEADER MARK '^' / / Normal messageheader. f, j/ B+ X8 b" u, C
# Define SYSHEADERMARK '%' / / System message header4 ]4 b |5 |% \) k7 O2 q9 R
What the Sysheadmark is looking for is not even the top 5E.
# s# v6 t7 G( g" b; H6 HChange this and it makes the CE Not work on server.
( @. f5 ^, f0 J
1 O8 U g& N3 l% k( r OThen Tom's anti-hack is no longer useful.8 @2 a1 q* ^8 T
: e( Y$ T7 Q5 |0 g/ D
LG Sedrika
Part 2 of blocking CE
6 K6 N$ d; E( ? G- _( [. Y% Q7 F; ^1 S1 X: Z
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. ; Q+ c: i" q4 m3 Q
What does this have an advantage?0 D: [" A2 o. j
The editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself p7 t6 I4 F8 E! F0 N7 g6 `2 I7 e
: c1 Q$ F% v# S! ^5 T
" v9 q y: J/ B- N+ E$ u! 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.
5 s0 c; ^' s5 D# |) J9 y/ }8 E, a. n# ~, Q/ B) _. W. _
Then search for the following content in HwOption.cpp
! C# c `: m9 L' \
! d3 V9 {& [0 Z
! ~8 `' O6 \$ c: k+ J: }* pif (scan.Token == _T ("ip"))
1 g: x$ b# G& M; i. a: L{3 d: K: a, Q! M( j7 m/ @' J: ~/ G
scan.GetTokenEx ();
9 }7 ~! ^# m4 mstrcpy (m_IPAddress scan.Token);5 H Z" Q" W6 t b8 w
}
+ o' J" D1 x+ q1 Band turn it into this:' x. L. U5 u1 B' L
Quote:
' Y, [# U: S# K% cif (scan.Token == _T ("ip"))& V: U$ i- |# p! @) _" r
{
! a, {. t2 A2 N9 M' L1 k: W4 I9 F/ / Scan.GetTokenEx ();
% h. U# T% W4 e, Q9 a$ |: `/ / Strcpy (m_IPAddress, scan.Token); Z% q) J3 p6 M. b& \
}
: r/ _; ~; F/ ~8 `) S/ _And you created the solution.3 i* p4 {3 _0 Q1 C p. n6 q. T3 n
# T, s X& z J9 @) G, _
0 ^0 m# @& E" P% S5 h% }; F
Then read the Neuz not the IP from the INI anymore. even if put in it
. `4 V* M' B7 _) T" \- {" |( N# R1 L5 b
7 `5 ^8 \# o( p" O8 A2 O; M
Max skill's
3 u6 ^) q8 I% X; V& \% ^
# R0 v1 S$ ]. |5 v2 }! c! s/ cAll know that, 14 Max buffs, you get all the RM Assist Skills + Skills fromBuffpang and no more space for the YJ, Knight, Ranger etc # w4 ^! {7 [# l9 E. c& L3 }
2 N' q2 P$ Y- \6 E8 hWith the TUT can provide the remedy it
7 g" F4 S4 @/ n4 _) N0 N8 X; k2 _, b$ [2 F1 n0 q# n% R
# 1 opens the file SkillInfluence.h
' a( N8 ]0 n6 a7 A# d! y( \+ c# 2 Search
) T8 p+ b) a* `+ C9 gCode:
Y" d& y! D* {" C s
; q- |! j8 a. d: z3 s6 V# Define MAX_SKILLBUFF_COUNT 14
* h& P7 J* T; [! j5 _" S. m6 C; j0 k4 J3 _9 H( W0 C0 b
# 3 Change the 14 to your number (eg 21) and save it from
8 ?7 c+ ]) |; ^' u5 A5 p# 4 compilation and ready4 ~6 R$ T1 C: I
7 h, B: q# t: Q, @( S0 t A
: i* g+ M) B+ M4 X7 p
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:
+ {- h% I. _: K" M6 `0 ^, |3 T4 X1 I! D) F4 x. x" J
dennisdra
* E, M4 p9 d# }5 t.Crasy
% R1 N. p, i+ ^; |©ross
1 B8 g* T0 q: YSedrika W' X0 q% u; e, O9 v% e
/ L) k4 ~$ ]: m5 M1 Beverything 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! ' Q. C T% R; {/ A9 s2 a6 `8 q
0 G' i! {4 P$ k% |# ?" ?1 M5 EP.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less% e# U9 u8 ^ n" a6 ?
" a) C* q- Q a# o- R- u4 @+ ^4 v% x0 A4 J
8 Y# K+ Z7 c5 i. Z& M
Update 1:
how to turn off "Profiler" in worldserver.exe 7 M% a) q+ y$ H' e0 F. c3 L
, D: G& j; I" v$ ~& U1 A
7 Z* V3 Z3 O6 `1 l0 Xin VersionCommon.h of Worldserver Solution8 [: U) f" W. @4 n- r% c q
Look for& [' `" E$ h6 B% m0 N! S
0 Y6 ]1 E; L: ^7 o9 Z5 n#define __PROFILE_RUN+ t* y) ~% ?6 L& ]. ~3 G
+ o! I! Z v( F* \
comment it or simply& u8 o9 r& U0 K1 J' H
. f! I* T) h* a2 L8 e/ D
//#define __PROFILE_RUN 1 f5 u( i: t3 x4 h8 M
0 g, _# F! a4 Q! \$ U" L& S" Q
# K( \5 s5 F! k# ?1 R0 T6 i
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投寄。谢谢。我添加更多的很快如果你有病加太
. ~4 J6 F2 F j8 d( O& Z |