Woe setter

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Guest
Hi,

I'm building a simple woe setter and would like to know if I'm going to have some issue using this, does anybody know?

Seems to work but I'm afraid that something could go wrong.

Code:
-	script woe_start	-1,{

OnFri1445:
AtCommand "@agitstart";
announce "The WoE has started!",bc_all;
end;

}

-	script	woe_end	-1,{
OnFri1645:
AtCommand "@agitend";
announce "The WoE has ended!",bc_all;
end;

}
 
Hi.

I see no problems. It should start WoE each friday at 14:45 and end it at 16:45.
I'd use agitstart; and agitend; instead of the @commands, but that's up to you.


~Kenpachi

 
Hi.

I see no problems. It should start WoE each friday at 14:45 and end it at 16:45.
I'd use agitstart; and agitend; instead of the @commands, but that's up to you.


~Kenpachi
The reason I was using atcommand is because I want to enable a npc everytime @agitstart is used and @agitend to disable. I could not make it work without atcommand, but thinking now I could just enable the npc with same label OnFri ^_^

Thanks for your feedback ❤️

 
Last edited:
Back
Top