karazu 33 Posted October 14, 2013 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? Quote Share this post Link to post Share on other sites
0 karazu 33 Posted October 15, 2013 Is this every 3 hours? OnMinute00: if ( ( gettime(3) % 3 ) == 0 ) // start the event end; Quote Share this post Link to post Share on other sites
0 evilpuncker 503 Posted October 15, 2013 shortest (every 30 min): OnMinute00: OnMinute30: shortest (every 60 min): OnMinute00: enjoy! Quote Share this post Link to post Share on other sites
0 karazu 33 Posted October 15, 2013 Thank you very much. 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) { Quote Share this post Link to post Share on other sites
0 Patskie 88 Posted October 16, 2013 Is this every 3 hours? OnMinute00: if ( ( gettime(3) % 3 ) == 0 ) // start the event end; Every 3 hours the event will start 1 Mumbles reacted to this Quote Share this post Link to post Share on other sites
Hello instead of typing on NPC script
Share this post
Link to post
Share on other sites