Lineage 2 Tower Forum

Full Version: Spoil and party sit/stand
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello I ve set my spoiler and my buffer. 2 problems however:
The spoiler uses spoil many times in each mob even though the 1st one works Big Grin
I don't know how to set my buffer to /sit and /stand every time my spoiler sits and stands? Any help?
Thanks in advance
try this crap. It may need fix, because i wrote it in notepad
    LUA Programming
repeat
	spoil = GetUserByName("SpoilNick");
	if(spoil~=nil)and(spoil:IsMyPartyMember())then
		if(spoil:IsSiting() and GetMe():IsSiting() == false)then
			Sit();
		end;
		if(not spoil:IsSiting()) and(GetMe():IsSiting())then
			Stand();
		end;
	end;
	Sleep(5000);
until false;

Thanks Shy

What about the spoil problem? I waste too much mana because of that
Reference URL's