• 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!
  • 2026 staff recruitment is open! Check it out and consider applying!

Forever Amulet Doesnt Reback The Account To Temple Its Stoping The Screen

shiko4ever

New Member
Joined
Jun 6, 2009
Messages
89
Reaction score
0
Forever Amulet Doesnt Reback The Account To Temple Its Stoping The Screen You Must Close Tibia And Open Again To Open The Acc


This Is Script

function onPrepareDeath(cid, lastHitKiller, mostDamageKiller)
if (getPlayerSlotItem(cid, CONST_SLOT_NECKLACE).itemid == 10134) then
doSendMagicEffect(getCreaturePosition(cid), CONST_ME_HOLYAREA)
doCreatureSay(cid, "Forever Amulet!", TALKTYPE_ORANGE_1)
elseif (getPlayerSlotItem(cid, CONST_SLOT_NECKLACE).itemid == 2131) and (getCreatureSkullType(cid) < 4) then
doSendMagicEffect(getCreaturePosition(cid), CONST_ME_HOLYAREA)
doCreatureSay(cid, "Skull Amulet!", TALKTYPE_ORANGE_1)

end
return true
end
 
from what i can read of that script it just checks the item and then do nothing more then show this text? so try to doTeleport... to temple. and then addcreaturehealth to max etc?
 
LUA:
function onPrepareDeath(cid, lastHitKiller, mostDamageKiller)
if (getPlayerSlotItem(cid, CONST_SLOT_NECKLACE).itemid == 10134) then
doSendMagicEffect(getCreaturePosition(cid), CONST_ME_HOLYAREA)
doCreatureSay(cid, "Forever Amulet!", TALKTYPE_ORANGE_1)
elseif (getPlayerSlotItem(cid, CONST_SLOT_NECKLACE).itemid == 2131) and (getCreatureSkullType(cid) < 4) then
doSendMagicEffect(getCreaturePosition(cid), CONST_ME_HOLYAREA)
doCreatureSay(cid, "Skull Amulet!", TALKTYPE_ORANGE_1)

end
return doTeleportThing(cid, getTownTemplePosition(getPlayerTown(cid)))
end

- - - Updated - - -

try this script and tell me what will happen
 
hey even that amulet of loss is same it's like forever aol it doesn't end and it doesn't go automatic to temple

- - - Updated - - -

BUMP!
 
Back
Top