|
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
! a7 O* }5 H* G. ^8 X; r+ ychange level without Rebirth
) U. e2 S* i3 Y. I( N8 o- n9 I$ m+ ^3 T- l X" @, K5 H2 m: f
Now, let us begin.
- g" A( ?7 I1 s# H, e: K# d l/ P$ a) S9 w
Requirements:
! O8 k1 }* y3 Y' o, E) P9 FSource
3 ~' H" i; m+ N- K2 ENotepad / Editor
8 w3 y8 p$ K# @) i) X6 J% f# E# Q n- ]4 p, w: E& F6 f3 ]
/ / Tips by Sedrika9 b9 H, k. m# g0 M" \5 s+ A
7 _, c7 p6 H; F% F4 }; R
It is up to you how you do it ^ ^
6 I1 }/ [: r0 R0 ?) T$ c, A
2 c, r. G ^* F" d/ nGo into your source folder and open the definejob.h4 m- t+ d- ~; ~% l" a
Search there for:6 X" F {5 {+ t. |
1 L' b0 H c g: j& o5 y. `#if __VER >= 15 // __HERO129_VER15 // 15Â÷ è÷¾î·Î ·1o§è®àå
* }9 i1 V1 T$ s4 N#define MAX_LEGEND_LEVEL 129
) m& S4 U W3 e& e/ V) }#define MAX_MONSTER_LEVEL 160* p }. ]+ J+ P: ~
#else // 15Â÷ è÷¾î·Î ·1o§è®àå
4 A" j& R2 M5 A3 u# L#define MAX_LEGEND_LEVEL 121, j1 g, W* B! ?
#endif // 15Â÷ è÷¾î·Î ·1o§è®àå
( _! b2 Y: q \# M/ m
. ]7 D4 P/ K7 G/ R7 K
$ {8 \. G! U& @* ]Red: Player Max. Level
, x- i" h; b) M' G+ cGreen: Monster Max. Level* t1 |8 g& x3 l9 Z* Y' |' j: ?* \- G
4 c( Y8 W3 V1 y7 q. M, v
These changes as simple as you want. p/ q' F* X% m; q% s: [( d5 F
6 P% T1 A+ t- N2 X+ t
Then you have to just recompile the World Server Files + and make your clientin the Definejob.h the same changes as in the source.* m. {0 ]+ ^) V) n
8 A. O7 V# \$ K0 d* B
Part 1 of blocking CE
! @. U4 H7 C1 K# |# X4 ~# t8 Y: V
" w7 w! X3 ]* W. rIn this tutorial I will show you how to change the Head of Mark flyff.
% b+ q3 i' H$ W. W }The current Head Mark is well known, 5E, which results as a string ('^').
% I3 b9 M7 S$ B* v
/ ^5 r5 Y7 G4 J2 y8 b5 u1 MFor this we go to the World (Project) and looking at the Buffer.h after thistext
0 ]" m% @( m( w0 @6 Z' VQuote:
+ B( Q" |7 I" I( |1 u# Define HEADER MARK '^' / / Normal messageheader# U+ Q- ^# c* n9 Y. _- D; I/ _2 x' U
# Define SYSHEADERMARK '%' / / System message header
- K# R: ]. x" f4 l7 e1 r7 nWhat the Sysheadmark is looking for is not even the top 5E.
' o" W' J n1 ~2 l3 f9 Q2 mChange this and it makes the CE Not work on server.
* h; N. T0 I4 S4 h' x; l+ e8 O$ i. g$ G9 l l* h; [5 E( [& r
Then Tom's anti-hack is no longer useful.# Z% p3 h0 Q8 |2 ?; t& x
) K/ F- W# Z5 R% H! \* m1 @
LG Sedrika
Part 2 of blocking CE * B' a+ v; X. |# A$ ^, d P$ }
0 @1 ?- A2 O9 q4 Y
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.
$ R* A0 W* {* U( ?# R" P8 Z# D7 OWhat does this have an advantage?
4 m7 F2 u9 h# e, C. S6 z6 B% ~The editor needs the IP packet from the INI to join, and if this does not, thenwhat? Now think for yourself
# {% J. e0 V! l$ b0 f" y% M5 `1 B& r F5 H! \ z u
* F1 e2 l+ ?! N; p/ NFirst you need to get open source even know how you do it, is left with you, andyou do the project on the Neuz.
+ o6 W: {, J! i% k( }6 y" J8 }: I+ K6 l" E: a
Then search for the following content in HwOption.cpp
! ?# ^) ^" q6 K$ g5 X! l& T; j
- u# K! [4 ?8 h6 e8 @5 n, ~2 I" M, _' ^" ~& k s
if (scan.Token == _T ("ip"))' e/ r6 I% y5 J. L, H
{
9 Q S5 n4 p. O5 H! iscan.GetTokenEx ();# I9 ~) ^; N2 T' o
strcpy (m_IPAddress scan.Token);# P. a1 S! ~4 s, V3 i
}% @/ j# l) V p8 h* ^, o; D
and turn it into this:
# \7 U- F& U4 \1 |+ D7 oQuote:
. |3 j/ ?( V( h2 f" Q' g Hif (scan.Token == _T ("ip"))
' a0 e% T( l" v{& c# }0 U: E z4 `
/ / Scan.GetTokenEx ();6 @% B8 m% l1 \& Q% q
/ / Strcpy (m_IPAddress, scan.Token);& i1 J$ X- p- p: c) C v
}* C6 J: A, C4 }5 c0 Y5 ~
And you created the solution.* Y+ W T9 q" l& J: X T
! e4 P% H% z: K! ~, Z! [# T* Z/ L, C4 ]$ ^( ?; h2 ] v) X) M
Then read the Neuz not the IP from the INI anymore. even if put in it+ ~( `( j( G3 R' S
! _' |1 r- @. ~- G; D, h' N6 P$ j' p5 e
Max skill's 8 Q' A: W5 a1 @9 \
* U0 m$ P: B+ _2 z3 G, _. K, A8 s) K! 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 8 I% n: {8 T0 H& k
+ K$ m6 p0 P. B" ~
With the TUT can provide the remedy it
- j' n! A7 {/ z [2 B8 z
% o6 O" f, r- s5 a! g# 1 opens the file SkillInfluence.h1 H: @6 O% e8 L
# 2 Search
; |8 Z8 Y9 n" x( G2 k: \8 sCode:
- Y6 C7 k* s' B' r) ]
0 X7 c$ s% G5 C8 |* J# Define MAX_SKILLBUFF_COUNT 14
6 M) I9 X: V* ^) f8 c
; R- [: u& \- {( d& M# I# 3 Change the 14 to your number (eg 21) and save it from. ~. K" p4 B9 |+ C
# 4 compilation and ready
2 N; e4 Z3 P' g# T0 I; _
6 o1 C8 W& C! W0 \% l7 y# O/ G, A# A
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 S& T; f3 f+ A
5 J5 D; G V- z1 c; X0 R6 D) Udennisdra
/ q: v# H8 h# J# ?1 p.Crasy
7 H' k* g1 y" H7 r& l! p4 F3 c©ross( _+ k( g2 f! u
Sedrika
/ t+ G( }; c7 r% G/ u
& a, [8 _! U4 a- ]; `) jeverything 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! 1 e- t3 f" P, l2 C
2 ?$ O. _' H; \% O& Q4 E
P.S: This means no server should be able to use CE because its very simple tostop it. takes 5mins maybe less
( _5 `0 l0 Z% E; S/ M$ F
9 M v7 ]5 C/ U T
& ]) J- Z+ \/ D) \) N6 cUpdate 1: how to turn off "Profiler" in worldserver.exe l0 f: Z4 h# h& C( T2 B
2 E! m# z+ U* m% Z) @: O4 X7 n
" J/ _0 M/ }8 Vin VersionCommon.h of Worldserver Solution
' v& ?$ \8 u$ b% N6 z* ^Look for" X( l- i" N8 y& y
! P' _( ~9 g: Y* p#define __PROFILE_RUN& H n: T$ J8 `7 B* S% |; d
: C g' a5 K1 |* D- F( `comment it or simply
Q0 Q; Y, h ?0 G: c; i4 {$ i0 \. W% C2 y0 C' E) \
//#define __PROFILE_RUN
4 D3 W. J8 d! M/ o! Q" f
/ O! q Y; @. n% E! _6 x
! _/ _/ L0 f# u' j) Rcredits 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投寄。谢谢。我添加更多的很快如果你有病加太 . h& z8 W, P0 M3 r; q
|