Função: Trocar 1kk por 1 Gold Ingot.
Por que? Para evitar varias e varias BP'S de KK's aonde gold ingot vai servir de comercio no servidor.
//--
Crie um arquivo chamado gold.lua e copie isso lá dentro:
function onSay(cid, words, param)
if doPlayerRemoveMoney(cid, 1000000) then
doPlayerAddItem(cid, 9971, 1)
doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, "1kk transformado em Gold Ingot")
else
doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, "Você não tem 1kk")
end
return true
end
Abra talkactions.xml e cole isso:
<talkaction words="!1kk" event="script" value="gold.lua"/>
--//
Créditos : Pess0a // Meu primeiro script *_*