I'm thinking that the data is stored in the program it's self not on a .ini or anything. So the way I can think of editing the amount of creds every body has is by using the comands. If you want to be able to edit the variables manually just edit the SRC with the variables reading and writing onto a .ini.
   
  D1st0rt - Tue Nov 15, 2005 12:03 am
  Post subject: 
  I'm still not exactly sure what you are trying to do. Yes, each player's credit amounts are stored in the program, but they are saved to and loaded from a data file in between sessions. If you want to set everyone's credit amount to 0, use !creset. If you want to set everyone's credit amount to a non-zero number n, use !creset n and then !cgive for each player you want to have n credits. 
You could technically also go into the file and change the number of credits everyone has, but everything is stored as binary data so you would first have to figure out what address the credits are stored at for each player.
If you're talking about changing the number of credits they get per kill or goal or whatever, that's all in credits.ini
Hope this helped towards whatever you're trying to accomplish