Olá galera!
Fiz este NPC de cura.
Você fala 'Heal' pra ele e ele te cura.
Versão: 7.6
Download:
Qualquer problema poste ai ;]
Script:
-- Feito por Eigenlieb-- the id of the creature we are attacking, following, etc. target = 0 following = false attacking = false function onThingMove(creature, thing, oldpos, oldstackpos) end function onCreatureAppear(creature) end function onCreatureDisappear(cid, pos) end function onCreatureTurn(creature) end function onCreatureSay(cid, type, msg) msg = string.lower(msg) if (string.find(msg, '(%a*)heal(%a*)')) and getDistanceToCreature(cid) < 4 then selfSay('exura sio "' .. creatureGetName(cid) .. '') selfSay('Go! Avenge your brothers!') end end function onCreatureChangeOutfit(creature) end function onThink() end