quest::snow
quest::snow
Explaination: Makes it snow in the zone.
Full Command: quest::snow(n)
N= choose 1 to turn the snow on in the zone or 0 to turns the snow off in the zone.
Example:
# After hailing the NPC it begins to snow in the zone.
sub EVENT_SAY
{
if($text=~/hail/i)
{
quest::snow(1);
}
}
|