Ir para conteúdo

Ajuda para Servidor DBO (Effects e Corpses)


yagoshira004

Posts Recomendados

Galera estou com 2 dúvidas alguem pode me ajudar?

 

Duvida com efects

Estou criando novos efeitos nas magias, só que queria saber como faço isso

eu ja tenho as sprites porém não sei colocar , sei q é no Dat Editor > New > Effect

Dai coloca as sprites e tals , mais como faço pra colocar no meu servidor?

 

 

2º Duvida com corpses

No meu servidor q eu uso como base, todas as vocações viram uma Cruz ao morrer

Eu queria mudar isso, no XML>Vocations não tem a opção corpse nas vocações...

Alguem sabe como ajudar?

 

Se precisar de mais detalhes só postar ^^

 

REP +

Agradeço desde já.

Link para o comentário
Compartilhar em outros sites

Existe sim amigo , o nome : playerdeath

o script é esse:

 

 

--[[

This file is part of Pokemon Systems by Mkalo.
Pokemon Systems by Mkalo is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
Pokemon System By Mkalo is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with Pokemon System By Mkalo. If not, see <http://www.gnu.org/licenses/>.
]]--
function onDeath(cid)
local health,maxhealth = getSummonLifes(cid)
if #getCreatureSummons(cid) >= 1 then
setPlayerStorageValue(cid, 61205, health)
setPlayerStorageValue(cid, 61206, maxhealth)
setPlayerStorageValue(cid, 61204, 0)
setPlayerStorageValue(cid, 61207, 1)
end
if getPlayerStorageValue(cid, 63215) >= 1 then
setPlayerStorageValue(cid, 61205, getPlayerStorageValue(cid, 61210))
setPlayerStorageValue(cid, 61206, getPlayerStorageValue(cid, 61209))
setPlayerStorageValue(cid, 61204, 0)
setPlayerStorageValue(cid, 63215, 0)
setPlayerStorageValue(cid, 61207, 1)
end
if getPlayerStorageValue(cid, 62314) >= 1 then
setPlayerStorageValue(cid, 61205, getPlayerStorageValue(cid, 61262))
setPlayerStorageValue(cid, 61206, getPlayerStorageValue(cid, 61263))
setPlayerStorageValue(cid, 61204, 0)
setPlayerStorageValue(cid, 62314, 0)
setPlayerStorageValue(cid, 61207, 1)
end
if getPlayerStorageValue(cid, 59987) >=1 then
setPlayerStorageValue(cid, 61205, getPlayerStorageValue(cid, 59988))
setPlayerStorageValue(cid, 61206, getPlayerStorageValue(cid, 59989))
setPlayerStorageValue(cid, 61204, 0)
setPlayerStorageValue(cid, 59987, 0)
setPlayerStorageValue(cid, 61207, 1)
end
return TRUE
end

 

O que eu faço?

Link para o comentário
Compartilhar em outros sites

×
×
  • Criar Novo...