putting a message in the server

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • imported_ex_marine

    #1

    putting a message in the server

    hi
    i would like to put a message in the server, that comes on by itself.
    like my email address.
    what commands would i use in the cfg, file
    thank you
    ex_marine
  • [5]B|Pvt.redpin

    #2
    I take it your referring to automated console messages, if you are then;

    Locate or create a PBSV.cfg and place it inside the PB Directory of your server,

    Add

    pb_sv_task 1 900 say myemail@email.com

    That will make your email appear on the console every 15mins (900/60)


    PB_SV_Task [X] [Y] [command]
    Adds a task to PB's Task List; The Task will be executed X seconds after entry and every Y seconds thereafter; use -1 for Y if a one-time task is desired; this can be used to execute game server commands as well as PB commands
    Make sure to restart the server or type /rcon pb_sv_restart to make the console messages appear

    Comment

    • imported_ex_marine

      #3
      message's on server's

      hi
      thanks i will try that.

      ex_marine

      Comment

      • imported_ex_marine

        #4
        hi
        i tried that and could not get it to work, can you explan better.
        thankyou
        ex_marine

        Comment

        • G.I.Steve

          #5
          :pok well this is what i did. I created a new string(pb_sv_load svrmsgs.cfg //server console messages) at the bottom of my pbsv.cfg File in the Server (Main>pb>pbsv.cfg). Then I Made a New File (svrmsgs.cfg) in the pb Directory (main>pb) in side this new file i inserted this:

          pb_sv_taskempty

          // Task setup for PunkBuster

          pb_sv_task 5 85 "say ^1Welcome to the G.I. Gamers Invasion Server"
          pb_sv_task 10 90 "say ^1There's only a few rules in here."
          pb_sv_task 15 95 "say ^1Don't Cheat.The ScreenShots are checked every day."
          pb_sv_task 20 100 "say ^1Not only will you be banned.Your Guid will be turned into Punkbuster!"
          pb_sv_task 25 105 "say ^1Don't be an ass,Just because you have nothing to do with your life"
          pb_sv_task 30 110 "say ^1Don't be a **** to other people for not killing as many people as you!"
          pb_sv_task 35 115 "say ^1Don't Spam the voting system just because"
          pb_sv_task 40 120 "say ^1your vote didn't go the way you wanted"
          pb_sv_task 45 125 "say ^1No derogatory terms of any kind "
          pb_sv_task 50 130 "say ^1this includes women children different races or lifestyles"
          pb_sv_task 55 135 "say ^1This is not Karaoke, we don't want to hear you sing or rap"
          pb_sv_task 60 140 "say ^1our TS is 216.6.224.82:9081 same rules apply in there."
          pb_sv_task 65 145 "say ^1PBUcon is enabled. You are being whatched even when admin isn't here"
          pb_sv_task 70 150 "say ^1For alot of these you will get a warning.Sometimes you wont."
          pb_sv_task 75 155 "say ^1You can help us pay for this server at"


          this got them scrolling but i need help getting the timings right. basically i want them all to scroll repeatedly one right after the other over and over again:p

          Comment

          Working...