Advertisement
FaithLV

AoS Configurator/By Faith

Feb 29th, 2012
233
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. SetWorkingDir %A_ScriptDir%
  2. InputBox, Name, Nickname, Your Nickname:
  3. InputBox, xres, Xresolution, Xresolution [orginal 800]:      
  4. InputBox, yres, Yresolution, Yresolution [orginal 600]:
  5. InputBox, vol, Volume, Volume:
  6. InputBox, inverty, Mouse invert, Invert Y Mouse [0 no]:
  7. InputBox, windowed, Windowed, Windowed [0 no]:
  8. InputBox, mouse_sensitivity, Mouse, Mouse sensitivity:
  9.  
  10. FileDelete, %A_ScriptDir%\config.ini
  11. FileAppend,
  12. (
  13.  
  14. [client]
  15. name                           = %Name%
  16. xres                           = %xres%
  17. yres                           = %yres%
  18. vol                            = %vol%
  19. inverty                        = %inverty%
  20. windowed                       = %windowed%
  21. language                       = 0
  22. mouse_sensitivity              = %mouse_sensitivity%
  23.  
  24. ), %A_ScriptDir%\config.ini
  25.  
  26. If (OKCheck = "1")
  27.     ExitApp
  28. Return
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement