Ir para conteúdo

Mude O Ataque De Sua Wand


TottyzinSM

Posts Recomendados

Olá Hoje Vim Trazer Mais Uma Script: Mude O Ataque De Sua Wand
Super Legal ...


Então Vamos Lá COMEÇANDO..

1º va na pasta data/talkactions/script/ lá você copia um arquivo.lua é renomeie o nome para
elementaal_wand.lua
é dentro você cola esse

local combat_values = {

["none"] = -1,
["ice"] = 1,
["fire"] = 2,
["earth"] = 3,
["energy"] = 4,
["holy"] = 5,
["death"] = 6,
}
local config = {
storage = 101010,
time_storage = 101011,
price = 0,
delay = 0,
msg = {
help = "Efeitos: Ice, Fire, Earth, Energy, Holy, Death, e none para desabilitar.",
invalid = "Digite um elemento valido! digite !wand help",
changed = "O elemento da wand foi trocado para %s.",
nomoney = "Você não possui dinheiro.",
delayed = "Você precisa esperar para trocar o efeito.",
}
}
function onSay(cid, words, param)
local param = param:lower()
local value = combat_values[param]
if param == "help" or param == "" then
doPlayerSendCancel(cid, string.format(config.msg.help, config.price))
return true
end
if not value then
doPlayerSendCancel(cid, config.msg.invalid)
return true
end
if getPlayerMoney(cid) < config.price then
doPlayerSendCancel(cid, config.msg.nomoney)
return true
end
if getPlayerMoney(cid) < config.price then
doPlayerSendCancel(cid, config.msg.nomoney)
return true
end
if getCreatureStorage(cid, config.time_storage) + config.delay > os.time() then
doPlayerSendCancel(cid, config.msg.delayed)
return true
end
doCreatureSetStorage(cid, config.storage, value)
doCreatureSetStorage(cid, config.time_storage, os.time())
doPlayerRemoveMoney(cid, config.price)
doPlayerSendCancel(cid, string.format(config.msg.changed, param))
return true

end







2º vá na pasta data/talkactions/script/ lá você copia um arquivo.lua é renomeie o nome para elemental_wand
é depois cole

local combat_values = {

["none"] = -1,
["ice"] = 1,
["fire"] = 2,
["earth"] = 3,
["energy"] = 4,
["holy"] = 5,
["death"] = 6,
}
local config = {
storage = 101010,
time_storage = 101011,
price = 0,
delay = 0,
msg = {
help = "Efeitos: Ice, Fire, Earth, Energy, Holy, Death, e none para desabilitar.",
invalid = "Digite um elemento valido! digite !wand help",
changed = "O elemento da wand foi trocado para %s.",
nomoney = "Você não possui dinheiro.",
delayed = "Você precisa esperar para trocar o efeito.",
}
}
function onSay(cid, words, param)
local param = param:lower()
local value = combat_values[param]
if param == "help" or param == "" then
doPlayerSendCancel(cid, string.format(config.msg.help, config.price))
return true
end
if not value then
doPlayerSendCancel(cid, config.msg.invalid)
return true
end
if getPlayerMoney(cid) < config.price then
doPlayerSendCancel(cid, config.msg.nomoney)
return true
end
if getPlayerMoney(cid) < config.price then
doPlayerSendCancel(cid, config.msg.nomoney)
return true
end
if getCreatureStorage(cid, config.time_storage) + config.delay > os.time() then
doPlayerSendCancel(cid, config.msg.delayed)
return true
end
doCreatureSetStorage(cid, config.storage, value)
doCreatureSetStorage(cid, config.time_storage, os.time())
doPlayerRemoveMoney(cid, config.price)
doPlayerSendCancel(cid, string.format(config.msg.changed, param))
return true

end





PRONTO Agorá.

3º Agorá, va em talkactions.xml abra é cole isto na tag:

<talkaction words="!wandcarioca" sensitive="false" event="script" value="elemental_wand.lua"/>

4º agorá vá em talkactions.xml novamente é cole isto :


words="!wanddonate" sensitive="false" event="script" value="elementaal_wand.lua"/>

Comandos:
!wanddonate
!wandcarioca

Script By: TottyzinSM

 

Link para o comentário
Compartilhar em outros sites

×
×
  • Criar Novo...