-
Recently Browsing 0 members
- No registered users viewing this page.
-
Similar Content
-
script alguém pode me ajudar nessa spells aqui, queira que colocassem pro meu personagem ficar inatingível por 6 segundos e podendo atacar livremente
By lazaroszz,
- 0 answers
- 405 views
-
- 7 answers
- 1301 views
-
- 1 answer
- 2018 views
-
- 0 answers
- 980 views
-
- 1 answer
- 1033 views
-
Question
ScythePhantom 83
Olá, gostaria de pedir um script que fizesse com quê o player com bless não perdesse loot de jeito nenhum! Eu já usei creaturescripts e tudo e continua caindo o loot dos players! Alguém ajuda?
São essas maneiras de adquirir bless no meu servidor, caso precisem:
TALKACTIONS:
function onSay(cid, words, param)
local bless = {1, 2, 3, 4, 5}
for i = 1, #bless do
if getPlayerBlessing(cid, i) then
doPlayerSendCancel(cid, "Você já tem todas as blessings.")
else
if doPlayerRemoveMoney(cid, 10000) then
doPlayerAddBlessing(cid, i)
doPlayerSendTextMessage(cid,MESSAGE_EVENT_ADVANCE, "Você agora está protegido por todas as blessings.")
else
doPlayerSendCancel(cid, "Você precisa de 50k para bless.")
end
end
end
return true
end
ACTION;BOOK DE BLESS:
local cfg = {
bless = { 1, 2, 3, 4, 5 },
level = 8
}
function onUse(cid, item, fromPosition, itemEx, toPosition)
for i = 1, table.maxn(cfg.bless) do
if(getPlayerBlessing(cid, cfg.bless)) then
doSendMagicEffect(getCreaturePosition(cid), CONST_ME_POFF)
doCreatureSay(cid, "Você já tem todas as blessings.", TALKTYPE_ORANGE_1)
return true
end
end
if getPlayerLevel(cid) >= cfg.level then
for i = 1, table.maxn(cfg.bless) do
doPlayerAddBlessing(cid, cfg.bless)
end
doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_ORANGE, "Você agora está protegido com todas as blessings.")
end
return true
end
Link to comment
Share on other sites
13 answers to this question
Recommended Posts