Waka and autobaal

is there any option to finish waka when leader is in baal? like in diablo helper because when i enter in the game and its already in baal my char stays in act 4 and dont move

lines 33-35 in Wakka.js are

					if (suspect.area === 131) {
						return false;
					}

and those are corresponding to lines 389-391 from DiabloHelper.js:

				if (party.area === 131 || party.area === 132) { // Player is in Throne of Destruction or Worldstone Chamber
					return false; // End script
				}

in Wakka.js the leecher will look to any char in his party who is in area destination 108, and he will assign it as leader.

Maybe you should try to add after default line 261, these:


			if ([131, 132].indexOf(leader.area) > -1) {
				return true;
			}

I guess that Wakka.js script purpose was only for walking CS leechers, in the times when shorter game time length wasn’t a problem.