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

Need Script For animated texts

chauffaille

New Member
Joined
Sep 10, 2009
Messages
198
Reaction score
1
hello, it would not be asking too much = P


I need one of those animated text script, what i have here the color is drawn and not a color, I need one like this: example: text [dp] color: blue, [trainers] color: green.

each text in one color, and in one script; D
 
edited shawak's script:
Code:
--[[
	Talking Tp/signs/tiles for TFS 0.3+
	by Maxi (Shawak)
]]--

local text, effects = {
	{{x=1095,y=1217,z=7}, "Depot", TEXTCOLOR_BLUE},
	{{x=1096,y=1217,z=7}, "Trainers", TEXTCOLOR_GREEN}
}, {
	{{x=1095,y=1217,z=7}, CONST_ME_MAGIC_GREEN},
	{{x=1096,y=1217,z=7}, CONST_ME_ENERGYAREA}
}

function onThink(interval, lastExecution)
	for _, t in ipairs(text) do
		doSendAnimatedText(t[1], t[2], t[3])
	end
	for _, area in ipairs(effects) do
		doSendMagicEffect(t[1], t[2])
	end
	return true
end
 
Back
Top