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