Page 31 of 54 FirstFirst ... 21293031323341 ... LastLast
Results 751 to 775 of 1345

Thread: OFFICIAL Social Slayer/SMART Not Working Thread

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

    Default

    Quote Originally Posted by Nasus View Post
    First time I've run Simba without using SMART, so I must be missing a step in making it all work (I've been quick-switching to Runescape window). Standard graphics, including Safe mode. Here's my current results:


    BOTH log-in and lobby screens:

    The mouse darts up to select the first tab in my browser, only it overshoots and heads right to the top of the screen. After that, it is dragged all the way to the bottom of my screen, and Simba prints the following:

    must be at least part way past login screen

    The while-not loop following that Writeln command also turns into an infinite loop. I've had to use task manager to close Simba, and had to tab between options at that.


    My best guess is that I have some kind of configuration foul-up. Next best guess is that it's thrown off by screen resolution.
    Did you select the client window using the cross-hairs ?

    You can use F2 as a command to kill the script.
    I'm Silent SPY
    Secret project: 0%
    Need help? Send me a PM

  2. #752
    Join Date
    Jun 2012
    Posts
    21
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by Brandon View Post
    K I just made everything a simple drag and drop.

    1. Download Simba 0.99 from Wizzup's thread: http://nala.villavu.com/downloads/ma...i386-win32.exe

    2. Copy Wizzup's plugins to C:/Simba/Plugins: https://github.com/downloads/Merlijn...ba/plugins.zip

    3. Delete your includes folder.. Replace it with the temporary fix: https://github.com/Brandon-T/SRL-5/zipball/master

    4. "IF" your script needs updating then read this: http://villavu.com/forum/showthread.php?t=84334

    If you can't do that then Iunno what else to say. It's as simple as that. Now go try running a script. You shouldn't need to modify it if it's coded well.

    This is just a temporary fix.. It's not official and never will be.

    ii was good until deleting includes. thanks you helped a lot gonna rep you.

  3. #753
    Join Date
    May 2012
    Location
    Runeterra
    Posts
    36
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Silent, I didn't get any crosshairs. I was using the old working Simba, pre-crash. I'll reload the backups and try again shortly.

    EDIT: Yeah, no crosshairs.


    Using a Brandon-fixed Simba (which I had to add an extra plugin from my backup folder, so if whatever irokiplugin is could be causing this new issue, well, there's the culprit!) I can't even get the script to run.

    Error: Exception: Access violation at line 501

    Specifically, this is the Globals, and that line matches up to this:

    by Narcle

    It's in the middle of a comment block, so I'm guessing I wasn't intended to try this with Brandon's fix at all; I just did it for completeness.
    Last edited by Nasus; 07-15-2012 at 08:49 PM.
    Want to combine [anything] with [anything else]?
    Nasus's Right Click Combiner!

  4. #754
    Join Date
    Dec 2011
    Location
    U.S.A.
    Posts
    635
    Mentioned
    5 Post(s)
    Quoted
    249 Post(s)

    Default

    Will this temporary fix allow msi to work?

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

    Default

    Quote Originally Posted by Nasus View Post
    Silent, I didn't get any crosshairs. I was using the old working Simba, pre-crash. I'll reload the backups and try again shortly.

    EDIT: Yeah, no crosshairs.


    Using a Brandon-fixed Simba (which I had to add an extra plugin from my backup folder, so if whatever irokiplugin is could be causing this new issue, well, there's the culprit!) I can't even get the script to run.

    Error: Exception: Access violation at line 501

    Specifically, this is the Globals, and that line matches up to this:

    by Narcle

    It's in the middle of a comment block, so I'm guessing I wasn't intended to try this with Brandon's fix at all; I just did it for completeness.
    Try using with my git repo. Follow the same instructions for replacing it that Brandon gave. my repo.

    Also, try running this updated version:

    Drag the cross-hairs on to the RS Window. Its in the Simba tool bar.
    Simba Code:
    program SetBarHeight;
    //{$DEFINE SMART}
    {$DEFINE SRL5}
    {$i srl/srl.simba}

    function BarHeight: Integer;
    var
    x, y, yOff, mX: Integer;
    begin
      mX:= MSCX + 30;
     MMouse(MSCX+ 30, MSY1, 0, 0);
     //Writeln('moved mouse');
     if (GetColor(MSCX, MSY1) = 4605254) then
      begin
        Writeln('found color of box on login screen');
        yOff:= MSY1 + 3;
        while (GetColor(mX, yOff) = 0) do
        begin
          Inc(YOff);
          MMouse(mX, yOff, 0, 0);
          //Writeln('y offset is: ' + IntToStr(yOff - MSY1));
        end;
        Result:= yOff - MSY1 + 3;
        Writeln('y offset is: ' + IntToStr(yOff - MSY1 + 3));
        Exit;
      end;

      Writeln('Assuming we are past initial login.');
      Writeln('trying to determine nav bar offset at lobby screen');
      while not (FindColorTolerance(mX, yOff, 11119274, mX, yOff, mX, yOff, 2)) do
        begin
          Inc(YOff);
          MMouse(mX, yOff, 0, 0);
          //Writeln('y offset is: ' + IntToStr(yOff - MSY1));
        end;
      Writeln('y offset is: ' + IntToStr(yOff - MSY1 + 3));
      Result:= yOff - MSY1 + 3;
    end;

    begin
      (*Smart_Server := 72;
      Smart_Members := True;
      Smart_Signed := True;
      Smart_SuperDetail := False;*)

      SetupSRL;
      BarHeight;
    end.
    I'm Silent SPY
    Secret project: 0%
    Need help? Send me a PM

  6. #756
    Join Date
    May 2012
    Location
    Runeterra
    Posts
    36
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Well, glad to have been able to sort things out on IRC, and really happy to know your methods work. Now it's time to bugfix Brandon's methods, since I forgot to back up my old Brandon-Simba install before I started messing around with everything, and botched it up good.

    If anybody needs a tester, I'm in IRC and will be checking in every few minutes. I'm willing and able.
    Want to combine [anything] with [anything else]?
    Nasus's Right Click Combiner!

  7. #757
    Join Date
    May 2012
    Posts
    35
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by Nasus View Post
    Well, glad to have been able to sort things out on IRC, and really happy to know your methods work. Now it's time to bugfix Brandon's methods, since I forgot to back up my old Brandon-Simba install before I started messing around with everything, and botched it up good.

    If anybody needs a tester, I'm in IRC and will be checking in every few minutes. I'm willing and able.
    Yay, League of Legends.

    That said, I have nothing of worth to contribute to this topic.

  8. #758
    Join Date
    Jan 2012
    Posts
    1,104
    Mentioned
    18 Post(s)
    Quoted
    211 Post(s)

    Default

    Quote Originally Posted by Brandon View Post
    K I just made everything a simple drag and drop.

    1. Download Simba 0.99 from Wizzup's thread: http://nala.villavu.com/downloads/ma...i386-win32.exe

    2. Copy Wizzup's plugins to C:/Simba/Plugins: https://github.com/downloads/Merlijn...ba/plugins.zip

    3. Delete your includes folder.. Replace it with the temporary fix: https://github.com/Brandon-T/SRL-5/zipball/master

    4. "IF" your script needs updating then read this: http://villavu.com/forum/showthread.php?t=84334

    If you can't do that then Iunno what else to say. It's as simple as that. Now go try running a script. You shouldn't need to modify it if it's coded well.

    This is just a temporary fix.. It's not official and never will be.
    Not working for me.
    Installed 0.99. Disabled auto updating.
    Deleted includes and plugins.
    Copied includes and plugins, everything.
    My test script is:
    Simba Code:
    program Test;
    {$DEFINE SMART}
    {$I SRL/SRL.Simba}
    {$I SRL/SRL/Misc/SmartGraphics.Simba}

    begin
      SRL_SixHourFix := True;
      Smart_FixSpeed := True;
      SetupSRL;
    end.
    Output is:
    Code:
    Compiled successfully in 577 ms.
    SRL Compiled in 15 msec
    *** Smart Cannot Spawn Clients ***
    Successfully executed.

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

    Default

    Quote Originally Posted by Shatterhand View Post
    Not working for me.
    Installed 0.99. Disabled auto updating.
    Deleted includes and plugins.
    Copied includes and plugins, everything.
    My test script is:
    Simba Code:
    program Test;
    {$DEFINE SMART}
    {$I SRL/SRL.Simba}
    {$I SRL/SRL/Misc/SmartGraphics.Simba}

    begin
      SRL_SixHourFix := True;
      Smart_FixSpeed := True;
      SetupSRL;
    end.
    Output is:
    Code:
    Compiled successfully in 577 ms.
    SRL Compiled in 15 msec
    *** Smart Cannot Spawn Clients ***
    Successfully executed.
    Running as admin?
    I'm Silent SPY
    Secret project: 0%
    Need help? Send me a PM

  10. #760
    Join Date
    Dec 2011
    Posts
    113
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by Shatterhand View Post
    Not working for me.
    Installed 0.99. Disabled auto updating.
    Deleted includes and plugins.
    Copied includes and plugins, everything.
    My test script is:
    Simba Code:
    program Test;
    {$DEFINE SMART}
    {$I SRL/SRL.Simba}
    {$I SRL/SRL/Misc/SmartGraphics.Simba}

    begin
      SRL_SixHourFix := True;
      Smart_FixSpeed := True;
      SetupSRL;
    end.
    Output is:
    Code:
    Compiled successfully in 577 ms.
    SRL Compiled in 15 msec
    *** Smart Cannot Spawn Clients ***
    Successfully executed.
    Run as Administrator

  11. #761
    Join Date
    Feb 2012
    Location
    Wonderland
    Posts
    1,988
    Mentioned
    41 Post(s)
    Quoted
    272 Post(s)

    Default

    Quote Originally Posted by Silent SPY View Post
    Running as admin?
    This; on the Smart 7.1 thread (iirc - 7.1 or 7.2 :s) it's suggested to incorporate EIOS support, in which running Simba as admin isn't required. At least that's what I understood from reading over the threads.

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

    Default

    Cool work ggzz! This will help for now
    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.


  13. #763
    Join Date
    May 2007
    Posts
    433
    Mentioned
    0 Post(s)
    Quoted
    4 Post(s)

    Default

    Quote Originally Posted by Shatterhand View Post
    Not working for me.
    Installed 0.99. Disabled auto updating.
    Deleted includes and plugins.
    Copied includes and plugins, everything.
    My test script is:
    Simba Code:
    program Test;
    {$DEFINE SMART}
    {$I SRL/SRL.Simba}
    {$I SRL/SRL/Misc/SmartGraphics.Simba}

    begin
      SRL_SixHourFix := True;
      Smart_FixSpeed := True;
      SetupSRL;
    end.
    Output is:
    Code:
    Compiled successfully in 577 ms.
    SRL Compiled in 15 msec
    *** Smart Cannot Spawn Clients ***
    Successfully executed.
    i followed that as well and got :

    [Error] C:\Simba\Includes\SRL/SRL/misc/paintsmart.simba(41:33): Unknown identifier 'SmartGetDebugDC' at line 40

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

    Default

    Quote Originally Posted by Kyle Undefined View Post
    Cool work ggzz! This will help for now
    Kyle, you should probably undo the commit with the constants changed. As they aren't really helping and just throwing off development of better solutions.

    I thought all the constants were in that one file, which I was horribly mistaken on. So until we can get it fixed.... Might as well not have it IMHO, but that's up to you.
    I'm Silent SPY
    Secret project: 0%
    Need help? Send me a PM

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

    Default

    I'm not home right now. Send in a pull request and I can merge it from my phone.
    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.


  16. #766
    Join Date
    Jun 2012
    Posts
    5
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    My smart loads and everything just i cant click anything, when it trys to login it clicks just above the username bar. How should I fix this? just started after the rs update

  17. #767
    Join Date
    Dec 2011
    Posts
    100
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Am I the only one getting this error? I am using the same basic test script as a few posts up.

    Simba Code:
    program Test;
    {$DEFINE SMART}
    {$I SRL/SRL.Simba}
    {$I SRL/SRL/Misc/SmartGraphics.Simba}

    begin
      SRL_SixHourFix := True;
      Smart_FixSpeed := True;
      SetupSRL;
    end.


    Output:

    Code:
    Compiled successfully in 234 ms.
    SRL Compiled in 0 msec
    *** Fatal Error: Pairing Clients; Attempting To Kill All Clients ***
    Failed To Kill Client: 2272
    Successfully executed.

  18. #768
    Join Date
    Jan 2012
    Posts
    1,104
    Mentioned
    18 Post(s)
    Quoted
    211 Post(s)

    Default

    ^ I get the same after running Simba as admin.

  19. #769
    Join Date
    May 2007
    Posts
    433
    Mentioned
    0 Post(s)
    Quoted
    4 Post(s)

    Default

    is anyone getting
    [Error] C:\Simba\Includes\SRL/SRL/misc/paintsmart.simba(41:33): Unknown identifier 'SmartGetDebugDC' at line 40

  20. #770
    Join Date
    Jun 2012
    Posts
    712
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by Shatterhand View Post
    ^ I get the same after running Simba as admin.
    I get the same error I'm not sure what I'm doing wrong,

  21. #771
    Join Date
    Dec 2011
    Posts
    484
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Browser I think. I think SMART is out of commission atm.

  22. #772
    Join Date
    Dec 2011
    Posts
    100
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by supersayian2224 View Post
    is anyone getting
    [Error] C:\Simba\Includes\SRL/SRL/misc/paintsmart.simba(41:33): Unknown identifier 'SmartGetDebugDC' at line 40
    You need to do the compatibility fix.

    See here:

    http://villavu.com/forum/showthread.php?t=84334
    Last edited by iiNveRsioN; 07-15-2012 at 10:28 PM.

  23. #773
    Join Date
    Feb 2011
    Location
    The Future.
    Posts
    5,600
    Mentioned
    396 Post(s)
    Quoted
    1598 Post(s)

    Default

    Everyone give me a minute.. I just got home. I'll write you guys a very detailed solution on fixing paired clients/compiling smart. I'll post the link here when I'm done.
    I am Ggzz..
    Hackintosher

  24. #774
    Join Date
    May 2007
    Posts
    433
    Mentioned
    0 Post(s)
    Quoted
    4 Post(s)

    Default

    Quote Originally Posted by iiNveRsioN View Post
    You need to do the compatibility fix.

    See here:

    http://villavu.com/forum/showthread.php?t=84334
    Okay, I went to the http://villavu.com/forum/showthread.php?t=84789

    but it seems very ... unhelpful. I've never tried updating SMART before

  25. #775
    Join Date
    Jan 2012
    Posts
    92
    Mentioned
    0 Post(s)
    Quoted
    3 Post(s)

    Default

    I WAS ABLE TO get smart loading and my script kinda sorta updated but i don't know what srl stuff works and what doesn't. so i think i MIGHT just wait till some one has this 100%.

Page 31 of 54 FirstFirst ... 21293031323341 ... 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
  •