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

Dumbest, Stupidest, Craziest, Funniest Scripts!

Status
Not open for further replies.

JDB

OtLand Veteran
Joined
Jun 1, 2009
Messages
4,145
Solutions
2
Reaction score
115
Write the dumbest, most obscene script you can think of.
It doesn't matter what it does, it can do anything!

Rule:
  • Script Must Work (Or at least be easily fixed)
  • Use Tags

P.S:
I got really bored so I made this. <_<

Example:
Lua:
local jailPos = {x=100, y=100, z=7}
local banana = XXXX
function onUse(cid, item, fromPos, itemEx, toPos)
	if getPlayerLevel(cid) < 8 then
		doBroadcastMessage(cid, "What is Tibia?", MESSAGE_STATUS_WARNING)
		doSendMagicEffect(getCreaturePosition(cid), CONST_ME_POFF)
	else
		doTeleportThing(cid, jailPos)
		doPlayerAddItem(cid, banana)
                doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, "FREE BANANA!, Enjoy Jail!")
	end
	return TRUE
end
 
Last edited:
Status
Not open for further replies.
Back
Top Bottom