Lineage 2 Tower Forum

Full Version: summon pet
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
With tower basic settings-no script used- on a non awakened summoner,can i resummon pet when it dies and activate petshots?Using nukes or buffs or heals/summon souless doesnt work,it keeps trying to summon even when pet is alive.Or someone can give me a script to summon and activate pet shots?
(09-28-2015 14:33 PM)buybuy Wrote: [ -> ]With tower basic settings-no script used- on a non awakened summoner,can i resummon pet when it dies and activate petshots?Using nukes or buffs or heals/summon souless doesnt work,it keeps trying to summon even when pet is alive.Or someone can give me a script to summon and activate pet shots?

http://forum.l2tower.eu/thread-free-upda...for%2Btank

u could probably change the skill id for the summon and that would work. then just add -1 to all the skill areas since u dont have them yet.
(09-28-2015 20:10 PM)TheQQmaster Wrote: [ -> ]nah so long code ? lol

find summon id to summon, should enable shots that contain Beast word

    LUA Programming
function Shots(value)
	local items = GetInventory();
	for i in items.list do
 if string.match(i.Name, "Beast") then
 ActivateSoulShot(i.displayId,value)
 end;
	end;
end;
 
 
repeat
	pet = GetPet();
	if pet == nil then
 UseSkillRaw(1129,false,false); -- pet summon id, change it
 Sleep(3*1000);
 Shots(true);
	end;
	Sleep(5*1000);
until false;


ty,i want dark elf summoner pets ids, souless and the other one he gets at 79lvl,lord i think its called ,if u can provide them,no clue where to look for ids.
-- Summon Shadow 1128
-- Summon Silhouette 1228
-- Summon Soulless 1278
-- Summon Spectral Lord 1408
tnx a lot Smile
Reference URL's