buybuy
Expired VIP Member
Posts: 214
Joined: May 2014
Reputation: 1
Version:
1.4.2.142
|
summon pet
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?
(This post was last modified: 09-28-2015 14:35 PM by buybuy.)
|
|
09-28-2015 14:33 PM |
|
blah
Expired VIP Member
Posts: 48
Joined: Jul 2015
Reputation: 9
Version:
1.4.2.141
|
RE: summon pet
(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 19:38 PM |
|
buybuy
Expired VIP Member
Posts: 214
Joined: May 2014
Reputation: 1
Version:
1.4.2.142
|
RE: summon pet
(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.
|
|
09-28-2015 22:11 PM |
|
luki2555
Expired VIP Member
Posts: 15
Joined: Nov 2014
Reputation: 9
Version:
1.4.2.142
|
RE: summon pet
-- Summon Shadow 1128
-- Summon Silhouette 1228
-- Summon Soulless 1278
-- Summon Spectral Lord 1408
|
|
09-29-2015 13:26 PM |
|