Results 1 to 4 of 4

Thread: What file is this in:

  1. #1
    Join Date
    Jul 2013
    Posts
    2
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default What file is this in:

    Hey there, I was wondering if someone knew which simba file was responsible for the function that will throw this:

    Code:
    Warning! You passed a wrong xe to a finder function: 1081. The client has a width of 765, thus the xe is out of bounds. Setting the value to 764 (w-1) for now.
    Usually everything I have needed to play with has been in smartparams, but I simply cannot find this one. Anyone know?

  2. #2
    Join Date
    Dec 2011
    Location
    Toronto, Ontario
    Posts
    6,424
    Mentioned
    84 Post(s)
    Quoted
    863 Post(s)

    Default

    It just means that the object is past the X coordinates of the screen.

  3. #3
    Join Date
    Jul 2013
    Posts
    2
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    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


    Final edit... okay so I figured to just use the selector even once SMART has loaded. Sorry for the derping
    Last edited by Merchz; 07-25-2013 at 01:26 AM.

  4. #4
    Join Date
    Jul 2012
    Posts
    437
    Mentioned
    10 Post(s)
    Quoted
    165 Post(s)

    Default

    Quote Originally Posted by Merchz View Post
    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.

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •