K karazu New member Messages 1,115 Points 0 Oct 15, 2013 #2 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?
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?
K karazu New member Messages 1,115 Points 0 Oct 15, 2013 #3 Is this every 3 hours? Code: OnMinute00: if ( ( gettime(3) % 3 ) == 0 ) // start the event end;
evilpuncker vai se tratar garota Messages 2,178 Points 0 Age 109 Location bronzil Github EPuncker Emulator Client Version 2019-05-30a MAIN Oct 15, 2013 #4 shortest (every 30 min): OnMinute00: OnMinute30: shortest (every 60 min): OnMinute00: enjoy!
K karazu New member Messages 1,115 Points 0 Oct 15, 2013 #5 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) {
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) {
Patskie Community Contributors Messages 366 Points 0 Age 32 Location Philippines Discord superpatskie#0110 Github Patskie Emulator Oct 17, 2013 #6 karazu said: Is this every 3 hours? OnMinute00: if ( ( gettime(3) % 3 ) == 0 ) // start the event end; Click to expand... Every 3 hours the event will start
karazu said: Is this every 3 hours? OnMinute00: if ( ( gettime(3) % 3 ) == 0 ) // start the event end; Click to expand... Every 3 hours the event will start