|
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 ' P+ p v0 K1 e! A
change level without Rebirth1 _* \( G* R1 t! m4 ?
' }$ T! D# `3 b% f1 h$ E$ INow, let us begin.0 X, V! B8 `# a+ V
, [% ?; \ H& u% x
Requirements:
$ D g$ R6 V& X$ [! ?( @ F& _Source
: k) ]. B5 b) n! J+ r$ |7 Q+ W* lNotepad / Editor
6 F8 x: Z' p) n* n7 J
2 _1 u9 ^% G/ n2 S$ ?/ / Tips by Sedrika
, j$ [. H( H; p$ O
% S/ u# w$ u5 w# f1 ^It is up to you how you do it ^ ^
# c/ v) m! D R; \9 h* V2 E& H0 z
V* f( N& b' [( P* aGo into your source folder and open the definejob.h
0 h$ _- |8 {; H$ }' lSearch there for:
8 s9 A( d* B8 \0 ?" G. L% _, K/ G. b- N. p- o- t: p) a, N! t0 j3 Q
#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå! c% i. v1 b: ~, c# ?
#define MAX_LEGEND_LEVEL 129/ s) P0 }* g8 H, g, F0 q6 ?3 n
#define MAX_MONSTER_LEVEL 160
2 Z0 _& h; `1 Z8 B0 a1 j: F#else // 15Â÷ è÷¾î·Î ·1o§è®àå: ^0 ~: I! ~. c" d/ n
#define MAX_LEGEND_LEVEL 121
3 B/ Q( x$ n% e#endif // 15Â÷ è÷¾î·Î ·1o§è®àå / E* l8 ]2 l! b2 a! S
) p- E$ k! z; D- k$ ^2 n6 T/ F2 A( |, d' {! n1 F2 H9 \, R; M
Red: Player Max. Level5 y! J2 L4 U- o2 H( P
Green: Monster Max. Level) m; h8 P$ Z& g, n* e
* a0 i2 e' C( e' `4 v5 l9 L( CThese changes as simple as you want.6 h% v" t+ d6 Q5 k6 Z# _
) N( k4 O0 V; {( P) r, _* WThen you have to just recompile the World Server Files + and make your clientin the Definejob.h the same changes as in the source.
1 d: @5 D3 i7 w W+ T8 ~# Q
. J3 M! A" a0 u& D9 N% k+ u Part 1 of blocking CE # M0 n- b5 ~' |- E
/ j0 O% p9 U9 h3 b# S+ TIn this tutorial I will show you how to change the Head of Mark flyff./ \* n1 y( x: `8 R. k: L. L
The current Head Mark is well known, 5E, which results as a string ('^').
! C- v* v+ Q( r+ v$ s
$ f9 Y& F# p$ \1 ]# n1 |" JFor this we go to the World (Project) and looking at the Buffer.h after thistext* ~- Q' S7 K4 w1 c! M+ c7 [
Quote:
2 m. _( `; Y& W+ Z4 l# Define HEADER MARK '^' / / Normal messageheader
* o$ y' m* q( }# Define SYSHEADERMARK '%' / / System message header+ O5 ^ {4 J* @# W' \' ?- i
What the Sysheadmark is looking for is not even the top 5E.
" {# W8 ~! k, T* vChange this and it makes the CE Not work on server. B2 y9 l/ a. B% R
( @( K, e; z s# I' J# D; s9 |' zThen Tom's anti-hack is no longer useful.
4 ~) D' M6 A0 [
/ O2 u/ L" Y/ j; p" v: }LG Sedrika Part 2 of blocking CE $ f1 ]( {. T& T. x' M- U
/ b5 l: ]3 \2 S: YIn 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.
/ c5 y5 z5 S4 t3 M f2 `What does this have an advantage?; s9 Y+ j8 B& x
The editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself 5 c/ c4 O3 E9 G) Y2 r
5 z6 H' [* X( @$ [% B2 R
* H# Q- x) M' Q5 N0 wFirst you need to get open source even know how you do it, is left with you, andyou do the project on the Neuz.5 X G. ]7 q& P8 f. z! P. b" S
# p- T( m7 ~8 y+ e( v3 ]# T2 R1 V* b
Then search for the following content in HwOption.cpp
2 D3 M4 k; @8 ^
# P* u, H! P' h( S
9 L% p! J1 O8 ~, iif (scan.Token == _T ("ip"))0 ]2 w6 c; U5 n! | K) D) w2 {! a
{4 Z* N5 a7 k8 T3 ]9 w' O
scan.GetTokenEx ();: s) w$ L& A8 l
strcpy (m_IPAddress scan.Token);0 S! D0 M2 n% v% k, `7 _$ ?
}$ q1 w- t+ a2 C4 G8 M/ X: j1 O
and turn it into this:
o& p9 y# s5 y( v4 y& ]4 ?Quote:
3 O1 q! {: \, ~1 `% T( c" i" c" Nif (scan.Token == _T ("ip"))
! r8 S$ L m z; G{
! G- X7 U7 t9 @) Y( r2 ?/ / Scan.GetTokenEx ();4 j& }6 x- G$ N: {' {. ^# K
/ / Strcpy (m_IPAddress, scan.Token);
& A4 ^; y o2 r; N}
1 n- X- ]# E; d1 ?5 c8 vAnd you created the solution.7 n. P* F8 ?. o" F
) L, Y$ A6 P+ I7 Y! C
6 ^( _, R! m: H! K; {
Then read the Neuz not the IP from the INI anymore. even if put in it+ V* |! y- ~% \7 ]5 l
) ^, T) j: E& ?0 v: |8 _) b. B
Max skill's
9 _& l! B8 l( I; g a+ K) T5 H) I0 m% z; E( \2 {2 E
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 ! ~+ X. L, q" ^0 u+ K
8 U4 u+ I) D% `7 y4 GWith the TUT can provide the remedy it
" {0 `( `" t- K6 o9 @& {9 ?
* o- n' a& `, Z) d1 s; [ D! e# 1 opens the file SkillInfluence.h
" x* c9 c$ V1 A# 2 Search
0 D. `- f. z! W J) \. TCode:
4 E; M7 J3 l+ G0 f" m) X( ]! ?, m6 O" z; Y$ S0 M# P
# Define MAX_SKILLBUFF_COUNT 14
( K0 ]7 i, Z: u9 S: Y1 i/ T: |" ^% |+ K0 j C4 c u) N0 V
# 3 Change the 14 to your number (eg 21) and save it from5 [% i) h/ J6 u/ j/ R# X& x7 H1 B
# 4 compilation and ready& M+ ]" L* l" t6 V6 H1 Y% Y. k
* O5 P D) H9 A* R. V
- I$ L' _' f0 J ?2 a# bI 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:
3 T) Y3 L W% N# j, L
8 i' \, ~3 t0 `! x1 v9 G7 \dennisdra
, ~! F, n5 M/ O' w9 H9 B.Crasy9 p& W5 Q. d S4 @/ Z
©ross& s2 [. d& e3 {) V ~/ b# H
Sedrika
& c0 c9 |/ q, Q8 e8 m8 H) ]; [! |0 p7 B) d
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!
& ~( N) h3 _7 p
: u0 Y! @! G* b& a/ G3 XP.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less
2 N8 F8 R* W/ y8 M: D4 G" A) n& p) V4 h* O' Q- X9 {! B1 p) f
0 U2 ?& ?# z+ H( T$ p2 }
Update 1:
how to turn off "Profiler" in worldserver.exe
+ i# k7 W4 \" ]* @. K( q1 V, y
! d2 b' h% `, i) j! d3 }4 O1 ~' _4 }" U/ ?" {9 b
in VersionCommon.h of Worldserver Solution
7 W) P# l0 J$ v8 l+ e, @1 R& m6 VLook for' K/ F6 {2 I) k- i
) }' v0 e2 I% L; ?" _
#define __PROFILE_RUN' S) G: L4 [3 |1 M
) V7 @# S: e' \* C. {. V+ }. f
comment it or simply2 ?" m! ^9 N6 E% d
. D' g& b# e3 R( i' K//#define __PROFILE_RUN 3 _8 R0 J' P( k
7 s' t$ _, n: F4 ~1 B/ Z7 m$ [1 O1 ?0 a! Z% z8 C; E: U! w8 \, ]
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投寄。谢谢。我添加更多的很快如果你有病加太
% g! X; S3 c+ h; H |