Lineage 2 Tower Forum

Full Version: Pet Skills
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
What is the best way to use a wynns pet skills with tower?
(03-28-2015 19:49 PM)lilscout Wrote: [ -> ]What is the best way to use a wynns pet skills with tower?
Code:
Command('/useshortcut 1 1')
or
Code:
Action(ID, false, false)
ID's here: link
Summoner-AIO works nicely too.. <-Search Script
(03-28-2015 19:49 PM)lilscout Wrote: [ -> ]What is the best way to use a wynns pet skills with tower?

Herre is a simple script i sometimes use... Put pet skill in bar 1, position 6... or modify the script with your skill position...

U can "uncomment" the 2 lines that uses shortcut 1 10 if u want to use a 2nd skill...

+2 rep me if it helped you...!

    LUA Programming
ShowToClient("Skill Pet","PhantomPower ON");
repeat
	if(GetTarget() ~= nil and GetTarget():IsAlikeDeath() == false) then
 Command("/useshortcut 1 6"); --shortcut with macro.
 Sleep(300)
 --Command("/useshortcut 1 10"); --shortcut with macro.
 --Sleep(300)
	end;
	Sleep(1000)
until false;

Reference URL's