Lineage 2 Tower Forum

Full Version: Mage asistance after spoiler use spoil skill?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I have 2 characters Mage and Spoiler i want to make it When spoiler spoil some mob then mage start hitting becousen ow when spoiler target some mob and start to run to him mage already kill the mob .. Can i make it mage to start asisstance after spoil ?
Its possible using plugin and script Wink
(09-17-2011 18:33 PM)Daczu Wrote: [ -> ]Its possible using plugin and script Wink

Can someone make that script ? After spoiler use Spoil then Sph start hitting ?
PLUGIN:
    LUA Programming
function OnMagicSkillLaunched(user, target, skillId)
  if (skillId == SPOILID) and (user:IsMyPartyMember()) then
    Command('.scriptStart name.lua');
  end;
end;


SCRIPT name.lua:
    LUA Programming
repeat
  UseSkill(NUKEID);
until GetTarget():GetHp()>0


Save it in proper locations, fill NUKEID and SPOILID with skill ids, set on nuker assist on spoil and start spoiling. I didn't test it so there is a big possibility of small bugs. Just write here is something doesn't work.
Reference URL's