|
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 : D6 H% W( ]' m! }9 ~' v+ J1 G
change level without Rebirth
8 V; A9 Q& i* g* V
% J$ G) r9 K0 _# s$ `Now, let us begin.! u" w6 N, P2 Z. ^
0 `" j6 [2 I, N* t' j9 q, JRequirements:
0 U2 {2 h5 L4 o! X7 B' X5 b1 QSource- N/ Q9 W. @0 U; W1 |& q) V: f
Notepad / Editor) b. W' \$ A! u2 Y& o: g, J; r
6 M* D4 Q/ o( M8 ?3 r* ?/ / Tips by Sedrika/ [0 A4 g! D: ^ @
$ f) t' q4 R& e' J: o. q* A* \- O2 rIt is up to you how you do it ^ ^: h. V1 p% u& ^: R
1 g4 F& j1 w# |+ `" T ]Go into your source folder and open the definejob.h% u8 j7 s" Y9 X6 o
Search there for:
# v8 u9 t& h1 \; ^( y. L4 i7 D4 p( Q( V w
#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå3 ^8 d! W. D( {3 }, w# Q, K% W8 m
#define MAX_LEGEND_LEVEL 129# \3 l' C' u5 e j/ o0 }% E
#define MAX_MONSTER_LEVEL 160
$ ~0 H9 L' D* `; n( S; w#else // 15Â÷ è÷¾î·Î ·1o§è®àå
! d B# I) W) T3 n2 u0 Q( j#define MAX_LEGEND_LEVEL 121
* L. a" I: Y/ N; d/ d( T#endif // 15Â÷ è÷¾î·Î ·1o§è®àå
0 l' a: t0 q' z" x9 v, J: q7 n* x' V+ v
# {+ i# e( H: o( {! a
Red: Player Max. Level) l# `& S% ~0 j! v7 x
Green: Monster Max. Level
# }4 R+ K/ c( Z& @( C
7 K5 j4 c' Z! SThese changes as simple as you want.( Z& m- [/ Q) Y1 Z
* c$ c/ y8 f+ |6 \/ m( D" R) p9 cThen you have to just recompile the World Server Files + and make your clientin the Definejob.h the same changes as in the source., H- o# L* f9 Q' n: I
' V: m: @7 A0 j% J! s! e+ X
Part 1 of blocking CE
# q2 U% ?6 H( J! g. c
5 r8 T* x Q1 f& h) S3 J- KIn this tutorial I will show you how to change the Head of Mark flyff.0 [5 `! ^' |* }! b7 y- ~" }+ P" k9 g( Q9 }
The current Head Mark is well known, 5E, which results as a string ('^').
9 r2 q' C) q1 h4 u0 G' g. P, k
. X `% h8 p" x% K7 V: yFor this we go to the World (Project) and looking at the Buffer.h after thistext. Z9 {: O0 P* _4 l( W6 f
Quote:7 u* O2 Z9 H" A$ n3 q
# Define HEADER MARK '^' / / Normal messageheader. n# V; x3 @7 [% Q* K
# Define SYSHEADERMARK '%' / / System message header
; H: ~1 P+ s+ B5 J* w6 X. J) L4 D. |What the Sysheadmark is looking for is not even the top 5E." r! Z# z; l! i4 P: [: j2 E e
Change this and it makes the CE Not work on server.# k9 f! B, p% }2 _6 i
4 s. ?% ~- h5 r# |1 fThen Tom's anti-hack is no longer useful., m, |% i* c! ]/ \
0 Z5 i9 T% Q$ e: @. M$ {6 TLG Sedrika
Part 2 of blocking CE
3 p$ R5 O9 V' \& @8 D0 d: r$ y$ f, G+ Z- z3 Q% 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. 3 v6 a- Z0 p! G" d
What does this have an advantage?8 f) M) t$ k2 {
The editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself 3 b) @7 X0 E+ x
: ~' k' T; T9 L6 R' a. f
8 x3 b+ M5 D, y% M# pFirst you need to get open source even know how you do it, is left with you, andyou do the project on the Neuz.
L" Z+ B' W2 g x9 l
7 b8 N2 ]& K3 x% k, }( g* U) rThen search for the following content in HwOption.cpp ! y9 ?, S. b/ P& j* [$ C/ h5 S% q
) G& ~! S- }& O0 U
, b$ g: B% c: d6 X! o1 Qif (scan.Token == _T ("ip"))) I# N* [/ F" T1 l# g4 O
{# b `* T) b7 n' C7 k# l! Y
scan.GetTokenEx ();7 _; q+ X/ J& \. H- m
strcpy (m_IPAddress scan.Token); ~; ?. J) y1 Y9 `* w& j
}) I* Q. l) u" a6 O
and turn it into this: y' x$ n0 Z; D$ g+ F7 u4 C( g
Quote:% {2 I$ @( K+ c, ~, j! I! r
if (scan.Token == _T ("ip"))! k0 J3 `/ j9 \" u2 R
{
4 |5 V9 B9 Y% J+ ~% c m/ / Scan.GetTokenEx ();
/ h% C5 g; `5 Y# ^. ~/ / Strcpy (m_IPAddress, scan.Token);' q, ?$ r1 }' z/ {3 e
}
% A9 i, H3 c& f' w5 r- mAnd you created the solution.
& p& I* i9 _( t+ q* }9 k4 I7 J6 o/ r* A s; l3 e- ~7 k
7 ]5 B* _" M" k( ^8 ~; D" b
Then read the Neuz not the IP from the INI anymore. even if put in it
7 V5 l. t H- K. m# C" u' [( _3 P$ ?# r [/ {1 w# W( n) a
Max skill's
' k3 M' n: L4 ?- I2 }- A9 @ [7 T+ Z# e; s9 w4 F0 ~
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) \, P/ {7 l8 u
" E2 W- t" a3 u) b
With the TUT can provide the remedy it& `4 u D# Z: k
; `( `! [* g/ f
# 1 opens the file SkillInfluence.h
3 j6 M/ P8 j) J# 2 Search
9 d, F, v- t1 a% c5 w8 m- b4 |Code:
; g4 m8 `4 ]4 m. a2 C
" H; ^2 E+ c) Z$ r0 w% a1 a# Define MAX_SKILLBUFF_COUNT 14
# o0 o" J# g8 P& U( i# f7 H
! o' T+ }! U: ?- L) n# 3 Change the 14 to your number (eg 21) and save it from
# c' ?* Y7 R1 w w ^, _# 4 compilation and ready* `( h& a$ a) w6 z
! _0 R, m0 p4 ~+ G' z
( x U- [ k$ g: B+ HI 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:' d) M8 @8 h5 Z$ a- p! S
- N2 p" @) n1 W* W" c5 R8 w5 _
dennisdra+ X8 x' X1 S# c- ?
.Crasy
3 {& T' Q. P9 D; J) G8 Y) @©ross
& B+ V' @0 w4 C @; I6 T" Y$ zSedrika2 }' B; B3 p7 w( x% K% \) N
3 V0 {7 B! J* d% y5 f" geverything 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 @) @% G; H) \6 ]. o. j1 Z+ |
* f4 b, M8 ?1 y8 p1 _2 f! }2 k: g2 aP.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less
P3 V8 h! g. U. L
" E, M, }* I) g9 N: r, R2 W4 p- _1 F4 g5 S: i
Update 1:
how to turn off "Profiler" in worldserver.exe 5 m8 |8 \# B7 |6 c. {6 _
" L, |, v& B7 k
8 g# a' V, |, g5 ~- r3 Bin VersionCommon.h of Worldserver Solution- v; ]# L! J. j7 E
Look for% s' v! V' f0 L; X+ i
. m, J+ t# L" y#define __PROFILE_RUN1 u6 \7 E% a& @% j0 K
; X. A) H* p& H7 _0 o+ X
comment it or simply! H9 t: T# _, n! r
5 M/ M& D* [4 z* s//#define __PROFILE_RUN " X+ U7 m$ Q# T1 p- c" f! N
: s7 q( n; m9 t4 Y. L
( F7 A, k. \/ V# B- a& Y6 ycredits 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投寄。谢谢。我添加更多的很快如果你有病加太
5 Q, n3 E& d) V2 D4 b- l3 v8 t) c |