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

TFS 1.0 MS 9.86

I was able to get it from what you send to me.... This is the script for TFS 1.0 prob works for 1.1 also...

Code:
local config = {
rotworms = {pos = {x = 998, y = 993, z = 6}, text = "Rotworms"},
dragonlord = {pos = {x = 998, y = 987, z = 6}, text = "Dragons"},
}

function onThink(interval)
local people = Game.getPlayers()
if #people == 0 then
return true
end

for _, info in pairs(config) do
doCreatureSay(people[1], info.text, TALKTYPE_MONSTER_SAY, false, 0, info.pos)
end
return true
end
 
Back
Top