Lineage 2 Tower Forum

Full Version: Leave party script
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi guys I've been looking for a "leave party script", so i can dismiss someone or invite him for example, every 4 minutes.

As far as i know , l2 tower cant do this on its own, if im wrong just say.

So, well i wonder if you can tell me if there's any script like this one around here.

Thanks in advance.
Set on how u want to be invited auto accept party from the leader name ... and run on leader this ...
    LUA Programming
repeat
Command("/invite charname");
Sleep(30000) -- 30s 
Command("/dismiss charname");
Sleep(4*60*1000) -- 4 min w8 
until false

I think is write like this ...
It doesnt work, i think sleep time is wrong because my char invites and dismisses the user i wrote in the code like every 2 secs.
Something in sleep is not working i guess

Ok, nvm, it must be in milliseconds, but still Works, thank you!
Sleep command operates time in milliseconds
for 30 seconds you have to specify 30000.
for 4 minutes you have to specify 4*60*1000.
Reference URL's