|
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 X5 c+ @/ i, g
change level without Rebirth
0 P: w( `& o6 |( T" O9 U6 A5 \4 s$ c& e8 h: g/ |
Now, let us begin.( {: n* i& h( m0 P X+ t
/ \% n3 z9 [# d1 i5 `
Requirements:
: k$ r0 v/ h& PSource% A5 N, A. k3 I' J: Y
Notepad / Editor2 v: J0 T: m5 K) o
4 w0 S, N. E2 H5 e; H" D
/ / Tips by Sedrika0 V: s1 S4 k4 K
+ n% Z w0 j4 D& w; f* G
It is up to you how you do it ^ ^9 | C1 k$ o' E8 ]$ y
. E$ s6 v* P5 D% I! Y% H/ IGo into your source folder and open the definejob.h0 f; [- [& ]0 h4 k9 |
Search there for:
7 ?' q' Q% T3 F) C. ]0 \+ M/ ~2 E+ H0 ~2 B! A
#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå
% l- L9 i( H3 @3 e( h3 t#define MAX_LEGEND_LEVEL 129; P9 u1 v: c+ w. @ h2 g
#define MAX_MONSTER_LEVEL 1608 f$ G p% r) |! _
#else // 15Â÷ è÷¾î·Î ·1o§è®àå) u& R+ ]# ~3 k# t6 K' F$ O: P
#define MAX_LEGEND_LEVEL 121% V N/ G8 s; M
#endif // 15Â÷ è÷¾î·Î ·1o§è®àå 7 `; { @$ \$ i4 ~
8 V7 ^7 X: l1 X
) N$ W+ [8 K. X$ ~
Red: Player Max. Level
; Q- h6 N3 H8 _* h/ YGreen: Monster Max. Level
+ N5 G1 x) V( h" m. g( w- L2 Q) ?7 C% |. G. [- l% ^" B8 J$ f
These changes as simple as you want.
2 g; h1 W# ` s' }* j$ k& F0 g+ F4 U. y+ l/ Y& P' Z( `" `5 M
Then you have to just recompile the World Server Files + and make your clientin the Definejob.h the same changes as in the source.
7 J, L F6 P* {& W9 O. g4 {$ F d6 R1 R! a3 I+ l
Part 1 of blocking CE 0 ~' B& v4 n" K0 J$ o( e
2 d% E6 \; d( E1 g8 MIn this tutorial I will show you how to change the Head of Mark flyff.) Y+ M( T( d8 |5 U. m! W- `0 U
The current Head Mark is well known, 5E, which results as a string ('^').! x2 Y/ ]9 U) w$ n9 m. a5 h y$ M
& i* r0 O J4 M$ T
For this we go to the World (Project) and looking at the Buffer.h after thistext; X- m0 o5 ^# P( M0 G
Quote:2 C2 ~& K& C% b
# Define HEADER MARK '^' / / Normal messageheader2 s4 Q* r1 |! {- F6 n9 Q8 T5 s
# Define SYSHEADERMARK '%' / / System message header
# d9 A. W/ _" S+ ^4 ^3 d* K+ uWhat the Sysheadmark is looking for is not even the top 5E.8 b2 W- c) q; ?4 w7 C; j
Change this and it makes the CE Not work on server.5 H. |! F4 z( l# {$ P$ }
7 i! O0 A+ i" w6 V4 `Then Tom's anti-hack is no longer useful.
* T B$ g2 ^( k1 A/ P
\+ A% W h' `0 a' q5 j# zLG Sedrika Part 2 of blocking CE
* u4 l) Q0 p% Y# v
* v2 c- b. c# `. Y% d9 z3 SIn 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.
1 q$ s z" M0 Z) O- t* O8 vWhat does this have an advantage?; C1 _8 T2 ^$ G" ?
The editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself 7 l/ G; @ C% Z+ s: X1 ~$ g7 L; q7 @* R
: f; ?3 l& s. k8 r- \' n7 ?
% _' x( ^% h$ K8 h- s* h( X
First you need to get open source even know how you do it, is left with you, andyou do the project on the Neuz.- h Y; L7 K# s/ X
$ H( g* P7 Q8 H7 F' y: N, L
Then search for the following content in HwOption.cpp p5 D/ c$ b* |- X+ {
% H) c, v( e/ O, U9 `0 U! B7 a6 ~7 K' ?7 I: @8 R# ^
if (scan.Token == _T ("ip"))
% Z9 _$ n% E7 `1 b/ T! e0 {% b{
2 v; ]' q' C5 x- B k5 lscan.GetTokenEx ();
5 K. F- }2 y. U3 C5 K5 X' jstrcpy (m_IPAddress scan.Token);4 y3 |) l, E, V' E
}- F* g u( z" f- G- [' N
and turn it into this:! ~- [9 I+ n }$ | {9 e
Quote:
6 }5 p: |7 Q: L9 K0 l3 [. o5 pif (scan.Token == _T ("ip"))2 O+ _* C$ w- }" k
{7 K7 O$ K3 }# k1 f8 _' d9 m1 ~8 o
/ / Scan.GetTokenEx ();) [* F( _1 O$ ?0 p" W6 \# Z1 X
/ / Strcpy (m_IPAddress, scan.Token);
& i5 h% N! K) Y6 M8 l G2 N}
! E7 S0 g2 _ w" E, MAnd you created the solution.
8 ^1 t( [' m' ~9 {- ~1 I3 z# Q* Y6 b: P( \
& D1 x4 c/ N( u0 ~4 cThen read the Neuz not the IP from the INI anymore. even if put in it
' c: k# X' }: z. \0 J6 m# t
4 F: N+ `& A0 U# R, E' M6 r, O ^
Max skill's 5 ~& k/ g9 a# o7 v
* U2 E9 n7 [" e. 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
' k8 F) }. A* Y+ e
( l9 m: f& b6 [+ eWith the TUT can provide the remedy it
5 B+ z7 I4 j$ h9 |
$ H$ f! b2 m& m/ Z! ^- X# 1 opens the file SkillInfluence.h% x& |$ R k2 N4 [ r
# 2 Search# A: D1 r X _" O, n2 ]& m ?
Code:6 ?: A$ J$ w- k9 w
: |# q; y( \* B) J# Define MAX_SKILLBUFF_COUNT 14) P: G2 J9 [# }% e
; @1 B# P0 r4 @7 J
# 3 Change the 14 to your number (eg 21) and save it from4 Z* D8 {6 v) ?8 z. a
# 4 compilation and ready
1 N6 A$ N3 G- u% J
8 }/ q5 S# M2 ~% y, i" H X! Z' w+ q! L$ ?/ J0 y! X
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:' Q/ S% m4 q- ~
7 e7 L7 U8 y) j- J$ R& I4 o
dennisdra
' U) t6 a, e- z: \1 U; u' L1 b.Crasy% B$ o4 C* k; v2 t7 R) O1 u
©ross
9 A' R2 ~7 L( R' X/ ^5 M X7 ESedrika* j) _* b$ \+ I9 l8 a
4 V, a6 c { E8 X6 \* e# `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! 0 e& z5 J+ d& g# j8 v
7 C/ I' a/ f% u i; z0 dP.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less
/ n8 U: j# X# ~3 M8 E( q
# D1 ^* |+ G$ z6 L2 \. \* F n# a9 q8 ?0 ?! T( x3 |% w
Update 1: how to turn off "Profiler" in worldserver.exe : Y0 b- @2 C8 j. n: s/ ]7 C
+ @1 V0 t' G! l: }+ @1 P- L B4 g. U6 g7 D
7 T2 G# w! g2 @9 C" D' v- min VersionCommon.h of Worldserver Solution4 h% g# w# ?4 l/ g+ c. L9 I
Look for( k. Q3 ?- y6 b% d
+ q3 z& X9 @: O3 P, d# w#define __PROFILE_RUN: y6 H. M" E5 d& f8 I7 `6 F
+ \, |, I, G5 E' [! F& Fcomment it or simply/ S3 k6 y. |* `
" L$ X! j& [" n; W0 h# i& ?& i
//#define __PROFILE_RUN
4 ~ M" \7 E4 t1 j# z
/ z# a/ D# {6 U1 c. V P9 R* _5 B1 L; }0 ^
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投寄。谢谢。我添加更多的很快如果你有病加太
# R9 |, U9 O" a3 l, P |