Oscar Lyis
Donator
Here is the script:
ERROR:
Warning:[Event::LoadScript]Can not load script. data/talkaction/scripts/buyallblessings.lua
data/talkaction/scripts/buyallblessings.lua:17: 'end' expected (to close 'function' at line 1) near '<eof>'
help please.
thanks in advance
Code:
function onSay(cid, words, param)
if getPlayerBlessing(cid,5) == TRUE then
doPlayerSendCancel(cid,"You already have all the blessings!, Du har redan alla de välsignelser!")
doSendMagicEffect(getPlayerPosition(cid),2)
else
if doPlayerRemoveMoney(cid,10000) == TRUE then
for i = 1, 5 do
doPlayerAddBlessing(cid, i)
doSendMagicEffect(getPlayerPosition(cid),12)
doPlayerSendTextMessage (cid,22,"You've bought all the Blessings!, Du har köpt alla välsignelser")
end
else
doPlayerSendCancel(cid,"You don't have enough money, Du har inte tillräckligt med pengar.")
doSendMagicEffect(getPlayerPosition(cid),2)
end
end
return TRUE
ERROR:
Warning:[Event::LoadScript]Can not load script. data/talkaction/scripts/buyallblessings.lua
data/talkaction/scripts/buyallblessings.lua:17: 'end' expected (to close 'function' at line 1) near '<eof>'
help please.
thanks in advance