|
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
: T# M Y. w5 E! u2 Q9 i& lchange level without Rebirth3 U) Y/ H8 e6 b$ a9 ~
' \$ x* X, u3 h w9 o$ u: y
Now, let us begin.
. Q, D( ^/ u$ X; o* ^& E1 M& _5 {; f/ T! Z" b
Requirements:: K: z; H6 l8 I; f
Source3 W5 a6 f8 }; p4 X
Notepad / Editor9 R4 Y* F) a2 x
- E' ~5 K R( m7 C- W1 X6 k: ^; c/ / Tips by Sedrika2 e2 }3 ]9 G6 h; \" R0 I9 p
# F- o/ b/ l% D, {
It is up to you how you do it ^ ^
3 M. ?5 u' ?9 a6 } z' V# s! a% g% ~
/ {) S% E+ M4 f. L: PGo into your source folder and open the definejob.h
3 }3 M* u1 p* U0 m8 y% }$ uSearch there for:2 q# R% ?7 l Y! @8 X: B
7 \, |9 P$ a5 G0 m- o
#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå
V: S& P9 H B4 k- B#define MAX_LEGEND_LEVEL 129
# X2 `; `& a, O: s#define MAX_MONSTER_LEVEL 160
6 w. |* ~; [8 M1 W. h2 x- k#else // 15Â÷ è÷¾î·Î ·1o§è®àå
' w! `: h! z2 \+ L#define MAX_LEGEND_LEVEL 121
7 y2 a. D8 ]5 c' R4 ~1 O; E#endif // 15Â÷ è÷¾î·Î ·1o§è®àå
" [# p& x' |* R
) q$ W5 |4 p: h9 x0 ~( f! _6 T0 p( Y4 _0 n9 `
Red: Player Max. Level
3 q! ~ M$ z7 \4 w1 B7 VGreen: Monster Max. Level% m/ W: F* P: t" f/ o% D- C+ M
6 N% w( A% m. i! G5 q- oThese changes as simple as you want.
, }& g6 K7 D4 i8 {; b% M, x) J- v0 z4 i0 y
Then you have to just recompile the World Server Files + and make your clientin the Definejob.h the same changes as in the source.# N6 e+ f, p5 G, t* v9 E4 v9 F4 F- o
7 S/ x% ^& K, N% Q" m
Part 1 of blocking CE
4 c1 d( f2 N8 Z6 j& G# y
* \& L. O1 _0 o) ?: |% gIn this tutorial I will show you how to change the Head of Mark flyff.
1 ~ d4 p/ z: l0 \+ `9 [The current Head Mark is well known, 5E, which results as a string ('^').
; \( x) }- H: P0 z% p0 m0 e7 A* S+ |. i
For this we go to the World (Project) and looking at the Buffer.h after thistext
B( u+ r, f# G h! R# p; PQuote:7 ]" Z& L1 X8 |; y2 ~& f
# Define HEADER MARK '^' / / Normal messageheader, T z0 @! c1 D) M% N
# Define SYSHEADERMARK '%' / / System message header% K% @+ I2 i' }5 ~; G
What the Sysheadmark is looking for is not even the top 5E.: P, a6 U3 ?; H% F6 G2 r
Change this and it makes the CE Not work on server.
* S& x4 R" N* l/ o) J- q1 `2 V+ [/ [3 ~# F( q
Then Tom's anti-hack is no longer useful.) `' o$ L- @5 d. H) D& E6 M
2 Q2 y* y& |4 q; i9 M$ g+ E4 D
LG Sedrika
Part 2 of blocking CE
' Y0 \0 v& {2 k6 |# N4 L) O; j; v
6 B4 @+ T- O& J9 T; }6 }3 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.
4 v: B; _* Z2 p0 o" i- j# {What does this have an advantage?
$ |( i# D% t, z! S* j- bThe editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself
3 i5 `8 A6 s, g
% V2 u c# C4 r3 U7 }3 E
# Q W2 k7 o- f) T$ j% oFirst you need to get open source even know how you do it, is left with you, andyou do the project on the Neuz.
1 K/ Y- _1 l0 Q1 j7 M4 \3 k+ l4 m; o; x' K: c
Then search for the following content in HwOption.cpp
; {' L3 V+ J/ [9 u1 q/ ?- W! b' k! A" ]) {* @! H
+ _* L+ o8 M4 a+ L( f6 J2 m2 m3 ^
if (scan.Token == _T ("ip"))5 l# I6 ?; k) I Y% e4 E0 ?
{
7 F+ @1 e+ t/ P fscan.GetTokenEx ();
# p- O3 t; C1 \1 r0 g+ estrcpy (m_IPAddress scan.Token);7 } X- a5 `8 r. t* O
}# w* a* G- t- o1 b) {$ w$ z1 ^- I
and turn it into this:" z3 Q1 ?( @$ ?4 _0 @' ~
Quote:
' B, a Z. ]/ t- J2 _ z0 o& D% [if (scan.Token == _T ("ip"))
& O6 h/ U; ]8 ^{
, ^% G9 y. D- Y/ / Scan.GetTokenEx ();
7 N% Q% l6 l; Q3 }4 G/ / Strcpy (m_IPAddress, scan.Token);1 C& u* s" ?0 R4 q; e
}
' r2 ? Z1 [; e. y7 L j; Z7 ^$ jAnd you created the solution.' e3 K) n$ R' ?& H" Q
: g/ ^) @. J" N Y
+ B' A! ^5 @& v2 V" E% XThen read the Neuz not the IP from the INI anymore. even if put in it
6 t; _% n9 h& J) e# p' X/ {
; G( S# e( B3 F7 Q0 G
Max skill's
1 j& u5 H5 E) {5 _! b8 p( o
. k" q# |7 Y3 F2 _8 _5 q) J xAll know that, 14 Max buffs, you get all the RM Assist Skills + Skills fromBuffpang and no more space for the YJ, Knight, Ranger etc 6 n# b8 ~* o8 M @4 n4 Y( x7 I0 i
6 c/ g1 ?# t* t Y3 w4 d' F
With the TUT can provide the remedy it' h( m( T5 ]: f1 Q( E
. k7 q& `' W+ e# g* N: S
# 1 opens the file SkillInfluence.h9 u/ r" e) J* s$ ~
# 2 Search k7 b8 d) Z0 @; m0 `6 D/ e
Code:( D, K2 x7 r# F
* r' _3 ^3 q# \" X0 g
# Define MAX_SKILLBUFF_COUNT 148 S. B* }% M* u4 r1 F; _2 r
7 T. V5 C( X5 j- W! t2 ]: n, V/ x# 3 Change the 14 to your number (eg 21) and save it from7 P* T! y d1 Z4 [8 k- L' ?
# 4 compilation and ready. X/ K! Q/ M+ `
4 c% q3 R/ M1 |) D
7 v6 y0 p6 G4 lI 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:. J5 M4 h- z4 u. J. c; _2 R# w& U+ ~9 ~
/ ^; Q) Z$ Z8 J+ y' L1 a' g _
dennisdra9 I+ ^9 x f# i. C
.Crasy$ s. B" H+ o1 K
©ross3 v" y& L5 }" \* X9 A0 p0 G
Sedrika
3 Z4 Z3 Y* @1 P3 b7 e
4 P& n* `1 w t1 ]( heverything 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# i% @; J4 `9 g% I' T7 a1 R: u1 z+ D: i% A3 o5 F0 L+ u7 j
P.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less
& |5 c6 y) m7 M1 H3 F2 P+ `. {. r
: Y9 K; h- [" d3 M* z6 {/ a" t: x6 L; B4 A7 T& |0 H
Update 1:
how to turn off "Profiler" in worldserver.exe + s) t3 K0 N: r5 S$ a% v
' O& F( |* l! I) s/ a
* G. B. n! f$ j* B0 V6 z' sin VersionCommon.h of Worldserver Solution% [" ]% X- m5 Z' Z8 G
Look for, K3 ^3 X* a; B: g8 q( W2 {
8 k+ p5 x5 `6 ^& q4 W2 l; f, Q#define __PROFILE_RUN. V; t+ w5 s( f0 T" y
# ^0 H, x( X( E! x5 Fcomment it or simply5 `1 ?9 |6 l3 c( l
* }1 k8 J6 d* {1 U: h//#define __PROFILE_RUN
& q6 l) E5 ]& b' g, r1 z4 T; \! ]: a% ~0 P
' G/ n8 A4 |6 [7 d4 i# K1 m" hcredits 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投寄。谢谢。我添加更多的很快如果你有病加太 7 |0 ?5 C$ n9 c* x+ T4 t% d5 W
|