Simba Code:
MindM := IntToBox(39839, 1023, 39871, 1051);
MindN := IntToBox(39831, 983, 39871, 1019);
MindNE := IntToBox(39871, 991, 39995, 1027);
MindE := IntToBox(39879, 1023, 39899, 1051);
MindEF := IntToBox(39903, 1035, 39923, 1057);
MindSE := IntToBox(39875, 1047, 39895, 1079);
MindSEF := IntToBox(39899, 1075, 39919, 1091);
MindSEFF := IntToBox(39871, 1103, 39887, 1127);
MindS := IntToBox(39843, 1059, 39863, 1091);
MindSFI := IntToBox(39859, 1095, 39875, 1127);
MindSFII := IntToBox(39827, 1095, 39855, 1127);
MindSW := IntToBox(39823, 1047, 39839, 1075);
MindSWF := IntToBox(39779, 1063, 39807, 1079);
MindW := IntToBox(39815, 1023, 39839, 1055);
MindWM := IntToBox(39775, 1027, 39807, 1051);
MindWF := IntToBox(39755, 1003, 39775, 1067);
MindNWFI := IntToBox(39779, 987, 39807, 1007);
MindNWFII := IntToBox(39771, 1011, 39807, 1035);
MindNW := IntToBox(39807, 983, 39831, 1015);
MindPositions := [MindM, MindN, MindNE, MindE, MindEF, MindSE, MindSEF, MindSEFF, MindS, MindSFI,
MindSFII, MindSW, MindSWF, MindW, MindWM, MindWF, MindNWFI, MindNWFII, MindNW];
MindPositionsTPA := TPAFromBox(MindM) + TPAFromBox(MindN) + TPAFRomBox(MindNE) + TPAFRomBox(MindE) + TPAFromBox(MindEF) +
TPAFRomBox(MindSE) + TPAFRomBox(MindSEF) + TPAFRomBox(MindSEFF) + TPAFRomBox(MindS) + TPAFRomBox(MindSFI) +
TPAFRomBox(MindSFII) + TPAFRomBox(MindSW) + TPAFromBox(MindSWF) + TPAFRomBox(MindW) + TPAFRomBox(MindWM) +
TPAFRomBox(MindWF) + TPAFRomBox(MindNWFI) + TPAFRomBox(MindNWFII) + TPAFRomBox(MindNW);
Simba Code:
for i:=0 to 18 do
if PointInBox(MyPos, MindPositions[i]) then
begin
WriteLn('Our location is located');
case i of
0: begin
WriteLn('We are in the middle of the mind altar');
WriteLn('Walking to the altar');
case Random(4) of
0: SPS_BlindWalk(Point(RandomRange(39843, 39867), 1027));
1: SPS_BlindWalk(Point(39867, RandomRange(1027, 1047)));
2: SPS_BlindWalk(Point(RandomRange(39843, 39867), 1043));
3: SPS_BlindWalk(Point(39843, RandomRange(1027, 1043)));
end;
end;
I have to make blindwalk procedure/coords for EVERY MindPosition. For the air altar around 8 different positions where enough. But this altar is LARGE and needed 19 different positions. Takes a long time to make a random path to the altar, while luring the green/yellow orbs. The code above is just one position. Imagine doing that for 19 different ones