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

How Can I Make Ground Just Say Words Like Teleports,,Quests,,Npc

kemo

New Member
Joined
Jul 7, 2008
Messages
15
Reaction score
0
How Can I Make Ground Just Say Words Like Teleports,,Quests,,Npc
 
here ya go make a file in globalevents named talkigntp.lua
you can add more poses to the script

and add this to the globalevents.xml
Code:
	<globalevent name="talkingtp" interval="20" script="talktp.lua"/>

PHP:
local timespeed = 5000 -- 2000 = 2 seconds
local function loop()
doSendAnimatedText({x=32345,y=32222,z=7}, 'Noob', (104))
doSendAnimatedText({x=32347,y=32222,z=7}, 'Plax', (104))
--- Aqui poe as funçoes que ocorreram de 3 em 3 segundos.
end
function onThink(interval, lastExecution)
	addEvent(loop, 1000)
	return TRUE
end

i found the script some where around here so next time keep searching ;P
 
Back
Top