Lineage 2 Tower Forum

Full Version: how to make stigma 10sec delay
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi,
I want to use stigma on every mob in cata. If I set it in spoil, sweep option it spams stigma every 2sec or so and SE is out of mp soon, if I set it in nuke attack repeat, 10sec delay it doesn't work at all. Some idea?
script?

while
{
oldtarget=GetTarget;
while(oldtarget == newtarget)
{
newtarget=GetTarget;
}
UseSkill(stigma);
}

some ifs... somethink like it
It says unexpected symbol near while. I just copied ur text in txt file, changed extension to .lua and run it ingame.
    LUA Programming
repeat
	Sleep(100);
	old = GetTarget();
	new = old;
		while old == new
		do
		new = GetTarget();
		sleep(100);
		end;
	UseSkill(1539);
until false;



dunno i think it can be work...i havent time to check it.
Reference URL's