Page 6 of 32 FirstFirst ... 4567816 ... LastLast
Results 126 to 150 of 796

Thread: Silent Spinner (Color)(ObjDTM)

  1. #126
    Join Date
    Mar 2007
    Location
    USA
    Posts
    1,433
    Mentioned
    1 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by Paula_Deen View Post
    Oops, so you did. You used a vague pronoun.
    Although, I probably should have been able to guess it properly.
    Ah, yeah it won't scroll for you. It has to be visible when you open the bank, as Camo said.

    P.S. Thanks for helping out Camo
    I'm Silent SPY
    Secret project: 0%
    Need help? Send me a PM

  2. #127
    Join Date
    Oct 2006
    Posts
    174
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default


  3. #128
    Join Date
    Oct 2008
    Location
    C:\Simba\Includes\
    Posts
    7,566
    Mentioned
    19 Post(s)
    Quoted
    180 Post(s)

    Default

    Thanks, that's very helpful Can you try this?

    Simba Code:
    function FindAndClickSpinner: Boolean;
    var
    x, y, u, cts, i :Integer;
    TPA: TPointArray;
    ATPA: T2DPointArray;

    begin
      if not (LoggedIn) then
        Exit;
      if not (FindNormalRandoms) then
      begin
        MakeCompass('s');
        Wait(RandomRange(500,750));
        result:= false;
        repeat
          Wait(RandomRange(400, 700));
        until not (IsMoving);
        x:= MSCX;
        y:= MSCY;
        CTS:= GetColorToleranceSpeed;
        ColorToleranceSpeed(2);
        SetColorSpeed2Modifiers(0.27, 0.98);
        FindColorsSpiralTolerance(x, y, TPA, 7639983, MSX1, MSY1, MSX2, MSCY, 11);
        WriteLn('Color "7639983" has ' + IntToStr(CountColorTolerance(7639983, MSX1, MSY1, MSX2, MSY2, 11)) + ' pixels on screen');

        if Length(TPA) = 0 then
        begin
          FindColorsSpiralTolerance(x, y, TPA, 6386814, MSX1, MSY1, MSX2, MSY2, 11);
          WriteLn('Color "6386814" has ' + IntToStr(CountColorTolerance(6386814, MSX1, MSY1, MSX2, MSY2, 11)) + ' pixels on screen');
        end;
        u:= 0;

        WriteLn('High of TPA = ' + IntToStr(High(TPA)));
        ATPA:= TPAtoATPAEx(TPA, 12, 24);
        WriteLn('High of ATPA = ' + IntToStr(High(ATPA)));
        for i:= 0 to High(TPA) do
        begin
          MiddleTPAEx(ATPA[i], x, y);
          MMouse(x, y, 2, 2);
          GetMousePos(x, y);
          if (WaitUpTextMulti(['Spin'], 300)) then
          begin
            Mouse(x, y, 0, 0, false);
            if WaitOption('Spin', 300) then
            begin
              Writeln('Clicked Spinner..');
              Result:= true;
              Break;
            end;
          end;
          Wait(RandomRange(400, 700));
        end;
      end;
    end;

    Just replace that entire function and when it crashes, post the debug, it will have information needed to continue.
    Away for awhile, life is keeping me busy. | Want to get my attention in a thread? @Kyle Undefined; me.
    { MSI Phoenix || SRL Stats Sigs || Paste || Scripts || Quotes || Graphics }

    When posting a bug, please post debug! Help us, help you!

    I would love to change the world, but they won't give me the source code. || To be the best, you've got to beat the rest. || Logic never changes, just the syntax.
    If you PM me with a stupid question or one listed in FAQ, or about a script that is not mine, I will NOT respond.


    SRL is a Library of routines made by the SRL community written for the Program Simba. We produce Scripts for the game Runescape.


  4. #129
    Join Date
    Oct 2006
    Posts
    174
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by Camo Developer View Post
    Thanks, that's very helpful Can you try this?

    Simba Code:
    function FindAndClickSpinner: Boolean;
    var
    x, y, u, cts, i :Integer;
    TPA: TPointArray;
    ATPA: T2DPointArray;

    begin
      if not (LoggedIn) then
        Exit;
      if not (FindNormalRandoms) then
      begin
        MakeCompass('s');
        Wait(RandomRange(500,750));
        result:= false;
        repeat
          Wait(RandomRange(400, 700));
        until not (IsMoving);
        x:= MSCX;
        y:= MSCY;
        CTS:= GetColorToleranceSpeed;
        ColorToleranceSpeed(2);
        SetColorSpeed2Modifiers(0.27, 0.98);
        FindColorsSpiralTolerance(x, y, TPA, 7639983, MSX1, MSY1, MSX2, MSCY, 11);
        WriteLn('Color "7639983" has ' + IntToStr(CountColorTolerance(7639983, MSX1, MSY1, MSX2, MSY2, 11)) + ' pixels on screen');

        if Length(TPA) = 0 then
        begin
          FindColorsSpiralTolerance(x, y, TPA, 6386814, MSX1, MSY1, MSX2, MSY2, 11);
          WriteLn('Color "6386814" has ' + IntToStr(CountColorTolerance(6386814, MSX1, MSY1, MSX2, MSY2, 11)) + ' pixels on screen');
        end;
        u:= 0;

        WriteLn('High of TPA = ' + IntToStr(High(TPA)));
        ATPA:= TPAtoATPAEx(TPA, 12, 24);
        WriteLn('High of ATPA = ' + IntToStr(High(ATPA)));
        for i:= 0 to High(TPA) do
        begin
          MiddleTPAEx(ATPA[i], x, y);
          MMouse(x, y, 2, 2);
          GetMousePos(x, y);
          if (WaitUpTextMulti(['Spin'], 300)) then
          begin
            Mouse(x, y, 0, 0, false);
            if WaitOption('Spin', 300) then
            begin
              Writeln('Clicked Spinner..');
              Result:= true;
              Break;
            end;
          end;
          Wait(RandomRange(400, 700));
        end;
      end;
    end;

    Just replace that entire function and when it crashes, post the debug, it will have information needed to continue.

    edit: no problem with finding the spinner

    sometimes it doesn't find the stairs and logs out
    on the way up plus on the way down

    it doesn't show in the debug report
    Last edited by bambino; 12-13-2011 at 05:43 PM.

  5. #130
    Join Date
    Dec 2011
    Posts
    95
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Had to change the REV7B thing because it never named that in the ObjectDTM folder.

    also I came across this error in ObjDTMInclude file


    "[Error] (422:17): Unknown identifier 'IntToPoint' at line 421
    Compiling failed."

    " TestRay0.A := IntToPoint(X, Y); //This sets the test rays to useable segments."

    Everything on simba is so complicated o.o

    EDIT: here's a better explanation I was told to post it here.

    Hey there I'm trying to run THIS SCRIPT but it isn't working out to well...

    To run it I need to download the ObjectDTM file, unfortunately it does not give me the best tutorial on how to set it up. What I did was I downloaded it I put it in my ...simba/scripts folder and clicked run. It downloaded a new folder ObjectDTM in my includes; I got another executable simba file so I hit run but I got this error

    [Error] (422:17): Unknown identifier 'IntToPoint' at line 421
    Compiling failed.
    again that was in the ObectDTM folder, with the file ObjectDTMInclude.simba.

    On top of that, I got an error in the FLAX SPINNING SCRIPT script it could not find

    ObjDTMIncludeRev7b.simba
    so i renamed it ObjDTMInclude.simba <-- without the Rev7b, it was that in the script for some reason.

    I feel like my brain is going to burst, I've never even coded in pascal I don't usually fool around with other peoples scripts so this thing is extremely frustrating for me. Especially since there's so many add on's i need to instal after intalling simba.

    Anyways, could someone please help, I can rephrase this all if need be. I probably did not explain it that well at all...
    Last edited by kyocera; 12-14-2011 at 12:03 AM.

  6. #131
    Join Date
    Jun 2008
    Location
    United States
    Posts
    818
    Mentioned
    60 Post(s)
    Quoted
    90 Post(s)

    Default

    Quote Originally Posted by kyocera View Post
    Had to change the REV7B thing because it never named that in the ObjectDTM folder.

    also I came across this error in ObjDTMInclude file


    "[Error] (422:17): Unknown identifier 'IntToPoint' at line 421
    Compiling failed."

    " TestRay0.A := IntToPoint(X, Y); //This sets the test rays to useable segments."

    Everything on simba is so complicated o.o
    I am assuming you have run the installer from the Object DTM thread. If not, run this. At the top of Silent_SPY's script you will want to change the line

    {$i /ObjDTMIncludeRev7b.simba}

    to

    {$i ObjectDTM\ObjDTMInclude.simba}

    I have changed how the include is setup and installs, and Silent_SPY hasn't been around since the change. Sorry for any inconvenience.
    Last edited by euphemism; 12-14-2011 at 12:14 AM.
    [10/14/13:19:03] <BenLand100> this is special relatively, just cleverly disguised with yachts

  7. #132
    Join Date
    Oct 2008
    Location
    C:\Simba\Includes\
    Posts
    7,566
    Mentioned
    19 Post(s)
    Quoted
    180 Post(s)

    Default

    Quote Originally Posted by bambino View Post
    edit: no problem with finding the spinner

    sometimes it doesn't find the stairs and logs out
    on the way up plus on the way down

    it doesn't show in the debug report
    Those changes were for the spinner, you could do the same thing for the stair finding to debug it.
    Away for awhile, life is keeping me busy. | Want to get my attention in a thread? @Kyle Undefined; me.
    { MSI Phoenix || SRL Stats Sigs || Paste || Scripts || Quotes || Graphics }

    When posting a bug, please post debug! Help us, help you!

    I would love to change the world, but they won't give me the source code. || To be the best, you've got to beat the rest. || Logic never changes, just the syntax.
    If you PM me with a stupid question or one listed in FAQ, or about a script that is not mine, I will NOT respond.


    SRL is a Library of routines made by the SRL community written for the Program Simba. We produce Scripts for the game Runescape.


  8. #133
    Join Date
    Dec 2011
    Posts
    95
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by euphemism View Post
    I am assuming you have run the installer from the Object DTM thread. If so, you should have the file "ObjDTMInclude.simba" inside Simba\Includes\ObjectDTM\. If so, at the top of the script you will want to change the line

    {$i /ObjDTMIncludeRev7b.simba}

    to

    {$i ObjectDTM\ObjDTMInclude.simba}

    I have changed how the include is setup and installs, and Silent_SPY hasn't been around since the change. Sorry for any inconvenience.

    Also, you got that eror because you tried running the include file after it was installed. It is not a stand-alone script, and has to be included into scripts to be used. Silent_SPY's script should run if you follow the fix above.
    wowww thanks so much man, I thought I all ready did that. I guess I named it wrong lol.

    Thanks a lot)) +1 if i could

  9. #134
    Join Date
    Mar 2007
    Location
    USA
    Posts
    1,433
    Mentioned
    1 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by euphemism View Post
    I am assuming you have run the installer from the Object DTM thread. If not, run this. At the top of Silent_SPY's script you will want to change the line

    {$i /ObjDTMIncludeRev7b.simba}

    to

    {$i ObjectDTM\ObjDTMInclude.simba}

    I have changed how the include is setup and installs, and Silent_SPY hasn't been around since the change. Sorry for any inconvenience.
    I've been around, just not on IRC . I have finals this week sorry guys. Anyway, I did a quick edit and uploaded a new version with some added debug to see where stuff is really going wrong. Please download the latest.

    I also included the fix euphemism listed above!

    Edit: @ kyocera, I'm sorry for the trouble this caused, I wasn't aware of the changes in the ObjDTM include. I know it can be kind of confusing when you're new to this stuff. It should work now!
    Last edited by Silent; 12-14-2011 at 12:24 AM.
    I'm Silent SPY
    Secret project: 0%
    Need help? Send me a PM

  10. #135
    Join Date
    Nov 2011
    Posts
    10
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Hey is there anyway or running multiple instances of this script? Thanks guys.

  11. #136
    Join Date
    Dec 2011
    Posts
    95
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by Camo Developer View Post
    Those changes were for the spinner, you could do the same thing for the stair finding to debug it.
    I got this error after i added it

    Error: Out Of Range at line 797
    The following DTMs were not freed: [SRL - Lamp bitmap, 1, 2, 3]
    The following bitmaps were not freed: [SRL - Mod bitmap, SRL - Admin bitmap
    MiddleTPAEx(ATPA[i], x, y);
    woops let me download the new file now haven't tried yet

  12. #137
    Join Date
    Mar 2007
    Location
    USA
    Posts
    1,433
    Mentioned
    1 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by SyntaxError1 View Post
    Hey is there anyway or running multiple instances of this script? Thanks guys.
    Yep, open more than one Simba
    I'm Silent SPY
    Secret project: 0%
    Need help? Send me a PM

  13. #138
    Join Date
    Dec 2011
    Posts
    95
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by SyntaxError1 View Post
    Hey is there anyway or running multiple instances of this script? Thanks guys.
    I'm using the new version, it's been about 3 minutes now and it's yet to have loaded the smart client. I have slow internet which I'm guessing is the problem but could it be a script error?
    Last edited by kyocera; 12-14-2011 at 12:45 AM.

  14. #139
    Join Date
    Mar 2007
    Location
    USA
    Posts
    1,433
    Mentioned
    1 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by kyocera View Post
    I'm using the new version, it's been about 3 minutes now and it's yet to have loaded the smart client. I have slow internet which I'm guessing is the problem but could it be a script error?
    Any problems with SMART aren't related to my script at all. Try closing it and re-opening RS in a web-browser, close that, and then re-open Simba. That usually works for me.
    I'm Silent SPY
    Secret project: 0%
    Need help? Send me a PM

  15. #140
    Join Date
    Dec 2011
    Posts
    95
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    yup I think I messed up all my progress with the DTM thing i got this error

    "The following DTMs were not freed: [SRL - Lamp bitmap, 1]
    The following bitmaps were not freed: [SRL - Mod bitmap, SRL - Admin bitmap]"

    it wont load the smart client because of that


    Quote Originally Posted by Silent SPY View Post
    Any problems with SMART aren't related to my script at all. Try closing it and re-opening RS in a web-browser, close that, and then re-open Simba. That usually works for me.
    will try hold up

  16. #141
    Join Date
    Dec 2011
    Posts
    95
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    SRL Compiled in 78 msec
    SMART Initialized.
    Loaded: Server 9, Members: False, Signed: True, Super Detail: False.
    A new update of Simba is available!
    Current version is 974. Latest version is 977
    The following DTMs were not freed: [SRL - Lamp bitmap, 1]
    The following bitmaps were not freed: [SRL - Mod bitmap, SRL - Admin bitmap]
    Nope re opening and closing everything did not work

    Then when trying to start the script again in the same window I get this...

    SRL Compiled in 78 msec
    SMART Initialized.
    Loaded: Server 9, Members: False, Signed: True, Super Detail: False.
    Error: Exception: Access violation at line 143
    The following DTMs were not freed: [SRL - Lamp bitmap, 1]
    The following bitmaps were not freed: [SRL - Mod bitmap, SRL - Admin bitmap
    and then the smart tab comes up

    SmartSetup('http://'+prefix+'.runescape.com/', ',f5', 765, 503, 's');
    there's an error with that^? I think I messed something up lol...
    Last edited by kyocera; 12-14-2011 at 01:00 AM.

  17. #142
    Join Date
    Nov 2011
    Posts
    10
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by Silent SPY View Post
    Yep, open more than one Simba
    Whenever I've tried to do this the SMART windows opens and loads Runescape but the script doesn't start

  18. #143
    Join Date
    Mar 2007
    Location
    USA
    Posts
    1,433
    Mentioned
    1 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by kyocera View Post
    Nope re opening and closing everything did not work

    Then when trying to start the script again in the same window I get this...



    and then the smart tab comes up



    there's an error with that^? I think I messed something up lol...
    I've never seen anything like that I don't know, it's a problem with SMART though. You made need to re-install Simba or something. Try updating SRL.

    Quote Originally Posted by SyntaxError1 View Post
    Whenever I've tried to do this the SMART windows opens and loads Runescape but the script doesn't start
    Odd. I've never ran more than once instance to be honest, but that's how it is supposed to be done.
    I'm Silent SPY
    Secret project: 0%
    Need help? Send me a PM

  19. #144
    Join Date
    Dec 2011
    Posts
    95
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    ================================================== ===================
    /-----\<->___ _______ ____ __ _______ /-----\ ___ _ _
    / /---\/|-|| | | _____|| \ | ||__ __|/ /---\/| \\ \ / /
    \ \___ | || | | |____ | |\ \ | | | | \ \___ | | | \ \/ /
    \___ \| || | | _____|| | \ \ | | | | \___ \ | |_/ \ /
    _____/ /| || |_____ | |____ | | \ \| | | | _____/ / | | | |
    \_____/ | ||_______||______||_| \___| |_| \_____/ | | |__|
    =====================Presents Silent Spinner=========================
    Trying to open the bank, this is the 1 try out of 10
    opened bank
    Opened the bank...
    ** Warning in DepositAll: No items to deposit **
    Getting flax...
    attempting to get flax ... Try Number:1
    attempting to get flax ... Try Number:2
    Found Item at Bank Slot 1.
    Got flax!
    Walking to the stairs
    Found Object DTM, walking.
    Flag distance reached.
    Found Object DTM, walking.
    Flag distance reached.
    Clicked Spinner..
    Trying to click make all
    Failed to Find Button
    Failed to go up the stairs

    Status: /~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\
    Status: | SRL Randoms Report |
    Status: | www.villavu.com |
    Status: |~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
    Status: \~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~/

    /================================================== =====\
    | Finishing load #1
    | Running for..5 Minutes and 42 Seconds
    | Strings made = 0
    | Experience gained...420
    | Levels gained.......0
    \================================================= ======/
    Successfully executed.
    well here's one

    I just watched it run it seems all you need to do, or I, is put some fail safes where it clicks "make all flax" usually you have 30 trys on bank and stuff but it looks as if this one has none.

    Let know what you think, I'm just a nooby so don't mind me if my idea is stupid
    Last edited by kyocera; 12-14-2011 at 01:33 AM.

  20. #145
    Join Date
    Mar 2007
    Location
    USA
    Posts
    1,433
    Mentioned
    1 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by kyocera View Post
    well here's one
    I haven't seen the button fail ever in the versions that were released... That's extremely odd... Try re-running?
    I'm Silent SPY
    Secret project: 0%
    Need help? Send me a PM

  21. #146
    Join Date
    Dec 2011
    Posts
    95
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by Silent SPY View Post
    I haven't seen the button fail ever in the versions that were released... That's extremely odd... Try re-running?
    I did same error

  22. #147
    Join Date
    Dec 2011
    Posts
    95
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    I finally got it to work, it made 20 flax into bow strings and then stopped? but the script didnt stop it's walking around the flax room like a retard clicking everything lol

    edit: actually it made 72 flax o.o!
    here's the log

    ================================================== ===================
    /-----\<->___ _______ ____ __ _______ /-----\ ___ _ _
    / /---\/|-|| | | _____|| \ | ||__ __|/ /---\/| \\ \ / /
    \ \___ | || | | |____ | |\ \ | | | | \ \___ | | | \ \/ /
    \___ \| || | | _____|| | \ \ | | | | \___ \ | |_/ \ /
    _____/ /| || |_____ | |____ | | \ \| | | | _____/ / | | | |
    \_____/ | ||_______||______||_| \___| |_| \_____/ | | |__|
    =====================Presents Silent Spinner=========================
    Trying to open the bank, this is the 1 try out of 10
    opened bank
    Opened the bank...
    ** Warning in DepositAll: No items to deposit **
    Getting flax...
    attempting to get flax ... Try Number:1
    Found Item at Bank Slot 1.
    Got flax!
    Walking to the stairs
    Found Object DTM, walking.
    Flag distance reached.
    Found Object DTM, walking.
    Flag distance reached.
    Clicked Spinner..
    Trying to click make all
    Found Button
    Found Object DTM, walking.
    Flag distance reached.
    Walking to the bank
    Found Object DTM, walking.
    Flag distance reached.

    Status: /~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\
    Status: | SRL Randoms Report |
    Status: | www.villavu.com |
    Status: |~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
    Status: \~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~/

    /================================================== =====\
    | Finishing load #1
    | Running for..9 Minutes and 54 Seconds
    | Strings made = 28
    | Experience gained...420
    | Levels gained.......0
    \================================================= ======/
    Trying to open the bank, this is the 1 try out of 10
    opened bank
    Opened the bank...
    Getting flax...
    attempting to get flax ... Try Number:1
    Got flax!
    Walking to the stairs
    Found Object DTM, walking.
    Flag distance reached.
    Found Object DTM, walking.
    Flag distance reached.
    Clicked Spinner..
    Trying to click make all
    Found Button
    Found Object DTM, walking.
    Flag distance reached.
    Didn't find the DTM the first try, trying once last time.1
    Did not find Object DTM.
    Found Object DTM, walking.
    Flag distance reached.

    Status: /~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\
    Status: | SRL Randoms Report |
    Status: | www.villavu.com |
    Status: |~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
    Status: \~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~/

    /================================================== =====\
    | Finishing load #2
    | Running for..11 Minutes and 53 Seconds
    | Strings made = 56
    | Experience gained...840
    | Levels gained.......0
    \================================================= ======/
    Trying to open the bank, this is the 1 try out of 10
    opened bank
    Opened the bank...
    Getting flax...
    attempting to get flax ... Try Number:1
    attempting to get flax ... Try Number:2
    Got flax!
    Walking to the stairs
    Found Object DTM, walking.
    Flag distance reached.
    Found Object DTM, walking.
    Flag distance reached.
    Clicked Spinner..
    Trying to click make all
    Found Button
    Successfully executed.
    The following DTMs were not freed: [2, 3]
    Last edited by kyocera; 12-14-2011 at 02:29 AM.

  23. #148
    Join Date
    Mar 2007
    Location
    USA
    Posts
    1,433
    Mentioned
    1 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by kyocera View Post
    I finally got it to work, it made 20 flax into bow strings and then stopped? but the script didnt stop it's walking around the flax room like a retard clicking everything lol

    edit: actually it made 72 flax o.o!
    here's the log
    Thanks for the info, but try just editing your post next time. I'm running a test account in the background right now... We'll see how it does.
    I'm Silent SPY
    Secret project: 0%
    Need help? Send me a PM

  24. #149
    Join Date
    Oct 2006
    Posts
    174
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Walking to the stairs
    Found Object DTM, walking.
    Flag distance reached.
    Failed to go down the stairs
    Finding Spinner failed a second time, quiting.
    Failed to go up the stairs

    even though i logged back in and i am upstairs

  25. #150
    Join Date
    Nov 2011
    Posts
    1
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    If your still in need of a p2p account I have 1 you can borrow just pm for the info.

Page 6 of 32 FirstFirst ... 4567816 ... LastLast

Thread Information

Users Browsing this Thread

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

Tags for this Thread

Posting Permissions

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