Isn't all the Path information in Scripts.simba?
Simba Code:
SCRIPT_VW_MINER:
with MSI_Scripts[whichScript] do
begin
Name := 'Varrock West Miner';
Constant := SCRIPT_VW_MINER;
SkillName := 'Mining';
SkillConst := SKILL_MINING;
BankType := Bank;
WhichBank := MSI_BANK_VW;
AutoObjects := @MSI_MineInvFull;
BankObjects := @MSI_BankStandard;
PlayerSetup := @MSI_SetupMining;
Defaults.Rocks := [ROCK_TIN, ROCK_CLAY, ROCK_IRON, ROCK_SILVER];
with PathInfo do
begin
Name := 'LOC_VW_BANK to LOC_VW_MINE';
StartLoc := LOC_VW_BANK;
EndLoc := LOC_VW_MINE;
SPSPath := [
TPointArray([Point(4580, 2903), Point(4516, 2952),
Point(4555, 3175)])
];
SPSAreas := [
TStringArray(['11_7'])
];
end;
end;