Log in

View Full Version : [HELP] walking problems



jibber
01-14-2012, 04:08 PM
ive been trying for days now trying to get a basic script with no anti bans anything to just walk from 1 location to another.

ive tried all the tuts, im using wolygons path maker. what am i doing wrong?

ive looked at premade scripts i can edit, but just isnt what im after. my first script is going to be a miner and banker. ive done the tree chopping script but thats so basic i wouldnt call it a script :P

program spsTest;
{$DEFINE SMART}
{$i srl/srl.simba}
{$i sps/sps.simba}

Var
myPath:TPointArray;
begin
SetupSRL;
SPS_Setup(RUNESCAPE_SURFACE,['12_7','11_7','];
myPath := [Point(4849, 2967), Point(4847, 2937), Point(4748, 2931),
Point(4704, 2949), Point(4676, 2951), Point(4643, 2934),
Point(4581, 2936), Point(4573, 2906)];
SPS_WalkPath(myPath);
end.

anyone got a like to a simple script, that opens smart, logs in, and has a walker i can change the path and location just so i can see what walking looks like?

PatDuffy
01-14-2012, 04:10 PM
Depending on the area you are walking to/from, I would suggest looking at ObjectDTM's. I have found them to be a lot more accurate than SPS for the majority of places.

SPS is a little sketchy, hopefully V2.0 will be better. BTW, use tags for code next time.

Jhangir
01-14-2012, 04:10 PM
Is it giving errors or does it fail to walk properly. Because SPS is really outdated gotta wait for sps 2.0

jibber
01-14-2012, 05:06 PM
ive been trying for days now trying to get a basic script with no anti bans anything to just walk from 1 location to another.

ive tried all the tuts, im using wolygons path maker. what am i doing wrong?

ive looked at premade scripts i can edit, but just isnt what im after. my first script is going to be a miner and banker. ive done the tree chopping script but thats so basic i wouldnt call it a script :P

program spsTest;
{$DEFINE SMART}
{$i srl/srl.simba}
{$i sps/sps.simba}

Var
myPath:TPointArray;
begin
SetupSRL;
SPS_Setup(RUNESCAPE_SURFACE,['12_7','11_7','];
myPath := [Point(4849, 2967), Point(4847, 2937), Point(4748, 2931),
Point(4704, 2949), Point(4676, 2951), Point(4643, 2934),
Point(4581, 2936), Point(4573, 2906)];
SPS_WalkPath(myPath);
end.

anyone got a like to a simple script, that opens smart, logs in, and has a walker i can change the path and location just so i can see what walking looks like?


yay! it worked! currently mining iron and coal in ardy and banking :P and entering bank pin! w00t first script made. :)