How do you read the Player Flags and Game Flags from querying a server?
[player_flags] => 1573916676,1090
[game_flags] => 8235
I get these, and they change from gametype to gametype, and I'd like to know how to parse/read them.
Does anybody know how to?
Halo CE and Halo PC servers.
Re: How do you read the Player Flags and Game Flags from querying a server?
Check out the source from a Querytool: http://nikon.bungie.org/news.html?item=7667 (the release the package link).
Re: How do you read the Player Flags and Game Flags from querying a server?
Thanks for that! I checked the source out, but I didn't find anything in it that parsed the data received. It gets the variable, but doesn't do anything with it.
Re: How do you read the Player Flags and Game Flags from querying a server?
Does anybody know how to do it?
Re: How do you read the Player Flags and Game Flags from querying a server?
The data is parsed to the si struct in the ParseInfo function, that data is printed by the PrintBody function. I wouldn't bother that much how the data is parsed, that's a bunch of pointer operations...
What are you programming in btw?
Re: How do you read the Player Flags and Game Flags from querying a server?
PHP. I'm pulling the data from the server, and spitting out the relevant data.
Re: How do you read the Player Flags and Game Flags from querying a server?
Can't be that hard, i've seen sites do that already.
Re: How do you read the Player Flags and Game Flags from querying a server?
I'm pulling the data, and I get it, but I do not know how to parse the two variables I mentioned in the first post.
I get Players, Map name, etc, but I don't know the meaning of game_flags or player_flags
Re: How do you read the Player Flags and Game Flags from querying a server?
Ah yes... that's pretty specific and i have no idea, perhaps Korn can help you out.. if he wants to share that info when available... What more would you need anyway from all the data you're getting already?
Re: How do you read the Player Flags and Game Flags from querying a server?
Here's the page I got so far.
http://www.combatexpertsclan.com/ind...d=16&Itemid=70
What I'm trying to get it more information, such as flag captures to win, etc..