
Originally Posted by
Merchz
Yeah, but it is a dirty lie! Those are proper coords on the screen. =x
The current RS screen is pretty wide, and if you use the selector, then view the coordinates of various spots, you can see they exceed those limits.
I'd like to find the file throwing that error, so I can fix it to be the proper dimensions.
Edit... odd... okay well when I am in game... it gives dimensions of width into the thousands. When logout screen, it gives the right ones. I'll try to use those. Any clue why this might be?
Edit again... yeah, like when I am logging in, I go to the VERY edge of the left... and it is starting my x @ 80 lol

You get the error because you are attempting to search outside the client.
use this to get the client dimensions and then fix your finding functions.
Simba Code:
program new;
var
w,h:LongInt;
begin
GetClientDimensions(w,h);
writeln(w);
writeln(h);
end.