-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path3rdMount.txt
72 lines (68 loc) · 2.07 KB
/
3rdMount.txt
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
//===== eAthena Script =======================================
//= Third Job Mount
//===== By: ==================================================
//= Lionheart
//===== Current Version: =====================================
//= 1.0
//===== Compatible With: =====================================
//= eAthena SVN
//===== Description: =========================================
//= Official third job mounts.
//===== Additional Comments: =================================
//= 1.0 First version. [Lionheart]
//============================================================
prontera,130,215,5 script Riding Creature Master 105,{
if((Class == Job_Rune_Knight || Class == Job_Rune_Knight_T) && getskilllv("RK_DRAGONTRAINING") > 0) {
mes "[Riding Creature Master]";
mes "Welcome. Would you like to rent a Dragon?";
next;
menu "Yes",-,"No",L_NO;
if(checkriding()) {
mes "[Riding Creature Master]";
mes "You have already rented a Dragon.";
close;
} else {
setriding;
close;
}
}
if((Class == Job_Royal_Guard || Class == Job_Royal_Guard_T) && getskilllv("KN_RIDING") > 0) {
mes "[Riding Creature Master]";
mes "Welcome. Would you like to rent a Gryphon?";
next;
menu "Yes",-,"No",L_NO;
if(checkriding()) {
mes "[Riding Creature Master]";
mes "You have already rented a Gryphon.";
close;
} else {
setriding;
close;
}
}
mes "[Riding Creature Master]";
mes "I'm here to provide Rune Knights and Royal Guards with riding creatures.";
close;
L_NO:
mes "[Riding Creature Master]";
mes "I see. Then have a great day.";
close;
}
prontera,128,213,5 script PecoPeco Remover 105,{
mes "[Soldier]";
mes "If you're unable to dismount from a PecoPeco";
mes "for some unknown reason,";
mes "please feel free to use my";
mes "service.";
close;
}
prontera,164,175,3 script Magic Gear Master 105,{
if((Class == Job_Mechanic || Class == Job_Mechanic_T) && checkriding() == 0) {
setriding;
close;
}
mes "[Magic Gear Master]";
mes "How may I help you?";
mes "Magic Gears are only available for Mechanics.";
close;
}