|
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 4 k5 Z! q e5 `' }1 C9 m3 G: q0 ^6 k
change level without Rebirth9 [9 q& F9 j( Q$ \
- S. q1 m& Y# |. vNow, let us begin./ r/ j0 C4 }: v/ }9 T( h
" ]; D6 {1 `- |) Q) x
Requirements:
' H# r( ?- P# [, OSource/ H7 @% y6 c3 }
Notepad / Editor& M: L) t1 H- L6 \
2 v& `9 [* t- ^# C- p, }/ / Tips by Sedrika
, H' M/ O, B8 n# u( D* F# ^) {: R4 G5 C8 O' {
It is up to you how you do it ^ ^
3 g* q" }* G* v1 i% Y
" x, m& v& \/ `) JGo into your source folder and open the definejob.h
6 R# X' m3 J% ~/ h2 b. T) p \Search there for:4 ]& Y D2 Q% z3 R3 ?) R( I
3 {% S0 R5 m+ ~3 \, j/ E#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå
B5 u. N$ y1 ]- k- M0 z$ G#define MAX_LEGEND_LEVEL 1299 L2 @; g9 p7 f* C; p3 I
#define MAX_MONSTER_LEVEL 160
0 y" j0 ]3 j! W" l) k#else // 15Â÷ è÷¾î·Î ·1o§è®àå$ d0 Q6 s. U- w
#define MAX_LEGEND_LEVEL 121
k. e+ \& j/ N; h#endif // 15Â÷ è÷¾î·Î ·1o§è®àå
6 j5 F7 \5 [2 P: h* ?7 F9 g
4 h: x C, y, S9 G% { r3 G: i. g+ z& o! F5 v, ~7 Y6 n
Red: Player Max. Level" q O0 \5 |: ]% a' h, z0 P, o
Green: Monster Max. Level
+ A0 j- g* r$ ~8 d
9 z# L4 s& X! p/ {5 Z: V% bThese changes as simple as you want.
- F- ^4 u1 i- X- L! Z5 }0 q
$ a* s; ?( g, u2 y0 `Then you have to just recompile the World Server Files + and make your clientin the Definejob.h the same changes as in the source.1 o# O! ]7 I. c. R' u
+ `" u0 a* E1 B9 s Part 1 of blocking CE
, B! Z$ }) _" ~
* @, F- m2 B9 u W$ _. G- @9 R/ uIn this tutorial I will show you how to change the Head of Mark flyff.3 F3 f6 H1 x7 t3 l* h8 L
The current Head Mark is well known, 5E, which results as a string ('^').! l( N& J3 }, F. n2 g
7 A5 T3 e) }3 U5 |, mFor this we go to the World (Project) and looking at the Buffer.h after thistext* k6 x4 i! \7 S$ U
Quote:
4 y- ^* A, }1 e0 d1 T2 C( n/ w5 `# Define HEADER MARK '^' / / Normal messageheader- k3 g/ o* G7 _2 h% ~
# Define SYSHEADERMARK '%' / / System message header
; Z/ _( Z2 M) zWhat the Sysheadmark is looking for is not even the top 5E.
( |* q& T. \# LChange this and it makes the CE Not work on server.
! f+ N/ d6 f8 R! m9 ^. D3 K3 C4 u
) h/ m6 k6 Z% b3 O' X8 _Then Tom's anti-hack is no longer useful.5 i7 x6 [% p' T. R3 F8 \4 j
, V% J6 m" D+ D- a( wLG Sedrika
Part 2 of blocking CE
1 ^$ E7 h" e/ C. f/ `7 G4 [4 ?2 o1 \/ o- e3 w& d4 q
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.
; e8 g: Y, I& ^) @! o8 ^What does this have an advantage?8 O( r; V3 N' Z1 ]* }
The editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself * T: Y3 P3 O' E
/ c# Q* @3 T# j( Q) ^% _3 R8 c5 `
& c2 w2 z0 q7 vFirst you need to get open source even know how you do it, is left with you, andyou do the project on the Neuz.
* F: l& s$ P% r7 N/ T1 o5 e! a0 q+ E0 j+ U6 S1 {' j7 V
Then search for the following content in HwOption.cpp
$ i% P3 h" Y4 c: b; t1 t# q2 w$ C$ g4 f5 a* V# D$ H
' l1 {9 k V* x0 A3 i/ q4 Rif (scan.Token == _T ("ip"))( O! u& ~) ]) X$ {: S
{
) L1 m% W& k5 X& Gscan.GetTokenEx ();4 h! i2 {4 o2 Z; W2 ?6 t, l% b
strcpy (m_IPAddress scan.Token);
8 G% y4 p. U: F5 {: y9 P}
9 |* c. I3 B- k& Qand turn it into this:
, e" z/ U) U; M/ sQuote:" h' ~( l9 ?$ ~
if (scan.Token == _T ("ip"))! K( n/ Z4 m1 u( [
{
& L$ z( g6 Q8 H7 c3 q* i: B5 W% F1 W1 L/ / Scan.GetTokenEx ();* }- e) a& b, ^: }% T' p, Y
/ / Strcpy (m_IPAddress, scan.Token);
5 S2 N& H8 u9 I: u$ ~- G7 }}& b6 \# `2 x; v) C4 U7 B* V
And you created the solution.
) V; @' t& n& ?. L$ T
p1 p3 e3 h' a M/ p$ V" g+ I" w% Q6 I$ i( A3 O* Y
Then read the Neuz not the IP from the INI anymore. even if put in it
4 f- T/ X! E; \# a+ V! r5 U: ` x& `- R
Max skill's 3 W9 q2 J Q9 m
" k6 i7 x; V6 x1 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
5 r1 {, ]# e4 |% a- i' X1 m9 B/ H+ m( N2 s
With the TUT can provide the remedy it
+ c+ \/ I2 N P& ?" S' ?1 n
, J: |/ ]; z3 Y& Q# 1 opens the file SkillInfluence.h
7 N% F( m8 h/ t% P# 2 Search
* {9 ~# L3 p. \2 \, M C4 B% ^Code:
9 `% z" g) ?+ S/ o6 e) m0 M; K( d3 i7 |7 E% k T; B( w
# Define MAX_SKILLBUFF_COUNT 14" c, s4 }+ q$ I5 n0 O* F0 @/ A
3 w" G W' L8 C( `% `7 r# 3 Change the 14 to your number (eg 21) and save it from
3 D2 S8 y( ?' m! k( l& l# 4 compilation and ready
* @; f( D9 I. [" K
) p! T; a& @) o, ]$ M& z7 J
. a: m0 b G' Y5 hI 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:! D% m1 g% @4 D5 b* e% C
3 L* U2 _9 J+ [* ddennisdra6 u/ g5 _& I$ J0 i! J8 g
.Crasy
- E+ D: s3 p9 m©ross# ^$ I; \. `( _) B
Sedrika: \. s6 r! m2 [* C S) ^: ^
7 h+ j8 v3 \. C) G l7 V- y: Veverything 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!
& r; d2 P) |2 e* o9 v0 |7 P6 l( |. d$ `; N
P.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less: [% q2 q$ B/ P5 ~! F1 r9 r% _
: x1 }% R* V9 _4 }0 {; i' }
) I4 R9 N6 R- q! fUpdate 1: how to turn off "Profiler" in worldserver.exe
5 g' X3 R9 B( o3 I/ P/ y: q
/ P5 X* F/ O8 L6 Y- h4 s/ I! `2 U5 |- m+ H ^! J' z
in VersionCommon.h of Worldserver Solution
( J. L/ c' M/ d+ E" _Look for
) G1 w* |& C0 p3 R n
! p& N5 z$ r: x) z7 N#define __PROFILE_RUN- V. |8 @2 o5 }* x$ ~7 Q( A# w
3 K: h( L( n3 b) \6 w+ J4 k
comment it or simply
$ `. `6 c1 Q& J; e1 ?# t3 @% @4 B- q- a6 n
//#define __PROFILE_RUN
' [7 w% s8 c3 C, T+ _: s5 c4 z% o- p) I3 x) ?) s. d
5 q# z6 b) y4 g4 `, l: E/ B/ e6 ]
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投寄。谢谢。我添加更多的很快如果你有病加太
$ Y7 y7 k" \3 y4 L- y9 N |