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
( B; v+ ^/ q; H) }1 ?change level without Rebirth1 q( r* ~6 o- c! P
w" K2 C7 B! {" `- J, VNow, let us begin.( m6 @, P2 l9 @# c: w6 K
5 }: B" m/ G2 H& l" }; ]. K
Requirements: Q& x M' {: n6 H
Source* I. b4 [( K: L
Notepad / Editor9 y Y0 X2 k: D( v1 {% l( d y0 f' W
x1 M a& i( K# D* c3 l8 S/ / Tips by Sedrika( I, r7 v* u) ~
+ O- c; k4 w2 _6 I& S
It is up to you how you do it ^ ^/ g1 C" w! p7 ^1 K
8 L% G% T6 [/ a1 G( M
Go into your source folder and open the definejob.h
0 q$ s9 g' S! N$ }Search there for:" Y/ _! g0 s( @; O' t; i9 ^( ?
, t% j8 o& y! q9 O: q& O) G
#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå
! f$ Z3 p) L, L5 r; T( |5 t#define MAX_LEGEND_LEVEL 129
1 n8 P" e6 r; ?; g, r- T) u#define MAX_MONSTER_LEVEL 160) y2 i: o8 C# j+ @' x% ^
#else // 15Â÷ è÷¾î·Î ·1o§è®àå0 _+ `3 T& E% ]8 M8 f
#define MAX_LEGEND_LEVEL 1211 {% O; G0 H0 t: t% h
#endif // 15Â÷ è÷¾î·Î ·1o§è®àå
, A2 s, R# G3 _5 I; Z: p
: J& @) U3 J% w/ c. L% O; S. j+ a8 ?4 _1 D2 {
Red: Player Max. Level
- M* b; m) b/ H3 QGreen: Monster Max. Level
& |. r( n0 N/ m/ m
3 v, D: b2 ]) sThese changes as simple as you want.
% B3 s$ r) T) p( H+ S
- v$ @8 N! S. C) K( xThen you have to just recompile the World Server Files + and make your clientin the Definejob.h the same changes as in the source.* t$ k& _9 _- B5 [
; u, t% p2 [& E. N( w* i
Part 1 of blocking CE
2 n2 G( v _6 f. L( U) {1 I3 t+ L
6 |( f+ |7 i, F' ]5 M7 }/ ~In this tutorial I will show you how to change the Head of Mark flyff.5 b) g" @+ L/ W* B' X
The current Head Mark is well known, 5E, which results as a string ('^').* @1 `' ?( C8 A" U
, g* c8 u9 | E8 BFor this we go to the World (Project) and looking at the Buffer.h after thistext |7 f: |7 n* E8 e& P
Quote:
$ e! G1 L1 {; F$ C7 o# Define HEADER MARK '^' / / Normal messageheader
: b7 x# z3 J0 {. i' C* \* e2 k, K* T4 d# Define SYSHEADERMARK '%' / / System message header# O7 O. E0 m7 B
What the Sysheadmark is looking for is not even the top 5E.4 \1 |7 |! t2 w6 R; r: p% |
Change this and it makes the CE Not work on server.
7 A2 s+ {4 o" Y% _# O; i' l( _/ j1 }, E
Then Tom's anti-hack is no longer useful.( b/ V W# Q0 i
( z+ H6 W7 ]* T8 Q7 C
LG Sedrika
Part 2 of blocking CE
! b+ L5 x3 D/ N- r% n5 w
( F. u% n+ i2 o' [1 w) ~5 |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. & t2 K" ]0 L' e0 Y, P
What does this have an advantage?! R. a+ Y* u- B+ u A2 X
The editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself ) b. l' Z; S* z! L" a
$ { [$ ~' M0 _/ t" W
9 ^- z# n7 ^7 u' QFirst you need to get open source even know how you do it, is left with you, andyou do the project on the Neuz.. _8 A, v; y7 G. i; C7 [, s
6 G4 Y) x2 i( c* a; |Then search for the following content in HwOption.cpp
/ o8 v* V3 W5 a0 A: ?, d
6 E/ `2 n* u% h! O' x- G. U. G
2 v1 q: o) m0 }1 O; g& Mif (scan.Token == _T ("ip"))7 Q n2 K: t3 F5 }! d+ D5 ]4 c
{5 |" T- J7 O2 I! U
scan.GetTokenEx ();7 }; t/ d4 b! U5 V3 j% L3 {. }4 f
strcpy (m_IPAddress scan.Token);8 [. @! P5 g i' A8 I" Y( ^- b1 H& L
}) f' Y6 F! B* h$ k8 ]! _9 |
and turn it into this:
9 x/ H9 r4 V% X i, T2 _8 mQuote:
7 h0 y6 O' c0 p& u/ x- X, kif (scan.Token == _T ("ip")); [* o+ I% r7 i ]; V
{
2 {% I" W. D- }' D/ M/ / Scan.GetTokenEx ();( H9 C3 _2 i. V
/ / Strcpy (m_IPAddress, scan.Token);
2 b' ^7 J. b _0 e) f2 c% U& a. l0 w$ G) }}
- g& F' c$ `) Q9 RAnd you created the solution.
* Q G3 Z# }' D1 e V
; g3 F8 m; e) B7 R
1 K% }/ w; ?5 s8 eThen read the Neuz not the IP from the INI anymore. even if put in it& x7 T- T c, Z6 t, z
( i4 Q Q/ G6 @ J
Max skill's
5 \5 Q2 B; t2 N6 P3 c3 Z+ ?& Y- [- N# g* m3 ?( ^
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
+ M1 B$ ^% X# n; x5 z2 A
0 \% K: A* {' `' B0 s( C! kWith the TUT can provide the remedy it/ Z5 U2 z- Y) _
% u7 k) @. B) h# ~
# 1 opens the file SkillInfluence.h
8 C$ }8 J; x, {2 G2 {( \# H: I# 2 Search! W) L, P' K% p ]3 i( s
Code:, {" z3 `0 P/ @3 S
+ U- O1 S# h$ S1 L7 ^( i T y: N L# Define MAX_SKILLBUFF_COUNT 14
5 e6 T' {8 a: S. m2 d$ n }) O
5 a, W# d0 U% u# 3 Change the 14 to your number (eg 21) and save it from; E3 c |" R, ?! D* h( V: M
# 4 compilation and ready
8 x4 N- E- T" Z; u* U. L: }: H# i. A7 C# b, T
! j/ }( Q. R( r) d8 z+ `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:8 J1 M( x! D- `5 e' L" r; s( y+ [
( C; Q7 R' v8 P/ ]: D2 u) }
dennisdra0 h( |! [( y1 Z$ O8 ]1 S
.Crasy
" P9 ]. R: ]# q6 x# Q& s$ F©ross
, o* e$ C3 m2 S2 j6 SSedrika) e4 ~! n. @5 C
/ r0 z8 I: a% l& l& W: M/ beverything 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!
6 c7 l/ \, |( J. b8 b/ M9 H& c/ C; T% |
P.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less2 G: l- ]# z T' c7 O$ o7 E4 X
9 T* l/ X! z1 |( y* b6 {3 e5 l) U0 y% f
Update 1:
how to turn off "Profiler" in worldserver.exe
- i! F0 ]- V) u* I" C" `$ g& M6 e. R7 Y+ ?( H# k1 g4 c* s
4 l+ g. s$ j$ ~: [8 O& R
in VersionCommon.h of Worldserver Solution, [ ], X8 s5 _
Look for
* e# M% S6 [! S# n, R! H$ B" f# v# m7 n/ x: Y9 L0 w q% p: D/ h
#define __PROFILE_RUN
$ E; E. g- h" H0 p/ {2 G
! H: O5 p- z3 E7 m! ucomment it or simply
. W' A% q. S$ K' C* w8 z1 N5 ~
//#define __PROFILE_RUN $ [1 C$ m" O: S
) M7 h, c+ P" E/ Z1 G( t
1 m3 r$ @# c( P3 ]: k8 z
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投寄。谢谢。我添加更多的很快如果你有病加太 , G1 Q4 r+ b0 o4 p3 d8 \, N
|