Page 2 of 3 FirstFirst 1 2 3 LastLast
Results 11 to 20 of 25

Thread: How do you read the Player Flags and Game Flags from querying a server?

  1. #11
    Senior Member Vicky's Avatar
    Join Date
    May 2007
    Location
    Up there...
    Posts
    874

    Re: How do you read the Player Flags and Game Flags from querying a server?

    Nice job.
    Reply With Quote

  2. #12
    «CE»toXic! taterSALAD's Avatar
    Join Date
    Feb 2007
    Location
    Oklahoma.
    Posts
    43

    Re: How do you read the Player Flags and Game Flags from querying a server?

    I'm surprised that nobody else has replied to this. Does anybody even know how to do this? Lol

    I'd really appreciate the help, and will receive a thanks Easter Egg in HTML XD
    Reply With Quote

  3. #13
    HA10 Limited's Avatar
    Join Date
    Sep 2006
    Location
    England
    Posts
    7,800

    Re: How do you read the Player Flags and Game Flags from querying a server?

    The gameflags are definitely in memory. Perhaps you are looking at the wrong address?
    Reply With Quote

  4. #14
    Senior Member Vicky's Avatar
    Join Date
    May 2007
    Location
    Up there...
    Posts
    874

    Re: How do you read the Player Flags and Game Flags from querying a server?

    Maybe nobody ever looked into the queried player/game-flag data, stuff like vehicle respawn time should be there of course. Maybe PM Korn to get his attention... or try to find out yourself..
    Reply With Quote

  5. #15
    «CE»toXic! taterSALAD's Avatar
    Join Date
    Feb 2007
    Location
    Oklahoma.
    Posts
    43

    Re: How do you read the Player Flags and Game Flags from querying a server?

    Quote Originally Posted by Limited View Post
    The gameflags are definitely in memory. Perhaps you are looking at the wrong address?

    I'm not memory hacking here, I'm simply querying the server. Let me show you the results.


    Code:
    GameQuery Data:
    Array
    (
        [host_string] => 8.6.76.127:2302
        [server_info] => Array
            (
                [hostname] => ! =CE= [CombatExpertsClan.com] Extinction || (^_^) ||
                [gamever] => 01.00.09.0620
                [hostport] => 
                [maxplayers] => 16
                [password] => 0
                [mapname] => extinction
                [dedicated] => 1
                [gamemode] => openplaying
                [game_classic] => 0
                [numplayers] => 12
                [gametype] => Slayer
                [teamplay] => 1
                [gamevariant] => POQbum_Slayer
                [fraglimit] => 75
                [player_flags] => 1499840516,1090
                [game_flags] => 26
            )
    
        [player_info] => Array
            (
                [0] => Array
                    (
                        [player_] => FRDM~Yakob
                        [score_] => 0
                        [ping_] => 
                        [team_] => 0
                    )
    
                [1] => Array
                    (
                        [player_] => halojb1
                        [score_] => 0
                        [ping_] => 
                        [team_] => 0
                    )
    
                [2] => Array
                    (
                        [player_] => Senator
                        [score_] => 2
                        [ping_] => 
                        [team_] => 0
                    )
    
                [3] => Array
                    (
                        [player_] => Droid
                        [score_] => 0
                        [ping_] => 
                        [team_] => 1
                    )
    
                [4] => Array
                    (
                        [player_] => WileECoyote
                        [score_] => 8
                        [ping_] => 
                        [team_] => 0
                    )
    
                [5] => Array
                    (
                        [player_] => Prototype
                        [score_] => 14
                        [ping_] => 
                        [team_] => 1
                    )
    
                [6] => Array
                    (
                        [player_] => rush
                        [score_] => 5
                        [ping_] => 
                        [team_] => 0
                    )
    
                [7] => Array
                    (
                        [player_] => DrkOne
                        [score_] => 0
                        [ping_] => 
                        [team_] => 1
                    )
    
                [8] => Array
                    (
                        [player_] => [Mod] King
                        [score_] => 7
                        [ping_] => 
                        [team_] => 1
                    )
    
                [9] => Array
                    (
                        [player_] => Viper
                        [score_] => 0
                        [ping_] => 
                        [team_] => 1
                    )
    
                [10] => Array
                    (
                        [player_] => =SCC=Badboy
                        [score_] => 0
                        [ping_] => 
                        [team_] => 0
                    )
    
                [11] => Array
                    (
                        [player_] => Chobo101
                        [score_] => 5
                        [ping_] => 
                        [team_] => 1
                    )
    
            )
    
        [team_info] => Array
            (
            )
    
    )

    I am trying to figure out what
    [player_flags] => 1499840516,1090
    [game_flags] => 26
    means, and how to parse it.
    Reply With Quote

  6. #16
    Senior Member Vicky's Avatar
    Join Date
    May 2007
    Location
    Up there...
    Posts
    874

    Re: How do you read the Player Flags and Game Flags from querying a server?

    Ask the Korn! If he don't know nobody does
    Reply With Quote

  7. #17
    «CE»toXic! taterSALAD's Avatar
    Join Date
    Feb 2007
    Location
    Oklahoma.
    Posts
    43

    Re: How do you read the Player Flags and Game Flags from querying a server?

    I've done exactly that, but he doesn't really know. He did mention that it was documented at one time, or so he thought. I'm beginning to feel like this is going to be a fruitless effort.
    Reply With Quote

  8. #18
    Senior Member Vicky's Avatar
    Join Date
    May 2007
    Location
    Up there...
    Posts
    874

    Re: How do you read the Player Flags and Game Flags from querying a server?

    I figured you would have done a search already... i just searched for 'halo gameflags' and got this:
    http://cpansearch.perl.org/src/LINK/...Halo/Status.pm

    There's a part for game and player flags, with the appropriate shifting and ANDing of the data... hope that helps.
    Reply With Quote

  9. #19
    «CE»toXic! taterSALAD's Avatar
    Join Date
    Feb 2007
    Location
    Oklahoma.
    Posts
    43

    Re: How do you read the Player Flags and Game Flags from querying a server?

    I spent forever searching for it, and you find it in a matter of seconds? ... Epic fail on my part. I really appreciate it! Now, to seek help elsewhere as I'm unfamiliar with Python scriping...
    Reply With Quote

  10. #20
    Senior Member Vicky's Avatar
    Join Date
    May 2007
    Location
    Up there...
    Posts
    874

    Re: How do you read the Player Flags and Game Flags from querying a server?

    If you can write in php/C i think you should be able to make sense of it...
    Reply With Quote

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Tags for this Thread

Bookmarks

Posting Permissions

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