Ae, obrigado por estar ajudando.
To usando o Pokemon Dash V6, o script q eu fiz, esta funcionando perfeitamente só que o efeito ele manda na mesma hora que o pokemon é sumonado.
Vo mandar o meu script:
function onUse(cid, item, frompos, item2, topos)
time = 1
local config =
{
[1] = {x=1035, y=1022, z=7}, --falador CP
[2] = {x=1040, y=1039, z=7}, --falador Mark
[3] = {x=228, y=32, z=7}, --
[4] = {x=246, y=32, z=7}, --
[5] = {x=237, y=26, z=7}, --
[6] = {x=237, y=18, z=7} --
}
rand = math.random(1, #config)
addEvent(doSendMagicEffect(config[rand], 4), time*30, config[rand])
mew = doSummonCreature("Mew", config[rand])
addEvent(doRemoveCreature,time*30*50, mew)
end
Obrigado.