So, there's an option in profile to use Phirius Potions:
Code: Select all
<option name="USE_PHIRIUS_POTION" value="true" />
Code: Select all
<option name="USE_PHIRIUS_POTION" value="true" />
Code: Select all
<onLeaveCombat>
if (not player:hasBuff(495431)) then
inventory:useItem(204514); -- Uses Magic Perfume
end
</onLeaveCombat>
Code: Select all
function CheckLP()
LP = (player.HP/player.MaxHP*100)
print("LP = "..LP.."%")
if( 35 > LP ) then
print("LP weniger als 35% !!")
inventory:update();
if( inventory:itemTotalCount(203498) > 0 ) then
inventory:useItem(203498);
print("benutze Phirius-Trank Typ E +60%")
elseif( inventory:itemTotalCount(203493) > 0 ) then
inventory:useItem(203493);
print("benutze Phirius-Spezialw. Typ E +60%")
elseif( inventory:itemTotalCount(203497) > 0 ) then
inventory:useItem(203497);
print("benutze Phirius-Trank Typ D +50%")
elseif( inventory:itemTotalCount(203492) > 0 ) then
inventory:useItem(203492);
print("benutze Phirius-Spezialw. Typ D +50%")
elseif( inventory:itemTotalCount(203496) > 0 ) then
inventory:useItem(203496);
print("benutze Phirius-Trank Typ C +40%")
elseif( inventory:itemTotalCount(203491) > 0 ) then
inventory:useItem(203491);
print("benutze Phirius-Spezialw. Typ C +40%")
elseif( inventory:itemTotalCount(203495) > 0 ) then
inventory:useItem(203495);
print("benutze Phirius-Trank Typ B +30%")
elseif( inventory:itemTotalCount(203490) > 0 ) then
inventory:useItem(203490);
print("benutze Phirius-Spezialw. Typ B +30%")
elseif( inventory:itemTotalCount(203494) > 0 ) then
inventory:useItem(203494);
print("benutze Phirius-Trank Typ A +20%")
elseif( inventory:itemTotalCount(203489) > 0 ) then
inventory:useItem(203489);
print("benutze Phirius-Spezialw. Typ A +20%")
elseif( inventory:itemTotalCount(206002) > 0 ) then
inventory:useItem(206002);
print("benutze Phirius-Trank-Prototyptyp +10%")
elseif( inventory:itemTotalCount(206004) > 0 ) then
inventory:useItem(206004);
print("benutze Phirius-Spezialw.-Prototyptyp +10%")
end
elseif( 50 > LP ) then
print("LP weniger als 50% !!")
inventory:update();
if( inventory:itemTotalCount(203495) > 0 ) then
inventory:useItem(203495);
print("benutze Phirius-Trank Typ B +30%")
elseif( inventory:itemTotalCount(203490) > 0 ) then
inventory:useItem(203490);
print("benutze Phirius-Spezialw. Typ B +30%")
elseif( inventory:itemTotalCount(203494) > 0 ) then
inventory:useItem(203494);
print("benutze Phirius-Trank Typ A +20%")
elseif( inventory:itemTotalCount(203489) > 0 ) then
inventory:useItem(203489);
print("benutze Phirius-Spezialw. Typ A +20%")
elseif( inventory:itemTotalCount(206002) > 0 ) then
inventory:useItem(206002);
print("benutze Phirius-Trank-Prototyptyp +10%")
elseif( inventory:itemTotalCount(206004) > 0 ) then
inventory:useItem(206004);
print("benutze Phirius-Spezialw.-Prototyptyp +10%")
end
end
end
Code: Select all
<onLeaveCombat><![CDATA[
CheckLP();
]]></onLeaveCombat>
Users browsing this forum: Ahrefs [Bot], Google [Bot] and 0 guests