|
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 & g$ k" L& l% }: J* r! J! S
change level without Rebirth
+ N# {* U# z n. K) Z8 z2 z: `2 O+ m6 i3 K1 v
Now, let us begin.
# h* V4 }- x& t% p, P+ e4 k% N! G5 O) n' d8 E& z8 `; t
Requirements:
) z4 _7 W6 g- ]# a; _9 y/ G# MSource
0 u- g* A4 R* f* r7 t: qNotepad / Editor
$ G5 G8 Q4 q, ^( T! {$ g% i/ q k: v9 @ [& @: w& S* t
/ / Tips by Sedrika
- X5 l( ~7 n6 M
& i/ @: u6 j' Z: n+ l+ \% [It is up to you how you do it ^ ^7 n2 \& x# r: I+ q C, J
; n+ E# w9 {, P& S* ~* m5 C* u9 GGo into your source folder and open the definejob.h" ^2 A; [, |& d1 p0 p, ?
Search there for:5 X. ~: e: p1 q( [) ~& C+ S
+ V! E" K4 [, e: B7 N; T: |; H
#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå: x* V3 x! k7 f& D! G
#define MAX_LEGEND_LEVEL 129
* w- x& B; O6 H* ]% p7 S#define MAX_MONSTER_LEVEL 160: y7 \, s( l" M: _! i1 r
#else // 15Â÷ è÷¾î·Î ·1o§è®àå, ~* b; Y' T8 _& q0 D
#define MAX_LEGEND_LEVEL 121! t* m; e! `& A: Q. `( m0 Z
#endif // 15Â÷ è÷¾î·Î ·1o§è®àå 7 D8 t3 r( E: r1 m
6 h& L" D0 ^" Y' O0 z+ O6 E9 J, E; A
6 p: |* y, a, K8 HRed: Player Max. Level- Q9 [4 M9 x% [. n& a' \
Green: Monster Max. Level/ {$ C; Y- \2 |
; u t' H, n2 w- }These changes as simple as you want.
1 L7 j% o" m p0 {2 x/ s6 c5 Q# y
# h4 [; T2 e7 l1 b. h G1 wThen you have to just recompile the World Server Files + and make your clientin the Definejob.h the same changes as in the source.7 P- K+ F7 z) Z% `1 s
2 S4 q; K; @( O! g C% m9 i Part 1 of blocking CE % E2 H; A' h2 c; K
0 x. M" O+ n4 i* Q+ {# uIn this tutorial I will show you how to change the Head of Mark flyff.1 G7 a* J9 K7 T, k6 `. N: x$ S
The current Head Mark is well known, 5E, which results as a string ('^').
' P$ j8 O1 f# {1 [! I1 L6 f; [9 L4 Q) a% I
For this we go to the World (Project) and looking at the Buffer.h after thistext3 N1 v' R9 M8 N6 J
Quote:
! x( F+ [5 B& [) h* \( L) f# Define HEADER MARK '^' / / Normal messageheader
, O( j! n& ~9 M1 X/ f8 o1 b# Define SYSHEADERMARK '%' / / System message header
4 q, ~- D8 l1 u0 [1 m1 J& }' _What the Sysheadmark is looking for is not even the top 5E.
: M0 p* L/ k; q0 k* t0 OChange this and it makes the CE Not work on server.
# y* a0 n) x( P
+ G. ?9 L, o% M- ^* C8 o5 r/ }) E3 T% y" y% hThen Tom's anti-hack is no longer useful.
' Z+ J& V0 }& W2 U3 q* Y7 N" M/ ~ q( k- m- S; Z
LG Sedrika Part 2 of blocking CE 3 P7 M6 `$ [* P; H; P/ y
+ j2 O3 Y6 v' Q1 @1 d( FIn 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.
" m4 }6 r# d! e2 v3 pWhat does this have an advantage?1 h& u6 w$ G3 i8 m5 w
The editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself
- _4 ?% g4 w+ m, y8 ]1 B" V& ]. w" z, L0 X
0 Z) e' n- C3 L9 ?7 x5 h. w
First you need to get open source even know how you do it, is left with you, andyou do the project on the Neuz.; D- r) l) D) f
" m- x% o- p1 D0 w; [; `. MThen search for the following content in HwOption.cpp
: c3 Z$ x/ {& v( A" Z4 U. X8 v+ L& c8 E: U- @. u
0 Z) N6 v: \* K5 i7 w" {" P, z: [$ kif (scan.Token == _T ("ip"))! w1 Q0 \5 d& T/ y9 {/ a/ y1 p
{
3 E" W! M) P, ]9 t+ l4 Nscan.GetTokenEx ();
6 A# J/ A# @+ X! cstrcpy (m_IPAddress scan.Token);
/ P3 f: `1 T; L+ H}2 x# Z, }* F8 l" d+ _) F& E. H& K' J
and turn it into this:/ @9 Y: h" F1 r: Y1 Z! {
Quote: `7 v# C2 F) b& p3 k
if (scan.Token == _T ("ip"))" m% [9 i" N# V. m; f6 _! e
{9 M: j$ P* W: o! F) ?
/ / Scan.GetTokenEx ();
! b! T. A. R9 z; L. B6 h/ / Strcpy (m_IPAddress, scan.Token);
3 _6 m# C7 N& a' Q}3 U* G: \( N' C; x$ S2 D# ]; A# i( N
And you created the solution.
5 S0 Q5 g% \' D; [3 T; D* C. T0 W I4 Q# e3 o' o, ~) B( [+ w
% o9 N3 q* z' G8 H5 [Then read the Neuz not the IP from the INI anymore. even if put in it$ x/ n7 T9 ^$ S: F8 L
" ^8 J# u9 }1 {! C0 d3 U
Max skill's
% G& G8 }5 \( i- n6 L, l+ N0 e8 Z# ]3 S$ c* I: r" I. ^
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
F1 l- }0 t1 Y* f+ q) {
+ X* y- p2 f! |/ \9 B: v$ OWith the TUT can provide the remedy it
0 R. Y/ T& H1 `) r) Y& r7 ]2 p- e- F. ~/ ~0 K D
# 1 opens the file SkillInfluence.h6 Y1 a3 g, [3 [& o
# 2 Search
* F1 H5 `( }. i" tCode:0 u4 k* U/ C* }( _
' x6 ^* }5 E- v4 E" F [# Define MAX_SKILLBUFF_COUNT 14
* r5 B, V0 A" D) N* T8 |# ~# K4 z& ]& ~8 i
# 3 Change the 14 to your number (eg 21) and save it from8 T2 G; F) e& A6 r* D" s
# 4 compilation and ready
$ P! x I0 N5 _ T4 }1 [5 _ \* w2 N. _3 x3 c1 c
2 a s5 D* t8 b/ k5 {6 E4 ~9 f
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: s8 ^- q+ M7 j$ h. e3 v
- L0 n+ u1 Q6 H: rdennisdra S% o7 p- a' y7 g
.Crasy
4 s7 Z Z/ k2 Z$ n; R. r©ross' X; B4 P$ j+ B$ {; R3 b
Sedrika
# w8 ?; T6 |8 s/ |& |
% G' l5 `2 R' g, Neverything 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!
) n, p/ ~$ R% \* ^; }+ Z4 P9 s+ I5 J
P.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less
- z4 g/ x. q: V2 D5 F' y% j
5 N' L9 T. b5 M( h2 o
5 e% B y: ~4 G6 U5 E uUpdate 1:
how to turn off "Profiler" in worldserver.exe
# z& \/ O# e& L* o# i6 L& I; i0 H9 G# U' g
1 V3 F- v, r- H- \* n
in VersionCommon.h of Worldserver Solution& i# I+ [" T l( G5 r8 u9 Q5 f
Look for
% E, R E0 V. h( h) _9 G- j* p- b! o* Q3 J4 Z7 @
#define __PROFILE_RUN2 L' c0 j6 d; x9 I$ j& N/ |& V( I( X
6 U- y& `' Y/ V4 G v
comment it or simply+ L R5 N# D+ x4 N0 m$ c
2 P- |9 n( r; |6 a( i: @0 F//#define __PROFILE_RUN
+ A8 q8 H1 A/ [" a
7 K# J5 F2 B; t8 k! Q: }. P- L- ^( \9 y q/ n* a6 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投寄。谢谢。我添加更多的很快如果你有病加太 ; X- m) t( C- I
|