Thanks again for replying
Ok my problem is a have a dedicated server, if the server is offline a start him with a server1.bat file,
Then the bat file tells my computer to start a custom.cfg file with the server configs, and the server starts
The map list is DM & OBJ maps, it depensd what my clan mates want to play,
Now i just want to created a simpel myname.pk3 file ( that automatic will load when the console server start ) that send every 120 second a message in the game about that lines

i just already did what u told me ,
I created a myname.scr file and put the text,
Code: Select all
serverMsg:
// displays the server message every 2 minutes
while(1) // this command tells the script to keep execute the lines between the brackets.
{ // it's a loop, so you'll need an opening brackt...
wait 10 // wait 120 seconds
iprintln "Please visit our website!"
iprintln "www.mywebsite.com"
} // and a closing bracket.
end
into it, and save it as myname.scr
after that i started pakscape and made a new map named "global" and there i put that file in and save them,
I placed the myname.pk3 to the main folder but it still not working, and if i look to to dedivated console i see that is loaded but thats all, in the game self i dont see the text
