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

v0.2+ Animated Text?

Death Blower

I'm Ready.
Joined
Aug 19, 2011
Messages
49
Reaction score
3
Whats a script for animated text in versions 0.2+, like Tibia 9.2. I heard it was something to do with instead of TEXTCOLOR_~ its numbers so just wondering what it could be I want it in my new serv :D.
 
Well for example:
HTML:
local config = {
positions = {
["Welcome"] = { x = 1997, y = 1999, z = 7 },
["Training"] = { x = 2005, y = 1998, z = 7 },
["Quests"] = { x = 2006, y = 1998, z = 7 },
["Item Room"] = { x = 2007, y = 1998, z = 7 },
["Donations"] = { x = 2005, y = 2001, z = 7 },
["Back"] = { x = 1866, y = 2204, z = 7 },
["Castles"] = { x = 1998, y = 2003, z = 6 },
["NPCs"] = { x = 2006, y = 2001, z = 7 }
},

}

function onThink(cid, interval, lastExecution)
	for text, pos in pairs(config.positions) do
		doSendMagicEffect(pos, math.random(67))
		doSendAnimatedText(pos, text, math.random(255))
	end
	return TRUE
end

^ I would want that script to work on 9.2...
 
I was actually looking for this as well. Also I had an issue where any teleport that sends animated text causes debug. Wondering if a source edit is needed or if a different function needs to be used. Will do whatever it takes to get some animated text on 9.4.

Rep+ if anyone knows how to do it.
 
Back
Top