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

Lua Increase player hunger

lhc00

New Member
Joined
Mar 23, 2010
Messages
23
Reaction score
0
I would like to know how to do the food( from getPlayerFood) reduces faster than normal

Thx ^_^
 
Lua:
	if((getPlayerFood(cid) + food[1]) >= 400) then
		doPlayerSendCancel(cid, "You are full.")
		return true
	end

this a piece of food.lua i think you can change the 400 to another number maybe?
 
Back
Top