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

Solved help-Me (y) Script !Level

JohnColner

New Member
Joined
Mar 16, 2013
Messages
23
Reaction score
1
help-me no show level player in docreaturesay...
wanted to show the level of the player.
Help ?

Code:
function onSay(cid, words, param, channel)  
if getPlayerLevel(cid) then
	doCreatureSay(cid, 'My Level ' , TALKTYPE_ORANGE_1, false, cid)
	end
end
 
Lua:
function onSay(cid, words, param, channel)  
	return doCreatureSay(cid, "My level is: "..getPlayerLevel(cid)..".", TALKTYPE_ORANGE_1, false, cid)
end
 

Similar threads

Back
Top