Lineage 2 Tower Forum

Full Version: Greater Antidote
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi, Forgive me if there is a post about this, but I searched and checked all of the scripts. I need to use Greater Antidotes when I get poisoned. Is there a method for this or script? I checked //xcfg as well. Thanks in advance!
yes there is but you need make list of all poison debuff ID list for witch you can use antidote, this topic was opened lot of times but there is no one who can share his time to make list of ID's

future was to make list of debuffs for: Antidote, Greterer antidote, purify skill, cleanesence

but there is on one who can take care of this
I see that is a shame.. Could come in very handy especially classes with cure skills. Thanks for speedy reply! +1 rep
well every one can make list of this, script was made but only for 2-3 debuffs, if you make list of ID's than you can extend it for your poizon
just go to L2Tower folder - > config -> folder with game path -> open file skils.txt and search for your poizon ID's

this in en example for 1 debuff
    LUA Programming
function debuff(id)
	if(GetMe():GotBuff() == id)then
	UseItem(xxx); --xxx enter id of item to use
	Sleep(3000);
	end;
end;
 
debuff(4047); --enter id of debuff

(04-06-2012 07:31 AM)wppw Wrote: [ -> ]well every one can make list of this, script was made but only for 2-3 debuffs, if you make list of ID's than you can extend it for your poizon
just go to L2Tower folder - > config -> folder with game path -> open file skils.txt and search for your poizon ID's

this in en example for 1 debuff
    LUA Programming
function debuff(id)
	if(GetMe():GotBuff() == id)then
	UseItem(xxx); --xxx enter id of item to use
	Sleep(3000);
	end;
end;
 
debuff(4047); --enter id of debuff


+1 rep again! Thanks alot man.
So if i want to use antidote and greater antidote when i got poison (cause it depends on poison skill level), i just have to make 2 scripts, one with the id of antidote and the other with the id of greater poison (and both with poison skill's id)?
Reference URL's