• 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] Block Logout from event

Vesgo

Member
Joined
Dec 4, 2009
Messages
356
Solutions
1
Reaction score
15
Location
Brasil
Hello Otlanders, is there any way to block players from logging out de otserver when they enter a certain area using a storage value (anyhow players are logging out even when a set this area as a no logout area in remeres)?
 
Last edited:
...(anyhow players are logging out even when a set this area as a no logout area in remeres)?

Thank you for your reply Lucas, but as i already said in the main post, im using the no logout tool... Any other hints?
 
This should help you out.

Code:
local storage = 0

function onLogout(cid)
	if (getCreatureStorage(cid, storage) == 1) then
		doPlayerSendCancel(cid, "You can not log out during this event.")
		return false
	end
	return true
end
 
Last edited:
Back
Top