|
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 & E* o: D; @4 ^' u7 V
change level without Rebirth: }: F; n$ z; b
4 x9 J. G+ `* W. Q0 c5 C, `) r
Now, let us begin.5 Q' y$ z4 O4 I* l
- c/ p4 A' b6 A/ G8 D1 l7 GRequirements:
6 X$ l d# _- y. ySource
5 ]* k6 R6 a: ~1 eNotepad / Editor
# ~9 ?6 m( v6 D; ~- J6 `$ \2 M2 _
3 n7 n) b- u7 D1 y4 f/ / Tips by Sedrika- q: {# a$ d* `# O. ^8 Q2 N
- s7 e+ o G8 F
It is up to you how you do it ^ ^
# X; w1 D u8 u0 n2 L8 @
7 I) \6 X7 ~' W/ c/ ?! X' wGo into your source folder and open the definejob.h
/ j6 g1 L( ?2 K/ E2 OSearch there for:
. }) g0 `3 M+ N: ^9 m9 k6 o! C8 b/ x1 N2 l2 J
#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå
4 H4 M; @0 c' j0 g% p, X#define MAX_LEGEND_LEVEL 129
, N% U+ g d( ^9 v1 l4 n# S' ~#define MAX_MONSTER_LEVEL 160
8 P# S% k+ `* Y: `% u- X#else // 15Â÷ è÷¾î·Î ·1o§è®àå, U& k* {) k* G* I
#define MAX_LEGEND_LEVEL 121
7 E* J9 }' ^; I) c: i#endif // 15Â÷ è÷¾î·Î ·1o§è®àå
' n1 H |9 S: N* _6 P
+ m( h; Q) E# _* ^9 Q3 N9 r
r2 N* R% A& _, P4 J6 r. B& }" Y7 X- T# kRed: Player Max. Level# h4 o) e$ [! e. F0 n
Green: Monster Max. Level
/ b/ n" U, A/ f0 e6 H
/ c' I0 `5 G) L: f4 ]These changes as simple as you want.
6 r8 L) s5 v! @. c$ @$ J9 q5 B1 e1 f* }" I' Q4 F( ~
Then you have to just recompile the World Server Files + and make your clientin the Definejob.h the same changes as in the source.
7 C c1 z# U( d* Y& P! ]) v0 l( c- k `7 ^- e
Part 1 of blocking CE 1 q6 A4 i& \ q
& }. ?+ G2 ]5 K6 T V2 Z
In this tutorial I will show you how to change the Head of Mark flyff.8 [$ @9 F6 d1 X9 n
The current Head Mark is well known, 5E, which results as a string ('^').* z" d4 Q5 ]0 m! M1 ]# ]
4 Z r, }. r, Y
For this we go to the World (Project) and looking at the Buffer.h after thistext
- a- ^ L+ P u, t+ Z) [- y- {Quote:. [( P8 C) z+ l) ]$ J8 Z
# Define HEADER MARK '^' / / Normal messageheader
3 d5 B* ^0 j+ l' M# Define SYSHEADERMARK '%' / / System message header
3 r, z3 F* s3 Y, L' ^What the Sysheadmark is looking for is not even the top 5E.
8 M! g' j7 U" {, l* x- A- k6 LChange this and it makes the CE Not work on server.
0 m3 o, l0 {/ S% t$ q7 g1 v. u! @; u5 E- |: S- }' f
Then Tom's anti-hack is no longer useful.
9 w( N: o2 @+ P. u: w2 ~6 W$ \$ v* z% j3 n' \: G
LG Sedrika Part 2 of blocking CE , K/ p5 m$ H" {2 y$ r3 r) j7 [
$ h# |/ w, z; @8 z5 z9 K7 V
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.
% p3 f7 f* O1 ~6 GWhat does this have an advantage?
& T1 k! P2 \& D E( G6 bThe editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself
& q$ ]5 l, z0 i4 ^: h* p% ~& o t5 f7 `7 S K% y
1 h7 W3 u) I; T& c
First you need to get open source even know how you do it, is left with you, andyou do the project on the Neuz.0 y3 }8 z7 H: ^8 F9 a, `
1 f! U- t& J; R9 A3 |. ]/ [
Then search for the following content in HwOption.cpp 6 i/ ? C# p3 n" s
: f& Z; B% V" k9 k$ V
" ?+ ]4 g2 O4 _3 T) Z2 S7 Uif (scan.Token == _T ("ip"))
9 [* k5 R i/ ~8 w4 N{
5 Y- a0 y) M. A9 ]) F* v' Nscan.GetTokenEx ();) Y+ f; Z- B+ d3 w. \- [
strcpy (m_IPAddress scan.Token);
3 \2 ^: a1 s, o3 W' p- |' j9 }1 ^}) w6 p7 T% d, x- T3 U
and turn it into this:) H- E; o0 z5 ]; u
Quote:$ s6 _' [/ w: d9 X6 E2 C
if (scan.Token == _T ("ip")): E% p% k6 D! f2 u4 y$ d* `$ c
{) y* l. m: t; m7 s5 _, y- P" l: Q# n; I
/ / Scan.GetTokenEx ();8 l- C4 U6 P- Y% g0 p% z$ L
/ / Strcpy (m_IPAddress, scan.Token);
3 @$ p3 g/ M0 T}, d$ q% `6 G) `6 J
And you created the solution.
( h, i( a- N7 i) T+ d3 i+ @+ z
/ K" m% Y# F) m' `9 |6 u9 B+ `
1 h6 e l9 m, y* P# S D9 rThen read the Neuz not the IP from the INI anymore. even if put in it, ~6 z: |( q2 q1 E0 k. [5 c; z
# @: C6 Y2 B( b
Max skill's ; E+ u! E; l3 G( Q
3 I+ K8 t" s9 w
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 0 p% L0 l, u5 ` t- S
& ]; k4 C8 c# y$ S4 ^With the TUT can provide the remedy it+ O1 u* ^' E1 u/ A( J. u" `9 I$ H
3 k9 [4 C2 Y8 n7 }
# 1 opens the file SkillInfluence.h/ u% C# c* T, X6 V3 c) T: E$ `% k
# 2 Search8 g1 J3 B9 n7 N' l3 ^: N. ]$ g: |# }8 x
Code:. J. Y5 {% K- Q0 M7 X
; |! D' C. }0 X. s; |$ G
# Define MAX_SKILLBUFF_COUNT 14
/ @3 p. w9 p' {7 {- Y* t( W: y+ t3 f" L' q: N* C$ u' I! h" w
# 3 Change the 14 to your number (eg 21) and save it from, d6 c+ R! {- U0 z
# 4 compilation and ready" Q: M' A$ k' _; B
( U& L2 J# o6 U2 Q3 w6 V
& q. l9 C. o& x# k, _
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:
& E1 T C$ s; j- h7 c% a0 Q3 q1 n* D9 u( {3 W* g C
dennisdra9 y1 ~5 {5 h+ ^7 m0 `. `
.Crasy
+ g* F" ?2 d, v4 N5 g4 D©ross! g6 F' Z* f5 T) u
Sedrika
. i8 Y2 A k' ], n% {# ?% b9 v/ C) W% m
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! $ _/ l6 o+ V& T+ C: o1 I
* V/ l" s5 @! }4 n9 R
P.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less6 |. s# f8 a7 Y8 x5 S. j' [- G
' P" m" ?8 `" ?
5 |; m! D3 \& Y1 N' |( A$ S
Update 1: how to turn off "Profiler" in worldserver.exe 9 }! W9 f5 O, {5 R0 R
% v- l# H5 ~( P; {3 E- o# m( N/ j
0 C" ?6 d4 G# } K% ^in VersionCommon.h of Worldserver Solution( h" U- H% `) f E4 l
Look for d8 b5 T7 p, l
- @2 W8 {+ r* s0 M
#define __PROFILE_RUN) {5 a2 m/ c3 W$ L
, S4 Q+ H* N# ?$ xcomment it or simply2 P) N. q7 C8 V* M2 r2 x
! U/ v7 q1 \/ H) C
//#define __PROFILE_RUN
4 V3 y2 k! j* X1 T+ g% j$ I
( V/ x) g3 Q. r5 E( c0 o2 n. Z+ g& r
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投寄。谢谢。我添加更多的很快如果你有病加太
2 y* P& \# l- [4 ]* c4 f |