Ir para conteúdo

Ajuda!talkactions !evento Gold


leandroskt8

Posts Recomendados

O.giflá amigos e colaboradores.

Venho aqui pedir um script que quando good digitasse !evento gold ou /evento gold todos player que tivesse em volta ganhasse,500k o efeito de aria tipo exura gran mas res.

eventgold.jpgE o efect esse numero 27 .

efect.jpg

A intensão e todos player que tiver perto de min ganha 500k no momento que eu acionar o comando. Espero que alguém me ajude.

Link para o comentário
Compartilhar em outros sites

function onSay(cid, words, param)
local range = 1
p = string.explode(param, ',')
if not p[2] then
doPlayerSendCancel(cid, "Not enough params, use: "..words.." itemid, quant.")
return true
end
for _,pid in ipairs(getPlayersOnline()) do
if getDistanceBetween(getThingPos(pid), getThingPos(cid)) <= range then
doPlayerAddItem(pid, p[1], p[2])
doPlayerSendTextMessage(pid, MESSAGE_INFO_DESCR, getCreatureName(cid).." awarded you with "..p[2].." "..p[1]..".")
doSendMagicEffect(getThingPos(pid), 27)
end
end
return true
end

 

Como utilizar: /comando itemid, quantidade

Ele vai dar a quantidade de itemid para os players que tiverem em uma distancia menor ou igual a range.

Editado por Byerne
Link para o comentário
Compartilhar em outros sites

EU TENHO 1 SCRIPT AK QUE TA ITEM PARA TODOS OS PLAYERS ONLINE

 

 

 

function onSay(cid, words, param, channel) -- Script by Dubler, written for megaevo.net

local t = string.explode(param, ",")

if t[1] ~= nil and t[2] ~= nil then

local list = {}

for i, tid in ipairs(getPlayersOnline()) do -- Script by Dubler, written for megaevo.net

list = tid

end

for i = 1, #list do

doPlayerAddItem(list,t[1],t[2])

end -- Script by Dubler, written for megaevo.net

doBroadcastMessage(getPlayerName(cid) .. " Presenteou: " .. t[2] .." ".. getItemNameById(t[1]) .. " Para Todos Os Jogadores Online!")

else

doPlayerPopupFYI(cid, "No parm...\nSend:\n /itemadd itemid,how_much_items\nexample:\n /itemadd 2160,10")

end

return true

end -- Script by Dubler, written for megaevo.net

 

DEPOIS VAI NA PASTA TALKACTION XML E COLE ESSA TAG

 

<talkaction log="yes" words="/evento" access="5" event="script" value="additem.lua"/>

DAI VC DIGITA POR EXEMPLO /evento 2160 , 100 (daria 100 crystal coins para todos player online)

OBS : TEM QUE COLOCAR A VIRGULA

Link para o comentário
Compartilhar em outros sites

function onSay(cid, words, param)

local range = 1

p = string.explode(param, ',')

if not p[2] then

doPlayerSendCancel(cid, "Not enough params, use: "..words.." itemid, quant.")

return true

end

for _,pid in ipairs(getPlayersOnline()) do

if getDistanceBetween(getThingPos(pid), getThingPos(cid)) <= range then

doPlayerAddItem(pid, p[1], p[2])

doPlayerSendTextMessage(pid, MESSAGE_INFO_DESCR, getCreatureName(cid).." awarded you with "..p[2].." "..p[1]..".")

doSendMagicEffect(getThingPos(pid), 27)

end

end

return true

end

teria como pegar mais longe apenas players que ta perto de min que ganha mais vlw muito bom era bem que queria ;) rep+ button_ok.png

 

EU TENHO 1 SCRIPT AK QUE TA ITEM PARA TODOS OS PLAYERS ONLINE

 

 

 

function onSay(cid, words, param, channel) -- Script by Dubler, written for megaevo.net

local t = string.explode(param, ",")

if t[1] ~= nil and t[2] ~= nil then

local list = {}

for i, tid in ipairs(getPlayersOnline()) do -- Script by Dubler, written for megaevo.net

list = tid

end

for i = 1, #list do

doPlayerAddItem(list,t[1],t[2])

end -- Script by Dubler, written for megaevo.net

doBroadcastMessage(getPlayerName(cid) .. " Presenteou: " .. t[2] .." ".. getItemNameById(t[1]) .. " Para Todos Os Jogadores Online!")

else

doPlayerPopupFYI(cid, "No parm...\nSend:\n /itemadd itemid,how_much_items\nexample:\n /itemadd 2160,10")

end

return true

end -- Script by Dubler, written for megaevo.net

 

DEPOIS VAI NA PASTA TALKACTION XML E COLE ESSA TAG

 

<talkaction log="yes" words="/evento" access="5" event="script" value="additem.lua"/>

DAI VC DIGITA POR EXEMPLO /evento 2160 , 100 (daria 100 crystal coins para todos player online)

OBS : TEM QUE COLOCAR A VIRGULA

esse aqui tabem e muito util obg.

rep-1.png

Editado por godleandro
Link para o comentário
Compartilhar em outros sites

muito bom este script, otimo para eventos como natal.

mas tive que retirar esta parte.

 

else

doPlayerPopupFYI(cid, "No parm...\nSend:\n /itemadd itemid,how_much_items\nexample:\n /itemadd 2160,10")

end

function onSay(cid, words, param, channel) -- Script by Dubler, written for megaevo.net
local t = string.explode(param, ",")
if t[1] ~= nil and t[2] ~= nil then
local list = {}
for i, tid in ipairs(getPlayersOnline()) do -- Script by Dubler, written for megaevo.net
list[i] = tid
end
for i = 1, #list do
doPlayerAddItem(list[i],t[1],t[2])
end -- Script by Dubler, written for megaevo.net
doBroadcastMessage(getPlayerName(cid) .. " Presenteou: " .. t[2] .." ".. getItemNameById(t[1]) .. " Para Todos Os Jogadores Online!")
else
doPlayerPopupFYI(cid, "No parm...\nSend:\n /itemadd itemid,how_much_items\nexample:\n /itemadd 2160,10")
end
return true
end -- Script by Dubler, written for megaevo.net

Link para o comentário
Compartilhar em outros sites

×
×
  • Criar Novo...