|
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 ( d; g" @6 Y# ?& F3 z$ B# ?1 t% x
change level without Rebirth
& ~7 O( g, x9 b% n7 _3 \' w2 } ~" y2 { K
Now, let us begin.: k" V( b$ n; `- ]5 H8 r+ o0 F
- C) C# [4 R5 y* {4 d* T2 ?/ W4 p
Requirements:
+ N8 ^' Z% Z, N! u5 ^Source( s( c, q/ W/ g
Notepad / Editor
; j: k" p$ Z' }- `! f$ S: \& |& n
/ / Tips by Sedrika
* e$ n l' j p
" K9 i8 j. |# W$ k$ D' R" xIt is up to you how you do it ^ ^
' [/ o: T' |: |' b
2 `$ ~ y6 W3 `+ [& M' tGo into your source folder and open the definejob.h
3 Y6 ^( O$ `# p* R3 k6 ]Search there for:: h5 I1 Z6 J8 K: _3 r+ x1 w, V
$ F! n& v& ^- G' ]2 o; X6 E# x# e
#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå
, E' e. A" |/ @7 }#define MAX_LEGEND_LEVEL 129
- Y7 ^- }) W# i! F#define MAX_MONSTER_LEVEL 160
# w$ c2 `# }- y. j+ X/ o. c#else // 15Â÷ è÷¾î·Î ·1o§è®àå0 d* Q7 V& d8 b( }9 W% y
#define MAX_LEGEND_LEVEL 1212 |2 T$ ~0 W% b$ M/ e" y: M
#endif // 15Â÷ è÷¾î·Î ·1o§è®àå ) U4 P: F5 ]/ _- b ?4 J# n
' u: P5 V6 V. I; T. Q* s0 \
- f- o% A3 h! }0 ~/ ^+ N0 T
Red: Player Max. Level
* n2 @* _% S7 j& h& I9 V1 C# pGreen: Monster Max. Level% {1 @0 q- t7 o! A+ Y! K
2 f4 N4 e" B' v! o* kThese changes as simple as you want.: Y+ h$ ] s8 [$ {5 u5 Y
1 k) M8 U% s+ _" `+ k5 S& y9 `* j
Then you have to just recompile the World Server Files + and make your clientin the Definejob.h the same changes as in the source.2 Q2 v# d7 v. C' a% A7 r
& I1 @2 j/ a9 X; w8 `4 Q
Part 1 of blocking CE @7 |. _0 Y9 }
# j! ^/ K8 L) i8 j# O9 m. L. Y6 i
In this tutorial I will show you how to change the Head of Mark flyff.
& p) b( _7 N8 V' a4 YThe current Head Mark is well known, 5E, which results as a string ('^').; R/ l! v5 C; R
8 e4 ^+ Y: Z* ]1 x F
For this we go to the World (Project) and looking at the Buffer.h after thistext
: y6 Z' T3 Y% c6 L" U2 RQuote:
7 \( \) ?. D4 ?3 ^7 U5 z# Define HEADER MARK '^' / / Normal messageheader
( y M5 r, r% V D: R# Define SYSHEADERMARK '%' / / System message header
( z [! R t& ~! S1 JWhat the Sysheadmark is looking for is not even the top 5E.8 L- C. M/ z, Z' y: C; M
Change this and it makes the CE Not work on server.2 |. x0 l* f6 ]7 U8 t; |0 Z8 k: [% y
* P/ S- s: c. d0 k1 sThen Tom's anti-hack is no longer useful.
* L* G& b$ A: c, u' C2 H2 K: U& I3 f( j$ Q: \% `. {1 v7 V/ c0 @
LG Sedrika Part 2 of blocking CE / l- @8 p; t# [2 M9 ~1 c
* y# ?; X( X6 v
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. 6 [ e3 Q. ?! T" i) T+ N. K( f
What does this have an advantage?. G; d M1 _2 M5 m
The editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself
$ X- H" L' ^; Y6 e* j# G& T- Z7 T: U" N% @+ R j4 [
0 p9 f/ a) X. X, c' h
First you need to get open source even know how you do it, is left with you, andyou do the project on the Neuz.) o& R) w: k8 c- L
: \! a# o3 L& `; g: ]4 [. z: RThen search for the following content in HwOption.cpp X$ ~* @1 U/ Y1 F8 l& P
" X' E& d ~- C% @; l% w' I( x: a
2 d+ M) ?2 V" N3 y% p! i3 C
if (scan.Token == _T ("ip"))" Y2 l: H. d3 x6 q. T5 Q% H- i0 U
{% ?$ }! |( O9 i; Z- ?3 l
scan.GetTokenEx ();
1 t- i; v, Q8 V+ B4 ]. H/ p: W% f& Xstrcpy (m_IPAddress scan.Token);. _, g! K; D( H7 }+ u7 ?' t) t
}
$ n$ U2 ~/ `2 ]; ~* m* j9 h) Fand turn it into this:; D$ z1 b& F: S$ u; ^5 D
Quote:) a6 u' E4 V, s& i3 o: X
if (scan.Token == _T ("ip"))6 g; T1 T' u! X6 p6 K0 ~+ ]
{6 E# n( M9 }( i6 v* P: i+ \
/ / Scan.GetTokenEx ();6 j. U, Q6 p) P; {) S3 o, f' v# M
/ / Strcpy (m_IPAddress, scan.Token);7 K2 A; u/ \" j* D( B
}
! [3 N+ n7 V7 pAnd you created the solution./ V) [0 T3 @ e. S
& n8 Q, B' V5 T
# y9 R+ n. v' {# u1 ]$ i3 r, a! eThen read the Neuz not the IP from the INI anymore. even if put in it3 U. s7 l, ?( g! f
! u0 v' U, {5 C/ k Max skill's / f+ u! N% I" @ e0 k
4 d- S$ \; w, I
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
; O9 ?2 O% U! q2 z
% Z: `$ P0 B6 F; aWith the TUT can provide the remedy it8 t' Z* z5 q( i7 e* R2 \
2 j" C* |$ R" \3 c. R/ C. {# 1 opens the file SkillInfluence.h
# r1 G8 n' s; a# 2 Search" G, C: e- O: Y& k# A. ~* m, y4 y
Code:
V% D) B' m- I& v3 F! I0 U8 L6 ~8 i$ w
# Define MAX_SKILLBUFF_COUNT 14
`0 |& E+ f2 c# ~. L2 \9 _) Z6 ]" O
# 3 Change the 14 to your number (eg 21) and save it from7 w' |' d0 O" z& a; G: r( I
# 4 compilation and ready5 L, L6 q% S& Z8 x# y* E% C2 m
4 }" P+ Z2 Q+ L3 B# d$ T7 ]8 b% B8 _. ^3 A4 _! u$ c
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:
/ |7 ]1 C/ P E, h" v+ r+ | o6 w ?4 \3 @. v
dennisdra' {! F. k% C$ `+ \1 s# B$ N
.Crasy
& A0 ^' l8 ], l" Y4 h6 h©ross0 ^6 d& K: X7 t( z( C, W1 j
Sedrika
5 N. a7 m# r" [. n8 O" z8 e" l# Y& w: o: G6 [: B1 h# F+ ~7 ~3 \
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!
* a3 ?$ [* E# v; ^" F- m+ J# e: }& n( H% ^6 a
P.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less+ _! q1 l: G7 y& @+ y
2 F1 s6 Z* r3 P- C1 ^$ s3 R) w+ E" p
; |2 T* G) b R1 S) P+ A$ ?
Update 1: how to turn off "Profiler" in worldserver.exe 2 b: R5 x* ?+ c& B
- A/ N6 p3 g- A
) Z. k! ?6 ?$ {1 R$ J5 M- E' din VersionCommon.h of Worldserver Solution
& ^/ m8 q; j- B/ e- c8 ^Look for+ M( G- B0 t- K5 ~7 T, n
/ {& ~: e$ _; Z0 L
#define __PROFILE_RUN
3 U1 v1 o0 e W8 u- M/ e; S6 ?2 B$ K
comment it or simply( _( J8 U9 A' {! N" ?0 B' I
3 Q+ }+ N0 o; S* A C//#define __PROFILE_RUN
5 @; g' _1 S) q1 b2 M+ _" z+ G# |# @2 m* o
2 k% ~) l1 ^. F0 _" s
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投寄。谢谢。我添加更多的很快如果你有病加太
6 L; Z+ T+ H6 G% i |