|
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 C9 V3 w5 H( _
change level without Rebirth& f, I; [0 ]* r8 {* X
( S) P0 D2 p$ d/ w7 l+ ENow, let us begin.; L. w2 g, e( L" [7 V: Z1 [+ g0 i' N
+ t' i ~9 F/ @* ARequirements:: j" j/ h4 _ W/ H! [
Source& Q* F# H0 ~5 J# @
Notepad / Editor
- g: P: Z& u. w' J; p3 \3 j( C7 `# K" Z. b z" e
/ / Tips by Sedrika4 l L# J/ d$ t! O" X
: {6 n t% q0 n* J; l5 `* m9 @9 i
It is up to you how you do it ^ ^" d% I- ]% M4 c4 B: {4 K0 ?- K, ]; C
# s) C+ t) K9 w% U% I
Go into your source folder and open the definejob.h8 s/ H* z0 z( z
Search there for:! z9 X! V' C( @9 U/ ^* n
! b/ c) l5 p% G$ ]" v7 W
#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå
: N( P8 k* U+ ]; o! K# n#define MAX_LEGEND_LEVEL 129
2 `) O$ ]: o' ~( e# i. ~#define MAX_MONSTER_LEVEL 1603 M- U3 c; J4 n, Z# Q5 F
#else // 15Â÷ è÷¾î·Î ·1o§è®àå
5 c( D4 m. k j$ y! {9 e8 Z#define MAX_LEGEND_LEVEL 121
6 p7 j2 q3 ~4 G& g9 l' L#endif // 15Â÷ è÷¾î·Î ·1o§è®àå
7 T. a1 `- Y) o5 h! e9 P) k
+ J. ]8 C3 [8 q# G3 \) M# E" n* `; ]( l3 P: C2 E$ _
Red: Player Max. Level
# L0 p) b$ z+ {- }0 n% V9 jGreen: Monster Max. Level0 W% m& d) p }$ n$ X, ?* M5 z" x
0 E3 ^, m$ y! xThese changes as simple as you want.( V2 c; M( H: B3 m; ^
( t4 p* F1 F+ f3 eThen you have to just recompile the World Server Files + and make your clientin the Definejob.h the same changes as in the source.6 G8 n6 z9 d8 `4 D* k6 S
+ T) \8 ^8 Z/ o& \ Part 1 of blocking CE
+ Q9 ?' f5 S. Y* r4 z s+ ^: b; f, n% X) Z8 d, I- W; u( O
In this tutorial I will show you how to change the Head of Mark flyff.
" |; x0 X: d8 X( yThe current Head Mark is well known, 5E, which results as a string ('^').! e% W) q) s( B/ i- t7 G- i
' d: [5 ]0 D0 @# Z8 v- z* q
For this we go to the World (Project) and looking at the Buffer.h after thistext
+ A6 o- Z2 g9 zQuote:' o4 f- q/ O' A) ^
# Define HEADER MARK '^' / / Normal messageheader; Y3 S+ b! l4 T& Z
# Define SYSHEADERMARK '%' / / System message header3 ~6 |* R6 t9 Q8 i
What the Sysheadmark is looking for is not even the top 5E.2 @ J: m) R z& R. q1 D
Change this and it makes the CE Not work on server.
X+ N X6 c& ~8 k1 k/ E
% H: ~ n/ W# f8 Z4 `Then Tom's anti-hack is no longer useful.- A7 _; `: a M d
; O& M) k% c3 s8 A4 M0 V8 iLG Sedrika
Part 2 of blocking CE
# X: I0 m3 a% v1 C' k+ w7 Y: H; t# s0 w
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. , Q! a1 M% t( Z6 [0 b. [( ?8 q( C) m
What does this have an advantage?
% s- [4 w, R* U) c9 w% b: C2 h+ VThe editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself
+ b5 E% R# v! k% U$ V$ q3 i! D/ t) h0 ^7 e& D6 v1 l C
/ e8 s" i8 W+ _% XFirst you need to get open source even know how you do it, is left with you, andyou do the project on the Neuz.
7 | L& F9 _5 Z l7 C
: J8 O3 N5 O8 x2 F9 A! K" J1 q* D1 dThen search for the following content in HwOption.cpp
; y* W9 ^( f* _1 Z, J1 h2 L Y# k$ q
* O1 |! s- r& J' p
if (scan.Token == _T ("ip"))6 j3 Z+ S2 R; l% m
{
( h f" H( g4 K# W% i4 q& pscan.GetTokenEx ();
5 R' J5 V/ f8 w) T8 _* Cstrcpy (m_IPAddress scan.Token);
% d# n# [" Y* C: [3 _}& r8 |6 [4 h1 X8 U9 q! l
and turn it into this:
! L4 ?1 |5 M' |, w. I! ]8 s2 X! jQuote:3 l1 V5 f7 O- K2 V4 \" v3 c" N, T
if (scan.Token == _T ("ip"))
5 K: ~9 j/ m/ M* V{
( c9 G9 J3 [$ r B, ?/ / Scan.GetTokenEx ();
: }/ m5 B7 t8 d# u" S- i/ / Strcpy (m_IPAddress, scan.Token);/ d) g/ S% r! l0 Z8 M" o$ z
}0 ?, a, w* L7 U6 I, I4 n
And you created the solution.
( @% M) F5 q( G, m+ z8 ^. G" @! L" ^ M! g8 b9 j: {% F! Z% F
9 V# R0 Z6 l7 c/ @; QThen read the Neuz not the IP from the INI anymore. even if put in it
2 x* k, t9 q, _ o9 t, k! k$ h" ~3 E' V# K, u$ `
Max skill's
+ s! a& ?) j! P9 {
0 K# x7 W2 ], l! U# B* M8 AAll know that, 14 Max buffs, you get all the RM Assist Skills + Skills fromBuffpang and no more space for the YJ, Knight, Ranger etc
2 E: c+ Q* H) R7 V
2 {2 S" h/ b, W: KWith the TUT can provide the remedy it' [' {" c6 `; T% ?3 i
' o/ |- A: \* {3 p5 ]5 T$ _
# 1 opens the file SkillInfluence.h) o+ b! @: i$ U7 Y' n [2 P: W2 _
# 2 Search
# {# |1 L1 M; I+ [Code:! W' o+ x& V/ j, I6 C# C" |
2 C W5 I) z `
# Define MAX_SKILLBUFF_COUNT 14: ^: J6 ~7 }: l4 o* V
3 D! o- ^* Q$ o. A. F, F9 H
# 3 Change the 14 to your number (eg 21) and save it from! n) }/ Z+ [( k" y3 A5 x- ~
# 4 compilation and ready
2 \% @3 T0 F# |/ R2 U
& W; h4 y$ o6 R% f4 N' I8 u
9 F/ @' R7 Q9 }5 |; B* _/ w( xI 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:
, A$ A8 E, t( ^5 j9 x; x: A# L' D6 B# e4 p. G0 z' z
dennisdra" C/ n0 r3 V0 P0 i9 k( i
.Crasy7 D! j+ q' o1 [- q& ]: M
©ross
# w- j/ p: X" X- m! h* e9 oSedrika
' `- ]) [* F' M9 R3 E* N0 N
9 \" T4 Y/ ^$ R9 p: ~' x, g9 `# [" teverything 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!
. v4 }4 Z5 {' i9 g J; Z, C( V; m% m6 v
P.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less/ C$ a4 x2 G- \7 }0 a5 D7 [
6 f! ^+ D% L2 E8 N0 i
E- A2 D! k& {! |+ K+ N
Update 1:
how to turn off "Profiler" in worldserver.exe
5 z8 e4 v/ H' z$ x* q) P
1 |+ l, D4 G D" O
: W$ b$ ^- R+ a( }' _in VersionCommon.h of Worldserver Solution
' m3 P7 L0 f# W/ d' o3 z- M. ILook for
# i B: }+ k3 y( G( K
0 U" U6 M5 L6 H7 ?5 l3 T" N#define __PROFILE_RUN
+ J) V5 G; j b- u8 ?, Q2 e: G
4 ] A2 w5 n0 Y# |comment it or simply
( X, O' B1 [) |1 r1 }, J, w, ^9 S" o. G! `/ P/ O
//#define __PROFILE_RUN - m1 p& m* x- }3 ^( g I* y7 t
+ q i8 j) |2 J. t8 C4 a9 Y
+ A" z& d9 b i$ l/ h+ Z# e# P' J( ccredits 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投寄。谢谢。我添加更多的很快如果你有病加太 % `# m; h, I$ _7 c$ L
|