Results 1 to 14 of 14

Thread: Struggling to make simba even interact with game. Any pointers would be great

  1. #1
    Join Date
    Dec 2015
    Posts
    7
    Mentioned
    0 Post(s)
    Quoted
    2 Post(s)

    Default Struggling to make simba even interact with game. Any pointers would be great

    So im just trying to make a simple auto typer so i cann do other things while im auto typing.

    I dont need to add a login section of the script nor do i need the script to do anything but type a message and send it. It should work the same way GarysHood would if i was using it within a virtual machine.

    Heres the simple code

    Code:
    program RUNME;
    {$DEFINE SMART}
    {$DEFINE WALKER}
    
    {$i AeroLib/AeroLib.Simba}
    
    begin
      initAL();
      Repeat
    
      Wait(1000+Random(500));
    
      SendKeys('test', 100, 30);
    
      until(false)
    end.
    Any help would be appreciated as none of the scripts i could find on the site currently work for autotyping.

  2. #2
    Join Date
    Sep 2014
    Location
    C:\Simba\
    Posts
    565
    Mentioned
    9 Post(s)
    Quoted
    71 Post(s)

    Default

    Well there's the auto typer thingy built into oldschool already, but if you want to bypass people who filter those away then:

    Simba Code:
    program RUNME;
    {$DEFINE SMART}
    {$i AeroLib/AeroLib.Simba}

    begin
      initAL();
      Repeat
        Wait(1000+Random(500));
        TypeSend('test', true);
      until(false)
    end.

    If you want to run it on a virtual machine without SMART then you can comment out {$DEFINE SMART} and instead drag the simba crosshairs onto the runescape client.
    Last edited by Joopi; 12-11-2015 at 03:58 PM.
    Feel free to ask me any questions, I will do my best to answer them!

    Previously known as YouPee.

  3. #3
    Join Date
    Oct 2012
    Posts
    1,258
    Mentioned
    40 Post(s)
    Quoted
    588 Post(s)

    Default

    I don't believe it's currently possible to do what you're asking via SMART, assuming I understood the question that is.

    You're wanting the SMART client to give keyboard inputs whilst you're interacting with it (clicking) but without it using your desktops main keyboard (aka you could switch to another window and it wouldn't affect you), correct? Assuming that's what you're asking for, then yeah I don't think that's [currently] possible without getting into running VMs
    Last edited by acow; 12-11-2015 at 04:12 PM.

  4. #4
    Join Date
    Dec 2015
    Posts
    7
    Mentioned
    0 Post(s)
    Quoted
    2 Post(s)

    Default

    No i just need to be able to auto type and i can pause the script when i need to manually interact.

  5. #5
    Join Date
    Dec 2015
    Posts
    7
    Mentioned
    0 Post(s)
    Quoted
    2 Post(s)

    Default

    Quote Originally Posted by Joopi View Post
    Well there's the auto typer thingy built into oldschool already, but if you want to bypass people who filter those away then:

    Simba Code:
    program RUNME;
    {$DEFINE SMART}
    {$i AeroLib/AeroLib.Simba}

    begin
      initAL();
      Repeat
        Wait(1000+Random(500));
        TypeSend('test', true);
      until(false)
    end.

    If you want to run it on a virtual machine without SMART then you can comment out {$DEFINE SMART} and instead drag the simba crosshairs onto the runescape client.
    This doesnt work for me. Just sits there and does nothing

  6. #6
    Join Date
    Jan 2012
    Posts
    1,596
    Mentioned
    78 Post(s)
    Quoted
    826 Post(s)

    Default

    Quote Originally Posted by finzygfx View Post
    This doesnt work for me. Just sits there and does nothing
    "there"

    where?

  7. #7
    Join Date
    Dec 2015
    Posts
    7
    Mentioned
    0 Post(s)
    Quoted
    2 Post(s)

    Default

    Quote Originally Posted by Turpinator View Post
    "there"

    where?
    Where my account is...

    As in the script does nothing visible to the client

  8. #8
    Join Date
    Oct 2012
    Posts
    1,258
    Mentioned
    40 Post(s)
    Quoted
    588 Post(s)

    Default

    Could you show a video of yourself trying to use the script, showing simba + smart client, that would most likely make it a lot easier for myself/others try to help identify your issue. ofc make sure to censor out your name / any other sensitive info before posting (feel free to pm it instead/first)

  9. #9
    Join Date
    Dec 2015
    Posts
    7
    Mentioned
    0 Post(s)
    Quoted
    2 Post(s)

    Default

    Quote Originally Posted by acow View Post
    Could you show a video of yourself trying to use the script, showing simba + smart client, would make it a lot easier for myself/others try to help identify your issue. ofc make sure to censor out your name / any other sensitive info before posting (or feel free to pm it instead/first)
    I can do but it will take a while to make render and upload. Do you have skype so i can share screens?

  10. #10
    Join Date
    Oct 2012
    Posts
    1,258
    Mentioned
    40 Post(s)
    Quoted
    588 Post(s)

    Default

    Quote Originally Posted by finzygfx View Post
    I can do but it will take a while to make render and upload. Do you have skype so i can share screens?
    sure, pm me your skype and I'll add it

  11. #11
    Join Date
    Dec 2015
    Posts
    7
    Mentioned
    0 Post(s)
    Quoted
    2 Post(s)

    Default

    Quote Originally Posted by acow View Post
    sure, pm me your skype and I'll add it
    Need 10 post count to pm you. Pm me yours

  12. #12
    Join Date
    Dec 2015
    Posts
    7
    Mentioned
    0 Post(s)
    Quoted
    2 Post(s)

    Default

    Quote Originally Posted by acow View Post
    sure, pm me your skype and I'll add it
    and no i cant reply either

  13. #13
    Join Date
    Sep 2014
    Location
    C:\Simba\
    Posts
    565
    Mentioned
    9 Post(s)
    Quoted
    71 Post(s)

    Default

    You may have to press the chatbox first before trying to type, not sure though?
    I could try to resolve this through teamviewer, this shouldn't be hard at all.
    Feel free to ask me any questions, I will do my best to answer them!

    Previously known as YouPee.

  14. #14
    Join Date
    Oct 2012
    Posts
    1,258
    Mentioned
    40 Post(s)
    Quoted
    588 Post(s)

    Default

    Quote Originally Posted by Joopi View Post
    You may have to press the chatbox first before trying to type, not sure though?
    I could try to resolve this through teamviewer, this shouldn't be hard at all.
    I did a quick install of aerolib and the same code worked fine for me yet didn't for him, I believe it's a windows 10 / java issue but I'm pretty clueless, I believe he's going to try out a vm with a different version of windows w/ everything else the same

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
  •