Advertisement
Guest User

Untitled

a guest
Oct 1st, 2014
216
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.60 KB | None | 0 0
  1. ///////////////////////////////////////////////////
  2. // characters in your game setting: //
  3. ///////////////////////////////////////////////////
  4. var characterdiff = "75"; //use this to keep those pesky spam bots out of the f'ing game
  5. //note you must manually hit the check box the first time for this to work
  6. var maxNumberOfPlayersss = "8"; //use this to set the maximum number of players allowed in your game
  7.  
  8. ///////////////////////////////////////
  9. // Channel Settings: // / /These controll what if any channel you join
  10. ///////////////////////////////////////
  11. var joinChatAfterGame = false; // join chat after leaving a game
  12. var joinRandomChannel = false; // if this is true, will join a random channel, otherwise it will use the channel below..
  13. var joinChannelInChat = "yes"; // Channel you want your bot to join, leave blank to not join a private channel
  14.  
  15. ///////////////////////////////////////
  16. // Message Settings: // // These controll what your bot sais to the leechers will also send a log incommand to a channel bot
  17. ///////////////////////////////////////
  18. var chatMessageOnJoin = ""; // Chat Message to say Login command for channel bot will only be sent once
  19. var chatMessageAfterGame1 = "If you have any important Feedback message me at Gordonn@jsp"; // Optional chat message Line #1 to say after each game on Channel
  20. var chatMessageAfterGame2 = "Always iso leechers pm me for info."; // Optional chat message Line #2 to say after each game on Channel
  21. var chatMessageAfterGame3 = "Donations for gg runs are NOT accepted :)"; // Optional chat message Line #3 to say after each game on Channel
  22. var chatMessageAfterGame4 = ""; // Optional chat message Line #4 to say after each game on Channel
  23. var chatMessageAfterGame5 = ""; // Optional chat message Line #5 to say after each game on Channel
  24.  
  25. /////////////////////////////////////// // These will let you send a message with a game name password and time to your leechers
  26. // Game Message Settings: // // var saygamename must be true for any of these to work
  27. /////////////////////////////////////// // You cant NOT have a - in you game name it will bug it out
  28. var saygamename = true; // Must be true for any of the game message settings to work
  29. var nextgamemessage = "next game should be"; // This will come befor your next game name eg "New game is"
  30. var saypassword = true; // This will togle if the bot says your game pw
  31. var saytime = true; // This will togle if the bot says how much time till creation
  32. var timemessage = "in about"; // This will come after your pw and befor the time eg. "in about" xx seconds say time MUST be true for this to be used
  33.  
  34. //////////////////////////////////////
  35. // Minimum Game Length: //
  36. //////////////////////////////////////
  37.  
  38. var gameMinLength = 180000; // time in milliseconds, minimum game length, 180 seconds default (1 game/3 minutes)
  39.  
  40. ////////////////////////////////////////
  41. // Connection Settings: //
  42. ////////////////////////////////////////
  43.  
  44. var unableToConnectRetry = 5; // time in minutes to retry connecting on connection fail (real value is +/- 1 min)
  45. var realmDownRetry = 300; // time in minutes to retry connecting on a realm down (default is 300 minutes)
  46. var disconnectedRetry = 5; // time in minutes to retry on a disconnection (usually ip ban related)
  47. var cdkeyInUseRetry = 5; // time in minutes to retry on a cdkey in use error message (set to 0 to stop)
  48. var connectingToBnetTimeout = 20000; // time in milliseconds to wait for a login to time out and click cancel and retry
  49. var characterScreenTimeout = 10000; // time in milliseconds to wait for character screen to appear
  50. var pleaseWaitTimeout = 10000; // time in milliseconds to wait for a please wait popup
  51. var createGameThreshold = 15000; // time in milliseconds to wait between making games
  52. var createGameThresholdRandom = 25000; // time in milliseconds to randomly add +/- to the game create time
  53. var createGameTimeout = 45000; // time in milliseconds to register a failed to create game
  54. var waitInLineTimeout = 60000; // time in milliseconds to wait in lines for a create game (60 second default)
  55. var characterSelectDelay = 1000; // time in milliseconds to wait before selecting a character on the char screen
  56. var loginDelay = 1000; // time in milliseconds to wait before submitting login information
  57. var clickDelay = 500; // wait X milliseconds before next action after a click event
  58. var textDelay = 500; // wait X milliseconds before next action after inserting text into a textbox
  59. var clickDelayRandom = 500; // random amount of time to add to a click
  60. var textDelayRandom = 500; // random amount of time to add to a text set
  61. var gameDoesNotExistDelayMin = 600000; // how long to wait when a Game Does Not Exist occurs - minimum - default 10 minutes
  62. var gameDoesNotExistDelayMax = 900000; // how long to wait when a Game Does Not Exist occurs - maximum - default 15 minutes
  63. var gameDoesNotExistTimeout = 30000; // how long to wait for the dialog to disappear (default 30 seconds, don't change this)
  64. var waitBeforeEnterChatMin = 1000; // min how long to wait before entering chat
  65. var waitBeforeEnterChatMax = 2000; // max how long to wait before entering chat
  66. var waitInChatBeforeActionsMin = 2000; // min how long to wait before joining channel
  67. var waitInChatBeforeActionsMax = 3000; // max how long to wait before joining channel
  68. var waitBeforeNextLineChatMin = 500; // Minimum ammount of time to add after each text line
  69. var waitBeforeNextLineChatMax = 1500; // Maximum ammount of time to add after each text line
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement