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

Set Player MaxMana when first login.

Biols

New Member
Joined
Oct 11, 2011
Messages
5
Reaction score
0
Hello guys.
I need creaturescript that change player MaxMana to 100 when first login in the game. I want new players to start with 100 mana not with 0.
Anyone can help?
 
Lua:
function onLogin(cid)
	if getPlayerStorageValue(cid, 23456) == -1 then
		setCreatureMaxMana(cid, 100)
		doCreatureSetStorage(cid, 23456, 1)
	end
	return TRUE
end
 
Back
Top