Advertisement
Guest User

Untitled

a guest
May 11th, 2017
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. ; --------------------------------------------------------------------------------------------------------------------------------
  2. ;
  3. ; D2BS Version: 1.2.1 with OOG Revision: 222
  4. ;
  5. ; Boolean values:
  6. ; 't' or 'T' or 'true' or 'TRUE' or 1 for true/enabled
  7. ; 'f' or 'F' or 'false' or 'FALSE' or 0 for false/disabled
  8. ;
  9. ;
  10. ; ScriptPath        // Set this to the name of the folder where your scripts are located (relative to d2bs).
  11. ; MaxGameTime       // Set to 0 to disable, otherwise this is the max length of the game in seconds.
  12. ; BlockMinimise     // Set to a boolean value to disable/enable minimize blocking.
  13. ; QuitOnHostile     // Set to a boolean value to disable/enable quitting on hostile.
  14. ; QuitOnError       // Set to a boolean value to disable/enable quitting on errors.
  15. ; StartAtMenu       // set to a boolean value to disable/enable starting at menu (has no effect for users, developer toggle).
  16. ; MemoryLimit       // set to 0 for default(50MB), otherwise the number of MB to limit memory to.
  17. ;           // ## Don't change MemoryLimit unless you know what you are doing. ##
  18. ; MaxLoginTime      // Time in seconds to wait for logging in.
  19. ; MaxCharSelectTime // Time in seconds to wait for the character select screen to load.
  20. ; GameReadyTimeout  // Time in seconds to wait for act changes, etc. before the core reports a failure.
  21. ; DisableCache      // Setting for developers to test loading scripts, defaults to false
  22. ; UseGamePrint      // Set to false to use only the console for printing, or true to print to the console and the game buffer
  23. ; --------------------------------------------------------------------------------------------------------------------------------
  24.  
  25.  
  26. [settings]
  27. ScriptPath=scripts-ntbot
  28. MaxGameTime=0
  29. BlockMinimize=false
  30. QuitOnHostile=false
  31. QuitOnError=false
  32. StartAtMenu=false
  33. MemoryLimit=0
  34. MaxLoginTime=5
  35. MaxCharSelectTime=5
  36. GameReadyTimeout=5
  37. DisableCache=true
  38. UseGamePrint=false
  39.  
  40.  
  41. ; --------------------------------------------------------------------------------------------------------------------------------
  42. ; These Settings are for the OOG Function: login()
  43. ; Example: login("My SP Character");
  44. ;
  45. ; [My SP Character] // Replace "My SP Character" with your characters name
  46. ; Mode =        // Possible Modes: single, battle.net, other multiplayer
  47. ; Username =        // Your Battle.Net Username/Account (the one you login with)
  48. ; Password =        // Your Battle.Net password (for the Username/Account you entered previously)
  49. ; Gateway =     // The gateway your account resides on, Possible Gateways: U.S. East, U.S. West, Europe, Asia, Classic Beta
  50. ; SPDifficulty =    // Possible difficulties: 0 = Normal, 1 = Nightmare, 2 = Hell
  51. ; --------------------------------------------------------------------------------------------------------------------------------
  52.  
  53.  
  54. [CHARACTERNAME]
  55. Mode = MODE
  56. Username = BATTLENETUSERNAME
  57. Password = PASSWORD
  58. Gateway = BATTLENETGATEWAY
  59. Character = CHARACTERNAME
  60. SPDifficulty = DIFFICULTY
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement