SwftOne
Poster
Posts: 28
|
|
« on: September 18, 2010, 12:16:11 AM » |
|
Not sure what i am doing wrong I've tried this many different ways still can't get it to work. Only advert chat that pops up is the last one. And i have tried it w/o the /n at the end of every command. Sorry for being such a noob with these silly questions :p
local PLUGIN = {} PLUGIN.Title = "Advert" PLUGIN.Description = "Places a advert every x mins/seconds in chat." PLUGIN.Author = "TheCreeper"
////////////////////////////////////////////////////////////////////////////////////////// // Edit "Advert Here" with your advert but only edit within the brackets. // Edit the number 300 below for your advert to appear every x seconds ( 300 seconds is 5 mins). // Copy and paste the line below as many times as you like. // If you want to put a something on a new line in your advert this use /n // Example timer.Create("1ad", 300,0, function() evolve:Notify( evolve.colors.white, "Advert Here/n Advert Here/n Advert here/n" ) end) // Output would be // Advert Here // Advert Here // Advert Here //////////////////////////////////////////////////////////////////////////////////////////
timer.Create("1ad", 240,0, function() evolve:Notify( evolve.colors.white, "Still working on tweaking server./n" ) timer.Create("1ad", 240,0, function() evolve:Notify( evolve.colors.white, "Add this server to your favorites 69.90.34.28:27016/n" ) timer.Create("1ad", 240,0, function() evolve:Notify( evolve.colors.white, "Killer Beez Currently Recruiting/Looking for admins/n" ) timer.Create("1ad", 240,0, function() evolve:Notify( evolve.colors.white, "Must be 16+ to use microphone/n" ) timer.Create("1ad", 240,0, function() evolve:Notify( evolve.colors.white, "Server rules: Stay Cool/n" ) end)
// Do not place anything below this line. //////////////////////////////////////////////////////////////////////////////////////////
evolve:RegisterPlugin( PLUGIN )
|