*sigh* let me try this one guys.
Brett.
Let start with the simplest.
// addAdvert <msg> <repeat_time> [<group>]
if you use
ulx addAdvert "I'm a monkey!" 360
This would repeat every 6 minutes
if you use
1) ulx addAdvert "I'm a monkey!" 360
This would repeat every 6 minutes
2) ulx addAdvert "He's a monkey" 390
This would repeat every 6 minutes, 30 seconds.
Now, I believe here is where you might be getting confused. The way I just listed those two, they would only be 30 seconds apart the first time they were advertised.
They don't run at the same time.
Look at this math. (seconds were converted to minutes for easy viewing)
1) would print at (6),(12),(18),(24),(30),(36)
2) would print at (6.5),(13),(19.5),(26),(32.5),(39)
See how the times start growing apart? Depending on what numbers you chose, they usually start circling in on each other.
I see most people confusing that.
HOWEVER, if you want 2) to run 30 seconds after 1) all the time. You'd specify a groupname for both.
1) ulx addAdvert "I'm a monkey!" 360 monkey
2) ulx addAdvert "He's a monkey" 390 monkey
2) would always be 30 seconds after 1)
That help?