autostater.d2j 를, 각 케릭별로 설정하기
분류
봇관련
조회 수
4,348
추천 수
0
autostarter.d2j 를 편집기로 열어서,
각종 설정 변수있는, 처음 부분을, (그 아래 부분은, 수정하지 않는게 좋습니다)
다음처럼 , 수정해서 사용 하면 됩니다.
switch(me.name) {
case "케릭명1" :
var unableToConnectRetry = 5; // time in minutes to retry connecting on connection fail (real value is +/- 1 min)
var realmDownRetry = 70; // time in minutes to retry connecting on a realm down (default is 70 minutes.. no short realm downs, these days..)
var disconnectedRetry = 5; // time in minutes to retry on a disconnection (usually ip ban related)
var cdkeyInUseRetry = 5; // time in minutes to retry on a cdkey in use error message (set to 0 to stop)
var connectingToBnetTimeout = 20000; // time in milliseconds to wait for a login to time out and click cancel and retry
var characterScreenTimeout = 10000; // time in milliseconds to wait for character screen to appear
var pleaseWaitTimeout = 30000; // time in milliseconds to wait for a please wait popup
var createGameThreshold = 10000; // time in milliseconds to wait between making games
var createGameThresholdRandom = 1000; // time in milliseconds to randomly add +/- to the game create time
var createGameTimeout = 10000; // 15000 time in milliseconds to register a failed to create game
var waitInLineTimeout = 30000; // 60000 time in milliseconds to wait in lines for a create game (60 second default)
var characterSelectDelay = 1000; // time in milliseconds to wait before selecting a character on the char screen
var loginDelay = 1000; // time in milliseconds to wait before submitting login information
var clickDelay = 1500; // wait X milliseconds before next action after a click event
var textDelay = 1500; // wait X milliseconds before next action after inserting text into a textbox
var clickDelayRandom = 500; // random amount of time to add to a click
var textDelayRandom = 500; // random amount of time to add to a text set
var minimumGameNameChars = 6; // minimum number of characters in a random game name
var maximumGameNameChars = 8; // 15 maximum number of characters in a random game name
var minimumGamePassChars = 4; // minimum number of characters in a random game password
var maximumGamePassChars = 4; // 15 maximum number of characters in a random game password
var gameLengthThreshold = 100000; // amount of time each game + wait should take minimum, 100 seconds default (3 games/5 minutes)
var beepOnRealmDown = true; // beep on realm down?
var logGameLength = false; // log each games length
var logRealmDown = true; // log realm downs
var gamesToPauseMin = 10;
var gamesToPauseMax = 15;
var timeToPauseMin = 5*60*1000; // time to wait min when the games to Pause is reached. set to 0 to turn off
var timeToPauseMax = 5*60*1000; // time to wait max when the games to Pause is reached. set to 0 to turn off
var gameDoesNotExistDelayMin = 6*600000; // how long to wait when a Game Does Not Exist occurs - minimum - default 10 minutes
var gameDoesNotExistDelayMax = 4*900000; // how long to wait when a Game Does Not Exist occurs - maximum - default 15 minutes\
var gameDoesNotExistTimeout = 30*1000; // how long to wait for the dialog to disappear (default 30 seconds, don't change this)
var joinChatAfterGame = false; // join chat after leaving a game?
var joinRandomChannel = true; // if this is true, will join a random channel, otherwise it will use the channel below..
var joinChannelInChat = "pkpk"; // leave blank to not join a private channel
var randomChatTalk = false; // set this to true to enter random lines in chat between games.
var randomChatLinesMin = 2; // min # of lines to enter..
var randomChatLinesMax = 3; // max # of lines to enter..
var randomChatLineDelayMin = 500; // min delay between each line
var randomChatLineDelayMax = 2000; // max delay between each line
var waitInChatBeforeActionsMin = 2000; // min how long to wait before joining channel
var waitInChatBeforeActionsMax = 5000; // max how long to wait before joining channel
var waitAfterChannelJoinMin = 2000; // min how long to wait before entering line
var waitAfterChannelJoinMax = 5000; // max how long to wait before entering line
var waitBeforeEnterChatMin = 1000; // min how long to wait before entering chat
var waitBeforeEnterChatMax = 5000; // max how long to wait before entering chat
break;
case "케릭명2" :
var unableToConnectRetry = 5; // time in minutes to retry connecting on connection fail (real value is +/- 1 min)
var realmDownRetry = 70; // time in minutes to retry connecting on a realm down (default is 70 minutes.. no short realm downs, these days..)
var disconnectedRetry = 5; // time in minutes to retry on a disconnection (usually ip ban related)
var cdkeyInUseRetry = 5; // time in minutes to retry on a cdkey in use error message (set to 0 to stop)
var connectingToBnetTimeout = 20000; // time in milliseconds to wait for a login to time out and click cancel and retry
var characterScreenTimeout = 10000; // time in milliseconds to wait for character screen to appear
var pleaseWaitTimeout = 30000; // time in milliseconds to wait for a please wait popup
var createGameThreshold = 10000; // time in milliseconds to wait between making games
var createGameThresholdRandom = 1000; // time in milliseconds to randomly add +/- to the game create time
var createGameTimeout = 10000; // 15000 time in milliseconds to register a failed to create game
var waitInLineTimeout = 30000; // 60000 time in milliseconds to wait in lines for a create game (60 second default)
var characterSelectDelay = 1000; // time in milliseconds to wait before selecting a character on the char screen
var loginDelay = 1000; // time in milliseconds to wait before submitting login information
var clickDelay = 1500; // wait X milliseconds before next action after a click event
var textDelay = 1500; // wait X milliseconds before next action after inserting text into a textbox
var clickDelayRandom = 500; // random amount of time to add to a click
var textDelayRandom = 500; // random amount of time to add to a text set
var minimumGameNameChars = 6; // minimum number of characters in a random game name
var maximumGameNameChars = 8; // 15 maximum number of characters in a random game name
var minimumGamePassChars = 4; // minimum number of characters in a random game password
var maximumGamePassChars = 4; // 15 maximum number of characters in a random game password
var gameLengthThreshold = 100000; // amount of time each game + wait should take minimum, 100 seconds default (3 games/5 minutes)
var beepOnRealmDown = true; // beep on realm down?
var logGameLength = false; // log each games length
var logRealmDown = true; // log realm downs
var gamesToPauseMin = 10;
var gamesToPauseMax = 15;
var timeToPauseMin = 5*60*1000; // time to wait min when the games to Pause is reached. set to 0 to turn off
var timeToPauseMax = 5*60*1000; // time to wait max when the games to Pause is reached. set to 0 to turn off
var gameDoesNotExistDelayMin = 6*600000; // how long to wait when a Game Does Not Exist occurs - minimum - default 10 minutes
var gameDoesNotExistDelayMax = 4*900000; // how long to wait when a Game Does Not Exist occurs - maximum - default 15 minutes\
var gameDoesNotExistTimeout = 30*1000; // how long to wait for the dialog to disappear (default 30 seconds, don't change this)
var joinChatAfterGame = false; // join chat after leaving a game?
var joinRandomChannel = true; // if this is true, will join a random channel, otherwise it will use the channel below..
var joinChannelInChat = "pkpk"; // leave blank to not join a private channel
var randomChatTalk = false; // set this to true to enter random lines in chat between games.
var randomChatLinesMin = 2; // min # of lines to enter..
var randomChatLinesMax = 3; // max # of lines to enter..
var randomChatLineDelayMin = 500; // min delay between each line
var randomChatLineDelayMax = 2000; // max delay between each line
var waitInChatBeforeActionsMin = 2000; // min how long to wait before joining channel
var waitInChatBeforeActionsMax = 5000; // max how long to wait before joining channel
var waitAfterChannelJoinMin = 2000; // min how long to wait before entering line
var waitAfterChannelJoinMax = 5000; // max how long to wait before entering line
var waitBeforeEnterChatMin = 1000; // min how long to wait before entering chat
var waitBeforeEnterChatMax = 5000; // max how long to wait before entering chat
break;
case "케릭명3" :
각종변수
break;
case "케릭명4" :
각종변수
break;
case "케릭명5" :
각종변수
break;
.
.
.
}