Advertisement
Guest User

Untitled

a guest
Jun 14th, 2017
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 2.17 KB | None | 0 0
  1. ; boolean values:
  2. ; 't' or 'T' or 'true' or 'TRUE' or 1 for true/enabled
  3. ; 'f' or 'F' or 'false' or 'FALSE' or 0 for false/disabled
  4.  
  5. ; ScriptPath - set to the folder (relative to d2bs) where your scripts are located)
  6. ; MaxGameTime - set to 0 to disable, otherwise this is the max length of the game in seconds
  7. ; QuitOnHostile - set to a boolean value to disable/enable quitting on hostile
  8. ; QuitOnError - set to a boolean value to disable/enable quitting on errors
  9. ; StartAtMenu - set to a boolean value to disable/enable starting at menu (has no effect for users, developer toggle)
  10. ; MemoryLimit - set to 0 for default(50MB), otherwise the number of MB to limit memory to - Don't change this unless you know what you are doing.
  11. ; MaxLoginTime - time in seconds to wait for logging in
  12. ; MaxCharSelectTime - time in seconds to wait for the character select screen to load
  13. ; GameReadyTimeout - time in seconds to wait for act changes, etc. before the core reports a failure
  14. ; DisableCache - setting for developers to test loading scripts, defaults to false
  15. ; UseGamePrint - set to false to use only the console for printing, or true to print to the console and the game buffer
  16.  
  17. [settings]
  18. ScriptPath=scripts-ntbot
  19. MaxGameTime=0
  20. QuitOnHostile=false
  21. QuitOnError=false
  22. StartAtMenu=false
  23. MemoryLimit=0
  24. MaxLoginTime=5
  25. MaxCharSelectTime=5
  26. GameReadyTimeout=5
  27. ;DisableCache=true;
  28. UseGamePrint=false
  29.  
  30. ; these settings are for the oog function login()
  31. ; you pass the name of the section (i.e. "my sp character")
  32. ; as the argument to login, and it takes care of the rest
  33. ; example : login("my sp character");
  34. ; [my sp character]
  35. ; possible modes: single, battle.net, other multiplayer
  36. ; mode=single
  37. ; the actual name of the character, as displayed on the screen
  38. ; character=whatever
  39. ; possible difficulties: 0 - normal, 1 - nightmare, 2 - hell
  40. ; note: this has NOTHING AT ALL to do with battle.net game creation!
  41. ; spdifficulty=0
  42. ; your battle.net username
  43. ; username=
  44. ; the password to the above account
  45. ; password=
  46. ; the gateway your account resides on
  47. ; gateway=
  48. [Horo]
  49. Mode = Battle.net
  50. Username = iwillbeheresoon
  51. Password = xxxxxxxx
  52. gateway = U.S. East
  53. character = Horologe
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement