• 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!

Looking script free bless

Exactly

New Member
Joined
Jul 14, 2014
Messages
117
Reaction score
4
Hello, i need freebless script when login see TEXT (FREE BLESS 300 LVL)

TFS 0.4 3777

Thanks rep++
 
Solution
Code:
local freeBlessMaxLevel = 300

function onLogin(cid)
if(getPlayerLevel(cid) <= freeBlessMaxLevel and not getPlayerBlessing(cid,1)) then
for b=1, 5 do
doPlayerAddBlessing(cid, b)
end
doPlayerSendTextMessage(cid,26,"You have Free blessing till level 300.")
doCreatureSay(cid, 'BLESS', TALKTYPE_ORANGE_1)
doSendMagicEffect(getThingPosition(cid), CONST_ME_HOLYDAMAGE)
end
return true
end
Code:
local freeBlessMaxLevel = 300

function onLogin(cid)
if(getPlayerLevel(cid) <= freeBlessMaxLevel and not getPlayerBlessing(cid,1)) then
for b=1, 5 do
doPlayerAddBlessing(cid, b)
end
doPlayerSendTextMessage(cid,26,"You have Free blessing till level 300.")
doCreatureSay(cid, 'BLESS', TALKTYPE_ORANGE_1)
doSendMagicEffect(getThingPosition(cid), CONST_ME_HOLYDAMAGE)
end
return true
end
 
Solution
Back
Top