diff options
author | Jessica Tölke <jtoelke@mail.upb.de> | 2012-11-28 15:36:32 +0100 |
---|---|---|
committer | Jessica Tölke <jtoelke@mail.upb.de> | 2012-11-28 15:37:53 +0100 |
commit | a6aa02bb42c8742222e21e3e8901e126a99e99d8 (patch) | |
tree | afa073e3012556e40cf71f6368de79f518e94880 /world/map/npc/xmas/2012/bodyguards.txt | |
parent | 2768100b78ddff29b1a375c753b1c5b12ddd8cce (diff) | |
download | serverdata-a6aa02bb42c8742222e21e3e8901e126a99e99d8.tar.gz serverdata-a6aa02bb42c8742222e21e3e8901e126a99e99d8.tar.bz2 serverdata-a6aa02bb42c8742222e21e3e8901e126a99e99d8.tar.xz serverdata-a6aa02bb42c8742222e21e3e8901e126a99e99d8.zip |
Christmas Event 2012.v2012.11.28
Diffstat (limited to 'world/map/npc/xmas/2012/bodyguards.txt')
-rw-r--r-- | world/map/npc/xmas/2012/bodyguards.txt | 91 |
1 files changed, 91 insertions, 0 deletions
diff --git a/world/map/npc/xmas/2012/bodyguards.txt b/world/map/npc/xmas/2012/bodyguards.txt new file mode 100644 index 00000000..0fffcc19 --- /dev/null +++ b/world/map/npc/xmas/2012/bodyguards.txt @@ -0,0 +1,91 @@ +// This file is part of Christmas Event 2012 +// author: Jenalya + +030-2.gat,76,88,0|script|Vilhelmiina|335,{ + callfunc "xmas2012time"; + + if (@xmas_time == $@xmas2012_no_event_time) + goto L_NoEvent; + + mes "[Vilhelmiina]"; + mes "\"This is Santa's room. But he isn't here.\""; + menu + "Ok, thanks.", L_Close, + "Could you let me in anyway?", L_Enter, + "Where is he?", L_Where; + +L_Where: + mes "[Vilhelmiina]"; + mes "\"Maybe he went to talk to Chief Warrick? Or he's over in the workshop? Or in the basement? I don't know.\""; + close; + +L_Enter: + mes "[Vilhelmiina]"; + mes "\"No!\""; + close; + +L_Close: + set @xmas_time, 0; + close; + +L_NoEvent: + mes "[Vilhelmiina]"; + mes "\"How did you come in? At this time of the year the door should be locked!\""; + warp "030-1.gat", 99, 55; + close; +} + +030-2.gat,80,88,0|script|Vihtori|333,{ + callfunc "xmas2012time"; + + if (@xmas_time == $@xmas2012_no_event_time) + goto L_NoEvent; + + mes "[Vihtori]"; + mes "\"Santa isn't in his room at the moment.\""; + menu + "I see.", L_Close, + "Could I wait for him inside?", L_Enter, + "Where do I find him?", L_Where; + +L_Where: + mes "[Vihtori]"; + mes "\"Talking to some helpers I think. Just have a look around the house, I'm sure you'll find him.\""; + close; + +L_Enter: + mes "[Vihtori]"; + mes "\"What cheek! Of course not!\""; + close; + +L_Close: + set @xmas_time, 0; + close; + +L_NoEvent: + mes "[Vihtori]"; + mes "\"How did you come in? At this time of the year the door should be locked!\""; + warp "030-1.gat", 99, 55; + close; +} + +030-2.gat,152,22,0|script|Vanamo|332,{ + callfunc "xmas2012time"; + + if (@xmas_time == $@xmas2012_no_event_time) + goto L_NoEvent; + + mes "[Vanamo]"; + mes "\"This area is restricted. You're not allowed to enter.\""; + next; + mes "..."; + next; + mes "\"Ehm... enjoy your visit in Santa's residence!\""; + close; + +L_NoEvent: + mes "[Vanamo]"; + mes "\"How did you come in? At this time of the year the door should be locked!\""; + warp "030-1.gat", 99, 55; + close; +} |