Hey, I dunno if anyone has ever written this (since it's not too hard) but this is a neat little script I wrote to give my hub an "IRC" feel with the !me command.
--!me written by Bonafide
function Main()
end
function DataArrival(user, data)
if strsub(data,1,3) == "!me" then
action = strsub(data,1,strlen(data)-1)
SendToAll("*"..user.sName..action)
end
end
EDIT: I just realized that you might need to add "frmHub:EnableFullData(1)" in function Main() if FullData has not already been enabled by another script.
--!me written by Bonafide
function Main()
end
function DataArrival(user, data)
if strsub(data,1,3) == "!me" then
action = strsub(data,1,strlen(data)-1)
SendToAll("*"..user.sName..action)
end
end