View Single Post
  #5  
Old 03-26-2008, 01:16 PM
ChaosSlayer
Demi-God
 
Join Date: May 2007
Posts: 1,032
Default

Quote:
Originally Posted by Congdar View Post
this looks like the west freeport sparing monks script i wrote for Ran`Un. It's working fine in west freeport without stoptimer.

Are other quests working? Is Perl working, because animations are working for me.
aye that is where I got it from - but i have no idea if it ever qorked in FP.

So far i run into situation where "scrip wroks as intendend" even wihout checking how mcuh time has passed, in some files, and don't work in others at all.

for exampel the following code is not suppose to work:

Quote:
#fiherman



sub EVENT_SPAWN
{

quest::settimer("fish1", 180);
quest::say("It is fish time! Oh no! All the dang cats allready here!");


}



sub EVENT_TIMER
{

if($timername eq "fish1")
{
quest::doanim(1);
}

quest::say("Come on fishy-fishy!..Hushhhh, you little hungry devils! Get away from my fish!");



}
As you see it says the phrase BEFORE it checks the timers - yet phrase fires off every 3 min, but animation never
Reply With Quote