|
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
' m* s! W: s8 ?7 b" u/ ichange level without Rebirth( N" F" V+ }- Y5 q9 f
- `# w( i, A! Z6 F# m( n+ w
Now, let us begin.
/ N7 s2 m# U; e4 Q( h3 l) V4 M
0 O+ d$ F7 A7 ]3 [' a, TRequirements:3 f/ ?, M) q2 l; d _1 Z
Source
* s8 X9 T+ N( p& H) y0 O" DNotepad / Editor4 C0 i n% e7 m# P& ~
! A9 ~' D1 }9 g) A8 o/ / Tips by Sedrika
) s4 [" s$ p4 H! C7 {) T
# Y9 W: m& U" ]8 |. p* o7 \It is up to you how you do it ^ ^+ O! K& R: d! d7 ]. b
H$ {9 L7 f' T; [! a: i, NGo into your source folder and open the definejob.h
9 O) Y. r- \% R% v3 I! n/ O0 WSearch there for:' T' f( l1 S( L' h- U3 e( [
" M' u) q: d {( ~
#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå
) T# H7 x6 G2 n+ K6 P+ G p#define MAX_LEGEND_LEVEL 1295 R7 P8 H& A) w" W6 i% @0 V/ g
#define MAX_MONSTER_LEVEL 160" g: W+ S- H" J4 w4 }0 p
#else // 15Â÷ è÷¾î·Î ·1o§è®àå
1 V% M6 q* e$ w* l#define MAX_LEGEND_LEVEL 121 D* Q* u3 r+ g9 l8 ^7 n
#endif // 15Â÷ è÷¾î·Î ·1o§è®àå 7 [9 h0 O; ?. _- d! \0 `
! X0 N2 w" I/ @* o) a {" |! H4 A5 b# p9 `
Red: Player Max. Level
+ h. _* y4 c3 A }Green: Monster Max. Level( b: n3 z$ X' S* K. a' h5 @
" d% _. ]. b8 E/ {1 I3 w
These changes as simple as you want.$ v, Z& L+ _+ x: C" o
4 x) f( s% w K: g) K# A4 f* `" mThen you have to just recompile the World Server Files + and make your clientin the Definejob.h the same changes as in the source.
* c* v" [2 e- K" W/ l
9 M2 n. h5 J! g. z& m
Part 1 of blocking CE 3 ^/ s, B5 c+ G+ e% i
3 \* }% Z, J! I' B( wIn this tutorial I will show you how to change the Head of Mark flyff.0 _' y1 m6 a# t) ~
The current Head Mark is well known, 5E, which results as a string ('^').
* ~8 @ Q6 c( s; ^ H" c7 r; P: G& ?7 f! N
For this we go to the World (Project) and looking at the Buffer.h after thistext
) S0 P- f& j/ d# k$ oQuote:
( l$ e' {, {2 R; w7 @0 M3 u7 R: S# Define HEADER MARK '^' / / Normal messageheader( p- B0 X t) T; u/ Y7 ~) c2 U1 ?$ h, W
# Define SYSHEADERMARK '%' / / System message header
3 J. e5 a( }0 R f6 fWhat the Sysheadmark is looking for is not even the top 5E.
2 q Y! f, ~9 g7 h4 G+ K& g5 q$ |) uChange this and it makes the CE Not work on server.
! ], n! L! V, T' [5 X# i, u
* D+ A* m# Z( {- M0 jThen Tom's anti-hack is no longer useful.: Y% ?5 x6 Z' U
1 ^; c D/ e# M$ h' F
LG Sedrika Part 2 of blocking CE
8 d( p1 Y" E$ ?# ^- D1 H- Y: j) U8 o
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. 2 C9 Z' b5 J* n, ?- X. P* K- h+ y
What does this have an advantage?
& ]3 g" q( T( c* yThe editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself
! q9 K9 F/ ^. @1 B* r
3 W6 W: `9 i# F1 L
4 m5 ? ^* f6 bFirst you need to get open source even know how you do it, is left with you, andyou do the project on the Neuz.
1 i% ^! ], J- o3 h
, f" ~/ r8 `, l- c4 eThen search for the following content in HwOption.cpp
' Y) ? @+ {8 I0 N# T0 X' z
3 `3 G( @* ]( Q. z+ u
# l; [7 d, r* l+ kif (scan.Token == _T ("ip"))2 [ U9 n( M# T4 n
{% C! V/ m! ~ P3 g, X
scan.GetTokenEx ();% G! p$ z; q' w
strcpy (m_IPAddress scan.Token);: w9 R L% N! J9 U
}
* x4 N% `" d4 M6 Iand turn it into this:( T- U8 ?# p9 h: Z1 r u
Quote:
" T+ O1 S. R" a% J+ ~ o: K( d! Rif (scan.Token == _T ("ip"))' C4 D- L( W5 @- }
{
5 K) O4 I+ L+ W. E2 h3 t6 X- p/ / Scan.GetTokenEx ();
; ]+ d" g. A2 Y' O$ x4 ?/ / Strcpy (m_IPAddress, scan.Token);
2 u6 |9 R4 D2 }' s" G}: v% ~+ j Z* k: g8 }& h3 H
And you created the solution.$ o6 v; w- R% g/ u* I
. E; M5 K ?9 H7 R1 J( Y4 A: o1 W/ g7 Z( D
Then read the Neuz not the IP from the INI anymore. even if put in it
! \ \* N3 h! x
- g+ A% t- t1 {6 [/ n5 a
Max skill's
4 {5 @' @* U! @7 q+ J. c
- k# e5 Z% E F7 Z/ w+ @# HAll 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 ~1 F; d% @7 b: t$ C: k7 v: ^6 g. g& U
With the TUT can provide the remedy it
- U8 \( M& ~: I) s! h9 Z
9 J. Y: ^8 g$ V1 s# 1 opens the file SkillInfluence.h- L& i1 p) h8 u# i; q/ H+ |4 d
# 2 Search
8 w# q' e# i2 T, o- _Code:# a) @6 Q9 n9 e: k" u
1 w+ ]+ u0 W* P# Define MAX_SKILLBUFF_COUNT 14( L+ d. d1 k* O8 ^
4 w# L) `* [( ?! ?4 C, |
# 3 Change the 14 to your number (eg 21) and save it from- Q" }. s2 M* j4 R) v1 u
# 4 compilation and ready- x/ L; @3 A' X! j
+ G8 `" G! F1 l. D |4 h* [$ w* ~$ w( Q* D* O
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:; @6 t# p/ a! z) A* y
$ d9 v0 ^; }; a( X0 Q8 Q8 v/ mdennisdra
0 v/ u7 N+ f3 L* |+ S; y.Crasy% J1 h1 D, m4 V2 f. @
©ross7 n* ~% L( Y' Q6 h
Sedrika' V0 J5 [& V, s) e
1 s% f J0 _+ O: L/ D7 p
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! * L3 M b( a4 |+ f6 A3 C6 Y+ u4 _
# e# \' ]9 f8 w! H, E3 bP.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less3 D2 k5 [+ ^4 o8 X1 {' b
) P1 f8 X3 I2 [) l( `* a1 N
8 q1 X! ?: ~. }Update 1:
how to turn off "Profiler" in worldserver.exe
' ^& l0 V1 q6 m& g+ m
# ^. Q C4 ` O$ ^) _% z" d! Q6 P
8 m9 @9 X- A! _- }! K8 r7 din VersionCommon.h of Worldserver Solution
- E( [5 b$ w6 n. v y& Z# q! ^5 q- pLook for
6 C2 _1 A8 W6 @ f' Q
* ]4 n2 q& ]5 q9 q0 ~' `: d#define __PROFILE_RUN3 T" q" V+ o5 A
/ H# d8 @' }0 Gcomment it or simply3 z1 v3 u: ?# u( C- a/ @6 t
3 y: ~4 V( K* H: Q, y. C- U
//#define __PROFILE_RUN
+ r7 ]2 j2 r. {7 Q7 }- |$ b" N
4 m- g6 q9 e! ~ n0 r9 G4 k
7 C( N( o5 Z" y+ m& x/ Ncredits 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投寄。谢谢。我添加更多的很快如果你有病加太
0 c! R7 s( m! k7 L% R* p |