CriminalMinded
Expired VIP Member
Posts: 15
Joined: Mar 2012
Reputation: 0
Version:
1.4.2.142
|
Greater Antidote
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!
|
|
04-06-2012 07:18 AM |
|
Hebdzik
Tester
Posts: 1,235
Joined: Aug 2011
Reputation: 265
Version:
1.4.3.143
|
RE: Greater Antidote
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
(This post was last modified: 04-06-2012 07:23 AM by Hebdzik.)
|
|
04-06-2012 07:22 AM |
|
Reputed by : | CriminalMinded(+1) |
CriminalMinded
Expired VIP Member
Posts: 15
Joined: Mar 2012
Reputation: 0
Version:
1.4.2.142
|
RE: Greater Antidote
I see that is a shame.. Could come in very handy especially classes with cure skills. Thanks for speedy reply! +1 rep
|
|
04-06-2012 07:26 AM |
|
Hebdzik
Tester
Posts: 1,235
Joined: Aug 2011
Reputation: 265
Version:
1.4.3.143
|
RE: Greater Antidote
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
(This post was last modified: 04-06-2012 07:36 AM by Hebdzik.)
|
|
04-06-2012 07:31 AM |
|
Reputed by : | CriminalMinded(+1) , MarcusDenby(+2) |
CriminalMinded
Expired VIP Member
Posts: 15
Joined: Mar 2012
Reputation: 0
Version:
1.4.2.142
|
RE: Greater Antidote
(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.
|
|
04-06-2012 07:42 AM |
|
argentinianjesus
Expired VIP Member
Posts: 130
Joined: Jan 2012
Reputation: 12
Version:
1.4.3.143
|
RE: Greater Antidote
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)?
|
|
04-08-2012 15:56 PM |
|