I'm stuck on how to parse the arena files for a specific values. I need to get the fraglimit value from it and set it to the fraglimit value of the game. I can set the fraglimit from ingame but I can't seem to get the value any help would be appreciated. :)
I beleive the default fraglimit for a map is already listed in the .arena files but it's just not used for anything.
Why would you want to anyway?
Yes fraglimit is defined in the .arena file but not retrieved in the code. I can't figure out how to retrieve a int not a string from the .arena.
Have it read the string containing the number and do a:
number = atoi(string);
It will work.
Thanks Wudan again for the help. :)
Is it possible to add another string value to the .arena file?
I don't see why not. You'll probably get error msgs when you try to run the new format .arena's in basejka thou.
I cant seem to get the new value to load in. Is there a limit to how many values can be put in? I thought it just ran a loop through all the values :confused:
Well basically I'm trying to put some information for a map into the arena file to be loaded when a command is pressed and displayed on screen. I can display the other values but not my new one. Do you know why?