blob: 7f8834ff46884f08a6f3e0991b81c6ccd5f1851a (
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
|
// TMW2/LoF scripts.
// Authors:
// TMW-LoF Team
// Jesusalva
// Description:
// Shady NPCs with questionable purposes.
//010-2,23,70,0 script Josh NPC_TECH_EXPLORER,{
017-3,23,70,0 script Jenny NPC_FEMALE_WORKER,{
showavatar NPC_FEMALE_WORKER;
mesn;
mesq l("We're busy here, so please don't bother us.");
close;
}
017-3,39,75,0 script Zack NPC_TECH_EXPLORER,{
showavatar NPC_TECH_EXPLORER;
mesn;
mesq l("Why are you here? This area is off-limits!");
// TODO: Offer a Zambacutou if both quests were cancelled? That would unblock
// Fairy Collector 1H Collection at the cost of two quests.
close;
}
|