• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

I can't fix this script help me you with prem!

bolero

MikeHere
Joined
Apr 13, 2009
Messages
1,146
Reaction score
12
Location
Venezuela
You can fix for me this script? I need only premium buy this blessing!
local bless = {1, 2, 3, 4, 5}
local cost = 100000
function onSay(cid, words, param)
for i = 1, table.maxn(bless) do
if(getPlayerBlessing(cid, bless)) then
doPlayerSendCancel(cid, "You have already all blessings.")
return TRUE
end
end

if(doPlayerRemoveMoney(cid, cost) == TRUE) then
for i = 1, table.maxn(bless) do
doPlayerAddBlessing(cid, bless)
end
doCreatureSay(cid, "You are now blessed by the GOD KandoriaOT!" ,19)
doSendMagicEffect(getPlayerPosition(cid), 49)
else
doPlayerSendCancel(cid, "You don\'t have enough money.")
end
return TRUE
end
 
Code:
local cost = 100000
local premium = true
function onSay(cid, words, param)
	for i = 1, 5 do
		if getPlayerBlessing(cid, i) then
			doPlayerSendCancel(cid, "You already have one of the blessings.")
			return TRUE
		end
	end

	if not premium or premium and isPremium(cid) == TRUE then
		if not cost or cost and doPlayerRemoveMoney(cid, cost) == TRUE then
			for i = 1, 5 do
				doPlayerAddBlessing(cid, i)
			end
			doCreatureSay(cid, "You are now blessed by the GOD KandoriaOT!", TALKTYPE_ORANGE_1)
			doSendMagicEffect(getCreaturePosition(cid), CONST_ME_HOLYAREA)
		else
			doPlayerSendCancel(cid, "You don't have enough money.")
		end
	else
		doPlayerSendCancel(cid, "You need a premium account.")
	end
	return TRUE
end
 
Back
Top