Jump to content

message script


Recommended Posts

Posted

i search a script where comes every time ( 30 seconds) a message comes in chat , ( every time a other message ) and i like to edit self the messages... is that possible? thanx :D

( sorry for my bad english )

Posted

every 30 seconds? wow thats real spam

local messageTable =
{
"a message",
"another message",
"something totally different",
"etc...",
}
 
function outputSpam()
outputChatBox(messageTable[math.random(1,#messageTable)],getRootElement(),255,255,255)
end
setTimer(outputSpam,30000,0)

Posted
every 30 seconds? wow thats real spam
local messageTable =
{
"a message",
"another message",
"something totally different",
"etc...",
}
 
function outputSpam()
outputChatBox(messageTable[math.random(1,#messageTable)],getRootElement(),255,255,255)
end
setTimer(outputSpam,30000,0)

I wonder, after your last input @ table "etc...", <-- Should that actually require a dot? ","

I thought it didnt, but not sure.

Posted

a handy thing with tables is that the last comma can be there but is not needed, but having it there is comfortable when simply copying and pasting new lines

cannonballs script looks good to me :P

huh?

Posted
a handy thing with tables is that the last comma can be there but is not needed, but having it there is comfortable when simply copying and pasting new lines
cannonballs script looks good to me :P

huh?

lol failure, seems that he dint checked who made it

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...