Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

Auto System Massage.

Experienced Elementalist
Joined
Nov 29, 2013
Messages
213
Reaction score
2
Can someone please tell me how to put an auto system massage? like every 30 mins the broadcast automatically says ''Any thing here''.
 
Experienced Elementalist
Joined
Nov 29, 2013
Messages
213
Reaction score
2
Alright. I got it working thanks. But how can I make crontab run 2 scripts. For example Iam running
*/15 * * * * /mnt/myscript1.sh and it is working. but I want it to run */15 * * * * /mnt/myscript1.sh and */59 * * * * /mnt/myscript2.sh

How do I type it in the console?
When I type it in this form none of the scripts work.
*/15 * * * * /mnt/myscript1.sh
*/59 * * * * /mnt/myscript2.sh

There must be a code that I have to write to tell the crontab that each one of them is a file.

Any help?

Thanks in advance
 
Upvote 0
Skilled Illusionist
Joined
Feb 2, 2011
Messages
382
Reaction score
200


I've already explained how cron jobs works

Same questions to answers that would have solved your problem ages ago if you actually tried them...

crontab -e

*/15 * * * * /mnt/myscript1.sh
*/59 * * * * /mnt/myscript2.sh

save
 
Last edited:
Upvote 0
Back
Top