Page 1 of 5 123 ... LastLast
Results 1 to 10 of 43

Thread: server welcome messages

  1. #1

    Default server welcome messages

    hello all

    any idea about from where to get this kind of welcome message ??


  2. #2

  3. #3

    Default

    no razor i already got this but when i use it in a FT server it make a mess using the lnprint make the left corner of the screen very busy i am looking for it using the stuffsrv like the above

  4. #4

    Default

    Looks like either someoen is using an outside scanner sending an rcon command, or like RR said, someone is using my IP to Country mod but has changed the iprintln to stuffsrv. So you would need that mod, and then edit global/ip2co/ip2co.scr

    Change:
    PHP Code:
            //Display message on screen.
            
    if(local.player.data["country"] != "Unknown")
            {
                
    iprintln ("Welcome, " local.player.data["name"] + " from " local.player.data["country"] + ".")
            }
            else  
    //Ooops, no country found.  Prehaps you are on a local network?  ie: 192.168.1.1 ??
            
    {
                
    iprintln ("Welcome, " local.player.data["name"] + ".")
                
    conprintf ("\n^~^~^ERROR IN IP to Country - No Country Found for " local.player.data["name"] + "/" local.ip "\n")
            } 
    To:
    PHP Code:
            //Display message on screen.
            
    local.time gettime 0
            local
    .hour ""
            
    local.timeOfDay ""
            
    for(local.0local.<=  1local.i++)
            {
                
    local.hour += local.time[local.i]
            }
                
            
    local.hour int(local.hour)
            if(
    local.hour 12)
            {
                
    local.timeOfDay " Morning "
            
    }
            else if(
    local.hour >= 12 && local.hour 15)
            {
                
    local.timeOfDay " Day "
            
    }
            else if(
    local.hour >= 15 && local.hour 19)
            {
                
    local.timeOfDay " Afternoon "
            
    }
            else if(
    local.hour >= 19)
            {
                
    local.timeOfDay " Evening "
            
    }
            
            if(
    local.player.data["country"] != "Unknown")
            {
                
    stuffsrv ("say Good" local.timeOfDay local.player.data["name"] + " from " local.player.data["country"] + ".\n")
            }
            else  
    //Ooops, no country found.  Prehaps you are on a local network?  ie: 192.168.1.1 ??
            
    {
                
    stuffsrv ("say Good" local.timeOfDay local.player.data["name"] + ".\n")
                
    conprintf ("\n^~^~^ERROR IN IP to Country - No Country Found for " local.player.data["name"] + "/" local.ip "\n")
            } 
    I'm going to have to use this on my server, lol
    Last edited by armageddon; May 3rd, 2012 at 07:13 AM.

  5. #5
    Administrator JoTo's Avatar
    Join Date
    May 2010
    Location
    www.scapp.net
    Posts
    1,953

    Default

    Can be made with scapp-host

  6. #6

    Default

    kk armageddon m8 ty for help

  7. #7

    Default

    Hard to say exactly what is making that welcome message from a screenshot, but I can say that counter intelligence has the welcome message option, we use it on our server

  8. #8
    Senior Member gkdestroyer's Avatar
    Join Date
    Jul 2011
    Location
    Nottinghamshire UK
    Posts
    172

    Default

    Looks good but never seen it before.

  9. #9

    Default

    it's on ur server destroyer. LOL

  10. #10
    Senior Member gkdestroyer's Avatar
    Join Date
    Jul 2011
    Location
    Nottinghamshire UK
    Posts
    172

    Default

    yea i know .. As i told you the other day elephants never forget

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •