• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Requesting a Forever AOL script (mod if possible)

Joined
Jun 19, 2009
Messages
1,852
Reaction score
5
Hello, I am requesting a MOD of a forever aol script (id = 2196). I searched and couldn't find it anywhere :/

Thanks
 
Oh, that might work :eek: thanks! But how about redskull? I want that if players have RS (and have broken amulet (id 2196) in their AMULET SPOT) they won't lose any items including their broken amulet...
 
HTML:
<?xml version="1.0" encoding="UTF-8"?>
<mod name="Forever Aol" version="1.0" author="Fare" contact="[email protected]" enabled="yes">

	<event type="preparedeath" name="Forever_Aol" event="script"><![CDATA[
	function onPrepareDeath(cid, lastHitKiller, mostDamageKiller)
    if isPlayer(cid) == true then
        if (getPlayerSlotItem(cid, CONST_SLOT_NECKLACE).itemid == 2196) then
                doCreatureSetDropLoot(cid, false)       
                doSendMagicEffect(getCreaturePosition(cid), CONST_ME_HOLYAREA) 
        return true
        end
    end
    return true
	end
	]]></event>
	
	<event type="login" name="Login_Aol" event="script"><![CDATA[
	registerCreatureEvent(cid, "Forever_Aol")
	]]></event>
</mod>

not tested, but should be ok xD
 
Back
Top