blob: cbbbf233c7d930aac5e24d9c5114675a257a15fe (
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
48
49
50
|
// Part of Annual halloween
026-1,24,37,0|script|Munro|183
{
callfunc "HalloweenCheckOld";
callfunc "TrickOrTreatTally";
if (($@halloween_time == $@halloween_reward_time) && (@npc_tally >= $@halloween_charm_count) && !(HALLOWEENTIME & $@halloween_got_charm_reward))
goto L_Halloween;
goto L_NoReward;
L_NoReward:
mes "[Munro]";
mes "\"Greetings mortal.\"";
next;
mes "\"Once again we come to that time of year when the veil is thin\"";
next;
mes "\"All those who have passed on can part the veil to return.\"";
next;
mes "\"A time to celebrate our ancestors and chase evil away.\"";
next;
mes "\"Celebrate the holiday with me and I will reward you later.\"";
goto L_Exit;
L_Halloween:
mes "[Munro]";
mes "\"You have shown to have the Halloween spirit. Take this charm.\"";
set HALLOWEENTIME, HALLOWEENTIME | $@halloween_got_charm_reward;
getitem "SkeletonCharm",1;
goto L_Exit;
L_Exit:
close;
}
function|script|SpawnMunro
{
if ($@halloween_time)
goto L_EnableMunro;
goto L_DisableMunro;
L_EnableMunro:
enablenpc "Munro";
goto L_Return;
L_DisableMunro:
disablenpc "Munro";
goto L_Return;
L_Return:
return;
}
|