|
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 Z) b6 Z* ~& Cchange level without Rebirth2 m- M. @- G9 _
: b: h$ }3 J1 @" R, s2 qNow, let us begin.
: E& r. c5 C/ R' f/ r/ F, p6 I* u) ~$ P% T* d* O6 O4 y
Requirements:
7 y4 ^, V; t8 JSource8 `* J& L) h' H- {% e+ L% A& _
Notepad / Editor/ g7 c4 i7 ?+ H4 p" r% R# I
/ I4 i. C: V w4 @' b- f' b& H5 c
/ / Tips by Sedrika0 ~( ]3 C& i& Q; R2 E
9 G, u! j2 V8 S J+ SIt is up to you how you do it ^ ^: u7 g3 ?; U! i% ], l
% {. v" ~; g: i- L- J
Go into your source folder and open the definejob.h' t+ R7 w4 _( f/ ]" _! {
Search there for:' P3 h/ w; c3 j+ R
4 j/ z1 C* g6 l* o( S2 q$ N#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå
+ H7 C+ U6 E# o) K$ q& P) k: I#define MAX_LEGEND_LEVEL 129
0 _9 x8 H- L9 l$ v) K$ ~#define MAX_MONSTER_LEVEL 160+ q/ C- \) T, R4 N2 Q! ^- V2 m
#else // 15Â÷ è÷¾î·Î ·1o§è®àå4 l& D6 _& V6 |; e- W7 d5 f7 k7 d; [* B
#define MAX_LEGEND_LEVEL 1215 Z, s0 o% h: h. X7 n/ A8 w( ]" ?" g' w
#endif // 15Â÷ è÷¾î·Î ·1o§è®àå
: m8 p$ _6 B `6 \) m+ U$ _. [
d# Y# u! p! Q6 f) l' P6 ?" i* M" H" }
Red: Player Max. Level6 P/ L6 g% a9 W! L. {0 U
Green: Monster Max. Level6 T. n/ u0 U& c
0 J* Y7 |6 K: l% [, C
These changes as simple as you want.) g# V' S5 J, c+ h# k; u
% F. ^5 v) ]2 P* ` e7 w- _Then you have to just recompile the World Server Files + and make your clientin the Definejob.h the same changes as in the source.
' L2 K9 [: X. D% D; M/ L I$ x4 x# n% q" R5 X4 c: T& ^0 U1 X
Part 1 of blocking CE " C! n2 T4 S3 [4 C% W
0 q7 F7 }; J% E
In this tutorial I will show you how to change the Head of Mark flyff.; Y4 Q6 j" h3 G2 t. q
The current Head Mark is well known, 5E, which results as a string ('^').
% J8 p. s2 T' u' z
4 X9 ~& ^/ V r8 _6 {, Y1 hFor this we go to the World (Project) and looking at the Buffer.h after thistext* j8 m2 \; H4 i$ N; m, Q
Quote:% N; X+ z, N; j6 G
# Define HEADER MARK '^' / / Normal messageheader9 J- e, w2 X. r
# Define SYSHEADERMARK '%' / / System message header
4 p7 m1 O8 h% k* \- z+ qWhat the Sysheadmark is looking for is not even the top 5E.. ?! ~7 r0 X3 @8 Z" p3 ]9 N
Change this and it makes the CE Not work on server.
, n) J8 A2 t% N) A. R A: R: v& Z- `8 b# L6 R
Then Tom's anti-hack is no longer useful.
" c# ? c7 J, O: I5 u4 ~2 S" t% N4 R! T4 H0 o
LG Sedrika Part 2 of blocking CE * D- _+ T- \* B) \
$ C8 g, n" A4 n2 H
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.
% \% ^! i) M2 ^# W( i3 VWhat does this have an advantage? {" |6 O Y7 e
The editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself
# h! J% K2 k/ U( o% U3 g6 y# J4 n) I9 |: t3 v) W x5 Y
+ W% I9 a- }) P! Q+ d# B: G, JFirst you need to get open source even know how you do it, is left with you, andyou do the project on the Neuz.0 h2 n1 ?" d' b
J3 v( r, O6 v5 v$ j$ a9 e/ v
Then search for the following content in HwOption.cpp
/ G: X2 ^; m" w; H
) ]9 ]' A6 E: B# \
. v5 y. i: Z8 _: q' L4 M% uif (scan.Token == _T ("ip"))% m' i' e0 u1 ^: }! o |
{
1 K! `/ k9 {8 o! Bscan.GetTokenEx ();
' k4 W' i5 q4 z" w( [2 q8 D. _, l, sstrcpy (m_IPAddress scan.Token);/ f' u* W, b$ g$ K5 j
}
& ~* P; T) L$ r, ]* P8 p! h: k0 zand turn it into this:# u; x) `0 p A# h
Quote:
8 c$ N* x' s2 d* I0 jif (scan.Token == _T ("ip"))
* K. k. x _1 R0 X, @5 x{
. T1 v8 A2 F# @% X, m/ / Scan.GetTokenEx ();6 }6 I6 c- j' [% i' |: f" L9 M
/ / Strcpy (m_IPAddress, scan.Token);/ G7 ^2 F( o* {
}/ j% X1 I7 k/ d. o; K
And you created the solution.
/ `6 h9 w7 @* X) N: A! ^5 q8 H) N2 @8 L: \9 [0 _
* T' g$ }5 L+ |9 O4 n% e3 F' I1 ~Then read the Neuz not the IP from the INI anymore. even if put in it
, f9 k7 Z/ {( ?* H0 i; v. x
6 L) B* i0 N$ t' Z i, b+ I Max skill's
3 N( j+ v: `# G- z7 T8 m; M0 r- V; G4 K8 C5 N, [
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
4 C2 Q! _! P! }' d# I7 K; e3 M/ D
+ } ]0 H! l2 a, UWith the TUT can provide the remedy it
7 c% @# C* ?7 r0 k
" f+ v5 z$ T, G" T; z# 1 opens the file SkillInfluence.h
, I5 p2 B" _, n7 X. W+ ]" i# 2 Search
; J' }, K$ F9 l) G9 tCode:
' @8 T P4 s O6 Y j, d, l8 q" \+ S4 |+ c4 t6 S" ]4 V+ J) ?! ?
# Define MAX_SKILLBUFF_COUNT 142 t2 p! b+ O. e5 [
! q' Z; @& \4 @/ }/ Z# 3 Change the 14 to your number (eg 21) and save it from; }# b" M7 u0 P% I
# 4 compilation and ready
/ L6 i: Y' p5 G3 e. S
% s) ^ M/ k! P5 V1 W3 j7 I3 F
6 \9 C2 a1 u. F$ p8 I; I6 EI 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:' [! G9 l! H, B# N1 s
, w$ f( t2 W" T7 `- @. ?' t
dennisdra
9 P2 D& f- o7 Z2 r( H.Crasy
. u; r7 M+ ~" Y8 c' P* F# S& B©ross. V. A! d5 Z0 \
Sedrika
; k( d: Y- S B. ~) j# {% W* K+ |2 [5 T8 n# `# U$ A; F! J
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! , P* t# v" i# z7 ^8 z$ a0 ]
% I2 c0 k7 X3 M+ I. B
P.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less
# A. U) n7 I2 C; f
: F+ L! B/ W0 t, t) P+ c) p7 C
/ G1 \" P) B2 }- T* I; e" h1 bUpdate 1:
how to turn off "Profiler" in worldserver.exe
: V) _, U: F+ s! A$ t0 R& [2 d) F
& e& B3 R/ h3 s- K
+ ]6 M' i1 k L4 J! s+ Jin VersionCommon.h of Worldserver Solution( q( r( u5 X( D4 W3 W
Look for
8 [# h. k7 c Y* [9 P* N' `* a7 N F) i. o4 G1 D3 T
#define __PROFILE_RUN
+ x. C. q4 ?" ^4 g1 K& K% T, [" `3 F# D% ?8 t) \# d
comment it or simply2 [6 p, g s, d( c ~
: a8 O3 c8 `( b) d" i//#define __PROFILE_RUN
6 l( }# C+ `: S% @
' Z, d, z" L; M6 Z' p$ p8 }' ?+ g3 g1 o$ [( c% C# m& }
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投寄。谢谢。我添加更多的很快如果你有病加太 ; b; V6 x$ K1 k( f5 T0 n* x% V+ `4 ?
|