Bom dia / boa tarde / boa noite. Estou fazendo um script simples de blitz , ja fiz a primeira etapa ( de criar o objeto etc...) , porem gostaria de deletar este objeto . Sei que devo usar destroyElement , porem não sei como fazer isso kkkk. Script abaixo!
function createObjectG ( thePlayer, commandName )
if ( thePlayer ) then
local x, y, z = getElementPosition ( thePlayer ) -- pegar a posição do player
-- criar o obejto proximo ao player
local obejto = createObject ( 1237, x , y , z -1, 0, 0, 0 )
if ( obejto ) then -- checar se o objeto foi criado com sucesso.
outputConsole ( "Objeto criado com sucesso!", thePlayer )
else
outputConsole ( "Falha ao criar o objeto!", thePlayer )
end
end
end
addCommandHandler ( "cb", createObjectG )
function deletObjeto(thePlayer, commandName)
destroyElement( obejto )
end
addCommandHandler("dob", deletObjeto)