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

Teleport effect

XouruS

Active Member
Joined
Dec 29, 2009
Messages
941
Reaction score
36
Location
Canada
Hello, i have no idea how people do this but
i want to get this effect on spesific portals


ty
 
animatedtext.lua:
Code:
local TEXT =
{
	[{x = EDIT, y = EDIT, z = EDIT}] = {"One"},
	[{x = EDIT, y = EDIT, z = EDIT}] = {"2"},
	[{x = EDIT, y = EDIT, z = EDIT}] = {"Over 9000"}
}

function onThink(interval, lastExecution, thinkInterval)
	for k, v in pairs(TEXT) do
		doSendAnimatedText(k, v, math.random(0, 255))
	end

	return true
end

In globalevents.xml:
Code:
	<globalevent name="animatedtext" interval="1" event="script" value="animatedtext.lua"/>
 
Back
Top