Lineage 2 Tower Forum

Full Version: Problem Assist
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
Try this on dds
    LUA Programming
pm = GetPartyMaster(); 
repeat
lt = GetUserById(pm:GetTarget());
if (lt ~= nil) then
	if (lt:IsMonster()) then
		if not (lt:IsAlikeDeath()) then 
		Target(lt);
		Sleep(300);
		else
		Sleep(500);
		end;
	else
	Sleep(1000);
	end;
else
Sleep(500);
end;
until false;

(06-04-2014 04:57 AM)diegol Wrote: [ -> ]Try this on dds
    LUA Programming
pm = GetPartyMaster(); 
repeat
lt = GetUserById(pm:GetTarget());
if (lt ~= nil) then
	if (lt:IsMonster()) then
 if not (lt:IsAlikeDeath()) then 
 Target(lt);
 Sleep(300);
 else
 Sleep(500);
 end;
	else
	Sleep(1000);
	end;
else
Sleep(500);
end;
until false;


how to make it with plugin ? Big Grin
(06-04-2014 10:47 AM)benbt91 Wrote: [ -> ]how to make it with plugin ? Big Grin

That secret info I never raid XD really I dont know anything about c++, I just touch and see what happen, but plugins are on a superior floor for me.
Pages: 1 2
Reference URL's