봇 수를 늘렸을 시 발생하는 문제 중 하나.
분류
봇관련
조회 수
2,756
추천 수
0
처음 봇을 돌리시거나 시디키가 없으신 분들은 봇을 하나만 돌리시겠죠.
그러다 봇 수를 늘리시면 여러가지 문제들이 발생합니다.
봇을 1,2 개를 돌렸을 땐 문제없이 돌아가는데 그 이상 돌리면 크래쉬나 렐따가 걸리시는 경우에
해결하는 방법 중 하나입니다.
tools->LifeWatchXP.d2j
//====================================================================
// Misc settings
//--------------------------------------------------------------------
// LW_CheckConfig = true/false Set to true to let LifeWatchXP validate the config variables and stop if
// some variables is configured incorrectly
// LW_LoopDelay = xxx This is the time your script will pause in between each life check
// Setting the LoopDelay very low consumes a lot of CPU power.
// If Diablo seems sluggish raise this value. 200 should be fine for most systems,
// though HC players on a fast system might want to do 100.
// LW_IgnorePosition = true/false Set to true to drink any potion in your belt, not just those readily clickable.
// IgnorePosition is intended for cautious players who are paranoid about detection.
// It will allow only the drinking of the lowest 4 belt positions (i.e. the ones you
// would normally drink from.) Otherwise the bot can drink from the entire belt.
// LW_QuitOnHostile = true/false Quit when someone goes hostile with you.
// LW_MaxPing = number Ping in ms to chicken at. Should never be under 500!
// LW_MaxSpamFailed = number Maximum number of times to print "failed to drink" message until sucessful drink.
// LW_UseConsole = true/false Set to true to use the console for LW messages
// LW_UseConsoleImage = true/false Set to true to display the nice border picture
//--------------------------------------------------------------------
var LW_CheckConfig = false;
var LW_LoopDelay = 100;
var LW_IgnorePosition = true;
var LW_QuitOnHostile = false;
var LW_MaxPing = 2500; -------> 여기를 수정합니다.
var LW_MaxSpamFailed= 0;
var LW_UseConsole = false;
var LW_UseConsoleImage= false;
위 MaxPing 부분은 봇이 웨이나 포탈 포션 등을 실행할 때 발생하는 핑 수치입니다.
봇을 하나 돌렸을 시에는 웬만한 회선을 사용하시는 분들은 핑이 1000ms 넘지 않습니다.
하지만 3개이상을 돌리시에는 2000ms을 넘기는 경우가 발생합니다.
(6개 이상을 돌렸을땐 3000ms 넘어가더군요.)
그렇게 해서 MaxPing의 수치를 넘어간다면 봇이 크래쉬나 핑 오버로 게임을 나가버립니다.
4개 이상이면 3000으로 잡아주시면 핑으로 인한 크래쉬나 핑 오버는 없을 거라고 생각됩니다.
처음 1,2개를 돌렸을 때 이상없이 돌아가다 봇 수를 늘렸을 때 게임 실행에 문제가 없지만
잦은 크래쉬나 렐따에 걸리신다면 저 부분을 수정해 보시기 바랍니다.
봇 질문 게시판에 위 방법으로 해결되는 질문들이 여러 개가 보여서 정강란에 올려봅니다.
PS:오리래더에서 한 달 동안 즐기다가 얼마전에 게임을 접었습니다.
확장을 해보지 않아서 확장 질문글에는 도움을 드리지 못하겠네요.ㅠ.ㅠ