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

global event announcements

Magictibiaman

New Member
Joined
May 25, 2009
Messages
371
Reaction score
0
i keep getting error that this event could be completely properly
it functions it just has some errors

Code:
function onThink()

	local hint = {
		"Type /commands for a list of commands.",
		"Type !buypremmium become a premium member.",
		"Promotion level 400 quest.",
		"You can new get outfits by completing outfit quests.",
		"You can suggest a hint to ZOR and earn 100 cc's if Zor likes it."
	}

	doBroadcastMessage(hint[math.random(1,5)])
end
 
Hello!
Try this:
LUA:
function onThink(interval, lastExecution, thinkInterval)

	local hint = {
		"Type /commands for a list of commands.",
		"Type !buypremium to become a premium member.",
		"Promotion level 400 quest.",
		"You can get new outfits by completing outfit quests.",
		"You can suggest a hint to ZOR and earn 100 cc's if Zor likes it."
	}

	doBroadcastMessage(hint[math.random(1,#hint)], MESSAGE_EVENT_ADVANCE)
	return TRUE
end
 
Back
Top