|
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 7 i' D" Y. U3 K1 k: n, v- x$ ~
change level without Rebirth
4 X# C/ d( p, @( M+ C0 I
! t7 V# [$ C* J$ {* u3 t ~4 tNow, let us begin.+ R4 w' V& E4 B0 U( Q5 X
4 ~) h( v1 l% k3 K! l) L8 IRequirements:
2 E" C3 H$ Y: P5 x, F) x' lSource, q" w9 C+ R) r3 H- a- k& e U
Notepad / Editor' Q- V% o2 B9 ] R, X
( O: ^" w; p3 U- c
/ / Tips by Sedrika
6 `% l8 j C! } R- t" A. b/ I9 j A4 S8 n7 ]
It is up to you how you do it ^ ^% f" a7 Z* O* Y& |9 L
Y& u4 E5 F8 g! P0 m2 a2 e+ H
Go into your source folder and open the definejob.h
& n& U# M3 S2 O8 Q5 JSearch there for:
8 V% N/ `" b5 _. X i( T' x, J; U* j- h9 d
#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå8 V9 z$ b/ |# ?1 q
#define MAX_LEGEND_LEVEL 1295 e/ ~2 @: x; }, @) ~. t! }
#define MAX_MONSTER_LEVEL 1608 ^5 ]/ l0 I% U
#else // 15Â÷ è÷¾î·Î ·1o§è®àå
) A, L; v9 |! Z8 j/ j x#define MAX_LEGEND_LEVEL 121
# a% Y C/ ]) l9 P& H( N- o#endif // 15Â÷ è÷¾î·Î ·1o§è®àå 9 i k( P+ O/ p; } h
+ [: e# G, H9 J- U) v6 c+ u( E- n
+ y9 ^# e3 O; DRed: Player Max. Level+ i: b# }* y% j/ w6 c, j( l
Green: Monster Max. Level! {$ M- p" ]. \# R8 l) s, i$ H- @ U2 e
* Y: p9 S2 w2 C1 J& G q) e1 M
These changes as simple as you want.+ S. \$ ^/ k) f+ @6 J
* L0 a: B5 X% s. h4 j3 z. `Then you have to just recompile the World Server Files + and make your clientin the Definejob.h the same changes as in the source.
3 I+ O" A0 R+ H$ {
9 L6 z9 w( `) U3 F2 v6 d/ c- ^, | Part 1 of blocking CE 2 E# d! m- b" @3 S N8 U6 @
4 b4 A$ \2 T' \! b$ t! z
In this tutorial I will show you how to change the Head of Mark flyff.
- ^% [2 p' l1 O! H4 EThe current Head Mark is well known, 5E, which results as a string ('^').2 J7 y/ P2 |( S5 `& S9 E
( F# U+ X S8 v* D+ ]0 d j
For this we go to the World (Project) and looking at the Buffer.h after thistext
! `% u: t$ a( M) _' I5 _, vQuote:( t5 O# m; }+ t
# Define HEADER MARK '^' / / Normal messageheader
; j) n' L3 i% z Q4 C! a# Define SYSHEADERMARK '%' / / System message header
% ?; x, x1 a% z3 JWhat the Sysheadmark is looking for is not even the top 5E.
4 T4 f7 n% c7 U, p) ?Change this and it makes the CE Not work on server.
0 C$ B6 Z) [0 D4 ^6 ?* e- u X* c7 o. k( T; B1 S) v! W* I( m5 u
Then Tom's anti-hack is no longer useful.) f3 O' E) o4 \
# |3 s" j' u jLG Sedrika Part 2 of blocking CE . n6 l- P) q6 s/ @1 n6 ]
' Y) R3 s; U, }7 ]
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.
. ^- B, I" W7 v- ]/ L# k4 j# D& w5 e$ SWhat does this have an advantage? M$ Y' a% i. R/ w& o0 W
The editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself
; l6 S' R h' q$ j- {1 F% y- `5 Z5 Q7 N, P* D; K4 V9 }
9 X J8 w- \: b; UFirst you need to get open source even know how you do it, is left with you, andyou do the project on the Neuz.
T) w G) x0 h2 O w. o6 F' @: x- Z" ]4 m; H
Then search for the following content in HwOption.cpp
. p: k% A3 y$ V/ _$ U$ V2 Q* U
/ f9 V! K' R, w( U* u" R( p9 C, c+ B* s1 r1 f# o3 a& V a
if (scan.Token == _T ("ip"))% C1 O. h+ p' q* Q# v9 G3 Z8 g
{" g' N1 x; g" L
scan.GetTokenEx ();
; r* H9 z8 q1 X( Sstrcpy (m_IPAddress scan.Token);
( r1 `0 I' j5 F}$ N9 k6 i6 N' W1 q1 v
and turn it into this:
# l' \" I4 }5 [9 QQuote:0 G: F, @3 S# Z: t8 \4 j: X3 U
if (scan.Token == _T ("ip"))
" j1 a0 C/ r( ?0 X: @: t% x{6 U3 }5 o& g2 q3 |/ x- D; V
/ / Scan.GetTokenEx ();
3 k. w' `5 v2 O' ?/ / Strcpy (m_IPAddress, scan.Token);" g ^1 e4 e- |0 \
}+ \. q: M+ V7 G8 }: O0 L
And you created the solution.& ]+ ?( K1 k* ]) a
. Q. O7 }3 T. ? i
8 i# s4 O1 K2 X8 C
Then read the Neuz not the IP from the INI anymore. even if put in it
. T, E8 l) R0 B0 `8 R9 U4 z& F0 Y* y+ ^/ y5 [: u ~( q$ \+ A
Max skill's
& @; Y$ }# I& o1 K6 e
* W- G# Q& W, |7 d7 b6 c' sAll know that, 14 Max buffs, you get all the RM Assist Skills + Skills fromBuffpang and no more space for the YJ, Knight, Ranger etc
/ ?8 U/ Q, t/ c# D' ]/ Q9 G2 x' ]0 l! i7 l8 G& P
With the TUT can provide the remedy it2 l: @( H/ G. q) [
1 `. V5 R1 v# b8 G' o/ d' ]# 1 opens the file SkillInfluence.h
8 Q6 @7 [8 v$ K1 q' M# c- n# 2 Search
# `( s: L8 L% ]+ k( g! ?- f# F( VCode:
! E7 J( r" j; F, H8 e
6 e) m' r, P, o; B4 Z+ B( I# Define MAX_SKILLBUFF_COUNT 14, R7 R" h5 y+ @* C2 h t
/ H+ n1 o& T6 J1 ]* p ?
# 3 Change the 14 to your number (eg 21) and save it from
2 \! A4 H/ R6 b3 t E# 4 compilation and ready! r, x6 D, v& |' p3 z6 a- @' t
" b7 z, T1 V0 |, n) J
4 S' w- l, k6 A( k
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:+ i2 l7 K) A: [" X$ b& w+ ~
# j: @+ y" C) f9 x G* j: jdennisdra8 a/ r& C$ h7 M! q2 M; I7 ~
.Crasy' Z6 \0 `( D' e: m# X2 @
©ross
, z9 v; U2 r6 d3 s( q9 ZSedrika, t- o5 F) f* ~* {; [
. y! J& R4 s( o0 ~1 a) R1 K! ?' G
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! ' h/ z. C- E5 W, g7 R( ^, Y. s- h
5 ^5 v+ o% s Z& f6 ]
P.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less
( M- ]% \( }, R3 W" M
- |% W5 l/ K: e, Q* h" H( z% w: a5 q! y! _ E
Update 1:
how to turn off "Profiler" in worldserver.exe 1 N t4 v1 q" S0 r" b& q3 Z* w" r
u2 r6 N) P. W: G [% a. L. l/ I; z( a9 c, \2 P
in VersionCommon.h of Worldserver Solution+ H' o V- F! c; L3 R' V2 J
Look for
8 k' K9 m l+ n( T, ]5 ]" U* a; u
' Y7 E4 N' Z6 R. [#define __PROFILE_RUN U. U; ]% V2 j0 _' i7 K5 ~
4 G I& A# J6 V7 Q3 t3 zcomment it or simply4 F3 u! g- K$ T- Y, E7 a) J
$ D4 S7 u& v; Q7 E1 W4 E3 @* U
//#define __PROFILE_RUN
7 v |, \# R& Q! U/ B; F* n- W9 [1 z+ W( H* A' T
) Q( N- D. K4 L4 V8 ucredits 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投寄。谢谢。我添加更多的很快如果你有病加太 7 D: x2 T6 w+ d% Y8 o+ k
|