|
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
$ {( z; k" j# h7 q$ hchange level without Rebirth
0 n/ @2 ?; v9 Z# ?$ V+ W( x( b$ V3 M+ Y# M- J
Now, let us begin.
- ^3 L. e( R' @1 v& p( Q m" S$ e1 f( z; Z2 D; A. L
Requirements:
! _/ o% F! q# O4 C( r: USource$ {8 B9 D( |9 Z# b) `% D( a
Notepad / Editor" z! L3 ^$ J2 n. W/ b
& X2 Q F0 f- E# l& O7 z+ U/ / Tips by Sedrika6 m( C. ]2 O1 L
+ {1 u2 N$ v3 _ Q7 T/ D9 _
It is up to you how you do it ^ ^) B# ~" Q0 J8 ~
6 ]8 b) k6 x* @1 O2 DGo into your source folder and open the definejob.h) a$ B4 ~+ @1 v, K& ?
Search there for:
4 F' b+ F7 ]5 S8 o9 {, o, b
5 u0 H- B8 ]7 p! O8 @0 Y#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå
) t+ g4 g/ J! Q+ y& C#define MAX_LEGEND_LEVEL 129
% o$ {% @0 [5 a' }* N9 O#define MAX_MONSTER_LEVEL 160# j) h1 Z, J! u- H+ ^. `" \" _- X
#else // 15Â÷ è÷¾î·Î ·1o§è®àå6 |5 I. s: c! u
#define MAX_LEGEND_LEVEL 121# Z. _- v8 H" `0 `2 }5 z
#endif // 15Â÷ è÷¾î·Î ·1o§è®àå
: X9 K$ N7 n5 u% c9 d9 ?' W$ c$ B! f; _7 W- L9 V1 [
8 G) d+ f& n3 C; ?2 V
Red: Player Max. Level
3 O6 t0 C3 d f* p) M2 `Green: Monster Max. Level
5 t o; e: b, V5 x- E5 E1 m# X }* S5 F3 h0 R4 v3 a0 t
These changes as simple as you want.
( r4 m0 }& i6 Y8 a
1 {) X( E0 W: D! A& mThen you have to just recompile the World Server Files + and make your clientin the Definejob.h the same changes as in the source.( N9 V0 F9 Y+ a5 |3 [; Q$ E
! J6 e% a, V; A7 R
Part 1 of blocking CE
. C8 q6 h; V. h
- J }/ s. V# B4 @/ gIn this tutorial I will show you how to change the Head of Mark flyff.- W1 g q) g! H6 _# C# g" @
The current Head Mark is well known, 5E, which results as a string ('^').$ y0 W9 `; ~! z% W
u# q5 Y: u9 l/ z R, m7 c3 _# B
For this we go to the World (Project) and looking at the Buffer.h after thistext9 N# l9 e7 D# k! Y! S
Quote:; P9 c. H2 H/ K% x% E
# Define HEADER MARK '^' / / Normal messageheader
8 e! R `6 x. z X4 ^& ~1 ^2 f# Define SYSHEADERMARK '%' / / System message header- M! H5 d \2 e' |8 a2 @
What the Sysheadmark is looking for is not even the top 5E.
/ d; p( O# u3 Q6 nChange this and it makes the CE Not work on server.
7 L# `6 v# G6 ?4 C3 L( q3 n3 {
5 K2 b2 e& V% Z2 w4 u' XThen Tom's anti-hack is no longer useful.4 C$ |) X, F- g) Y$ S' l
' R, p6 N% P4 e3 F$ P" J& |LG Sedrika
Part 2 of blocking CE
, `7 }* D, j& H) I; w' I1 |5 L5 k |% C
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. : l4 ]: V, h9 t# l' `
What does this have an advantage?
. W s w9 e) v4 @4 `4 K3 n" s+ P0 cThe editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself ( M# d r2 E, w5 I- g% g
# d1 P6 n7 \5 S% `: K) v. x5 \$ a
: K( l0 ]8 U, P* ^7 V( y0 u: C9 b ?& }! mFirst you need to get open source even know how you do it, is left with you, andyou do the project on the Neuz.$ Y, [* ?% o2 D3 s0 A) w Q
7 ]1 L$ W* `0 Q; X+ B9 i1 o6 _$ T/ sThen search for the following content in HwOption.cpp 9 D5 ~) a; S5 k
! r8 y9 w" C* a; y$ @
4 k6 k' k3 I, R3 I" z- `) i/ A1 ~if (scan.Token == _T ("ip"))
+ Z1 [) [7 n4 ^{0 p( D0 Q) ^$ ` w9 Q( N4 _
scan.GetTokenEx ();
" a* X! H- }+ z5 ~1 kstrcpy (m_IPAddress scan.Token);
& m4 d9 A* ]6 m3 p) g}, U7 @. @' |: B! d' T
and turn it into this:' Y% e1 ~2 i1 T& G! X8 g; t9 B
Quote:
! s# i: g2 ?( d: O- X. Dif (scan.Token == _T ("ip"))
! j. v0 f$ \5 @5 o; ?{
5 n+ \6 u: o1 N' o4 h' K: ~$ b/ / Scan.GetTokenEx ();
8 L- F! G# O4 @" h5 z/ / Strcpy (m_IPAddress, scan.Token);/ u# C+ Q# q+ {0 c( G2 h
}
: X& |2 b# K `, j* k! R4 }, D) LAnd you created the solution.7 V- i/ k2 L9 x7 E% ]5 k' z! I
6 c2 K) `4 p0 `: C% |" O) F' J) B# C [
* R1 y4 ~0 s% g& E
Then read the Neuz not the IP from the INI anymore. even if put in it
* M! x4 C, V) ^- m/ `& b! y; h* p0 c5 y1 _
Max skill's
5 T8 r I3 W" r2 T
9 [: X+ o0 a, rAll know that, 14 Max buffs, you get all the RM Assist Skills + Skills fromBuffpang and no more space for the YJ, Knight, Ranger etc $ E# `' l: ^' g4 y+ u4 l
0 l4 Y7 y, q s: hWith the TUT can provide the remedy it
- c, P1 f' e4 J& V- W' m3 `
! K) S% B1 [* ]* }1 q# 1 opens the file SkillInfluence.h" K5 _ L+ i/ F
# 2 Search' O5 a/ b5 }1 Y) Y2 Z% k3 o+ i* z
Code:& g1 ]0 {6 ], _1 S" V; x8 h2 y! u
1 ]" D! d( y/ \- B# Define MAX_SKILLBUFF_COUNT 14
4 \+ L. h$ o0 S5 F+ x) i/ A4 H& ~2 N/ k$ h& y) Q
# 3 Change the 14 to your number (eg 21) and save it from
3 n) R( ^% e( ]9 ?7 ~! d# 4 compilation and ready- P. e1 ^6 o. j) |% `7 S5 X# O
6 O/ Z' Z, V, e" }" Z% u( f& P( A
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:
. D% I6 d; s6 _9 M# s: p. z- c) _* b; Y
dennisdra M' C* u5 Q7 X" I C2 o
.Crasy
8 c" y8 z% e1 l0 d©ross
3 N: c H9 ]& ^) H4 ~Sedrika
0 @$ i$ M+ u- C7 I' \3 H& `* y! H$ b, s
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! , F( p" u3 I$ [- m
( z7 {/ D ~1 j# ]; v/ y5 rP.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less
- T+ ^) f0 n$ K8 P4 _% ^+ j( U1 ~! \
& C$ [/ k: R1 R t, E v
& P8 q- |9 a* U' o4 HUpdate 1:
how to turn off "Profiler" in worldserver.exe & r; \" l" {& V R) V9 z
% k3 R8 F% ^4 q
7 L& H% [: [" P+ y$ c4 u1 c
in VersionCommon.h of Worldserver Solution* u- W% v& l$ }# Y
Look for
, I& i$ W2 S3 t: j' s# k$ u) X# L& [" k' a! n3 x
#define __PROFILE_RUN
4 _1 D0 G+ d$ I
2 y+ x% M$ p- H7 d- {: I! _- Mcomment it or simply2 _9 I# b+ f& x7 `5 R, G" O# y( n
9 F8 t1 |( n, K) y' ?7 w7 w//#define __PROFILE_RUN ' x4 ~8 g6 r0 ^% w% U+ d
8 U4 X" {8 n1 i: z* u, B9 U8 R" C! w1 k: k3 g3 [
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投寄。谢谢。我添加更多的很快如果你有病加太
3 T8 P) A [% u |