• 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 Exhaust on talkactions possible?

Status
Not open for further replies.

Diazapam

!ROFLMAO!
Joined
Jul 29, 2009
Messages
1,411
Reaction score
9
Location
$_GET['Country']
I'm wondering if its possible to add exhaust to talkactions.
The main reason to do it is to give the database some rest :thumbup:

Thanks in advance ;)
 
Last edited:
Some example.

Lua:
local es,s = 120,12354 -- exhaust in seconds, storage value
function onSay(cid,words,param)
	if exhaustion.check(cid,s) then
		return doPlayerSendCancel(cid,'You can only use this each '..es..' seconds.') and false
	end
	dostuff
	return true
end
 
Status
Not open for further replies.
Back
Top