gilbert123
~Caspin~
- Joined
- Mar 11, 2011
- Messages
- 98
- Reaction score
- 1
Hey; Im obviously new at the whole scripting thing so I was woundering if someone could make this so it comes up as a pop-up window? Thanks! Its a command to read news.
PHP:
function onThink(interval, lastExecution)
local file = io.open('news.txt','r')
for _, name in ipairs(getOnlinePlayers()) do
local player = getPlayerByName(name)
doPlayerSendTextMessage(player, TALKTYPE_BROADCAST, file:read(-1))
end
file:close()
return TRUE
end