blob: f70eee70536a27b2239c1dd49b21facb2c2a9ce7 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
//===== eAthena Script =======================================
//= War of Emperium Guild Dungeon Switch Function
//===== By: ==================================================
//= jAthena - kalen (1.0)
//= 1.1 by Akaru, ho|yAnge|X, and Valaris
//===== Current Version: =====================================
//= 1.3
//===== Compatible With: =====================================
//= eAthena 0.1+; RO Episode 4+
//===== Description: =========================================
//= Switch that warps guild members to guild dungeon.
//==========================================
//= Break down of arguments used in the function:
//= arg(0): name of guild castle.
//= arg(1): guild dungeon level.
//= arg(2): x1 coordinate for warp
//= arg(3): y1 coordinate for warp
//===== Additional Comments: =================================
//= 1.2: All guild Dungeon Switch npcs use this function.[kobra_k88]
//= 1.3 Reverted back. Don't listen to ... people at forums
// and check all bugs yourself!
// Some not competent people try to change gld_dun -> gld_dun0
// IT is wrong, because we already supple "02","03",etc as suffix.
// [Lupus]
//============================================================
//==================================================
function script F_GldDunSw {
mes "[ Mysterious Voice ]";
mes " ' Only brave warriors may lead the guild base.. '";
next;
mes "(There is little switch over here....... Would you like to pull the switch?)";
next;
menu "Yes",-,"No",M_No;
set @GID, GetCastleData(getarg(0)+".gat",1);
if (@GID == 0 || getcharid(2) != @GID) goto L_NotGLead;
warp "gld_dun"+getarg(1)+".gat",getarg(2),getarg(3);
end;
L_NotGLead:
mes "[ Mysterious Voice ]";
mes " ' ..... it seems that you are not brave enough...... ' ";
M_No:
return;
}
|