Oscar Lyis
Donator
Here is the script:
And here is the error code: Warning:[Event::LoadScript]Can not load script. data/talkaction/scripts/buyallblessings.lua
data/talkaction/scripts/buyallblessings.lua:14:')' expected (to close '(' at line 13 near 'DoSendMagicEffect'
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
And here is the error code: Warning:[Event::LoadScript]Can not load script. data/talkaction/scripts/buyallblessings.lua
data/talkaction/scripts/buyallblessings.lua:14:')' expected (to close '(' at line 13 near 'DoSendMagicEffect'
Thanks in advance