MadMOOK
Hoo
- Joined
- Apr 20, 2011
- Messages
- 802
- Reaction score
- 44
This is the script i found.. its for 0.3.4... I use 0.3.7 anyway, it doesnt work, I have it all registered properly..
Code:
function onLogin(cid)
local bless = {1, 2, 3, 4, 5}
local level = 20
if(getPlayerLevel(cid) <= level) then
for i = 1, table.maxn(bless) do
if(getPlayerBlessing(cid, bless)) then
return TRUE
else
doPlayerAddBlessing(cid, bless)
end
end
end
return true
end