OnClock command

karazu

New member
Messages
1,115
Points
0
Hello instead of typing on NPC script
 

OnClock0100:
OnClock0300:
OnClock0500:
OnClock0700:
OnClock0900:
OnClock1100:
 
 
 
how to make it shorter that the NPC will  just activate every hour or every 30 mins?
 
Is this every 3 hours?
 

Code:
OnMinute00:	if ( ( gettime(3) % 3 ) == 0 )		// start the event	end; 
 
shortest (every 30 min):

OnMinute00:

OnMinute30:

shortest (every 60 min):

OnMinute00:

enjoy!

 
Thank you very much.
 

Code:
    end;OnMinute00:OnMinute30:	callsub OnActive;	end;OnActive:	callsub OnEndd;	set .status,1;	Announce "[Battle Ground]:Someone active the game! Go to prontera,150,180 and join us!",0;	end;OnTimer60000:	if(.playernm<=32)	{
 
Back
Top