Advertisement
Guest User

Untitled

a guest
May 3rd, 2017
147
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.88 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. [settings]
  6. ; set to the folder (relative to d2bs) where your scripts are located)
  7. ScriptPath=scripts
  8. ; set to 0 to disable, otherwise this is the max length of the game in seconds(?)
  9. MaxGameTime=0
  10. ; set to a boolean value to disable/enable minimize blocking
  11. BlockMinimize=false
  12. ; set to a boolean value to disable/enable quitting on hostile
  13. QuitOnHostile=false
  14. ; set to a boolean value to disable/enable quitting on errors
  15. QuitOnError=false
  16. ; set to a boolean value to disable/enable starting at menu (has no effect for users, developer toggle)
  17. StartAtMenu=false
  18. ; set to 0 for default(50MB), otherwise the number of MB to limit memory to
  19. ; Don't change this unless you know what you are doing.
  20. MemoryLimit=0
  21. ; time in milliseconds to wait for logging in
  22. MaxLoginTime=3000000
  23. ; time in milliseconds to wait for the character select screen to load
  24. MaxCharSelectTime=3000000
  25. ; Setting for developers to test loading scripts, defaults to false
  26. DisableCache=false
  27. ; Set to false to use only the console for printing, or true to print to the console and the game buffer
  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=
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement