Results 1 to 9 of 9

Thread: Need some help

  1. #1
    Join Date
    Mar 2012
    Posts
    38
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default Need some help

    Hi i have botted quite a lot and tried to learn a bit along the way. I am currently getting this error on some scripts: [Error] C:\Simba\Includes\SRL/SRL/core/globals.simba(581:5): Unknown identifier 'ImageSetClientArea' at line 580
    Compiling failed.
    I don't know how to fix it. Also where can i download the latest version of simba could someone link me please.
    Thanks.

  2. #2
    Join Date
    Jun 2012
    Posts
    2,182
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    You can find the latest SIMBA here.
    The latest SMART here.
    Then update your plugins, SRL, SPS, and MSI.
    Thx Euphemism and Vinyl for the awesome siggy and avatar!

  3. #3
    Join Date
    Dec 2011
    Location
    Belgium
    Posts
    623
    Mentioned
    0 Post(s)
    Quoted
    3 Post(s)

    Default

    It means those scripts are outdated, or that you don't have the latest simba version.

    Made by P1ng

  4. #4
    Join Date
    Mar 2012
    Posts
    38
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    I have the latest simba now but am struggling to add new smart

  5. #5
    Join Date
    Jun 2012
    Posts
    2,182
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Download smart from my above link, then copy all the files into your plugins folder. It's somewhere in the simba folder. Overwrite anything that asks you to, then open simba.
    Thx Euphemism and Vinyl for the awesome siggy and avatar!

  6. #6
    Join Date
    Aug 2012
    Posts
    1
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Do you know a easy way to cycle through multiple mouse positions and click them without repeating the same code over and over?

  7. #7
    Join Date
    Jan 2012
    Posts
    2,568
    Mentioned
    35 Post(s)
    Quoted
    356 Post(s)

    Default

    Quote Originally Posted by potatorock View Post
    Do you know a easy way to cycle through multiple mouse positions and click them without repeating the same code over and over?
    Use TPA.
    http://villavu.com/forum/forumdisplay.php?f=97

    How is that qns related to this thread though?

  8. #8
    Join Date
    Feb 2012
    Location
    UK
    Posts
    909
    Mentioned
    10 Post(s)
    Quoted
    191 Post(s)

    Default

    Quote Originally Posted by riwu View Post
    Use TPA.
    http://villavu.com/forum/forumdisplay.php?f=97

    How is that qns related to this thread though?
    I guess it's related to the thread title.

  9. #9
    Join Date
    Jan 2012
    Posts
    190
    Mentioned
    0 Post(s)
    Quoted
    10 Post(s)

    Default

    yes i do im bored of the question elaborate

    Simba Code:
    function tpacycle:boolean;
    var
     i:integer;
     mousepositions:tpointarray;
       begin    
        setarraylength(mousepositions,3);
         mousepositions[0].x:=3;
         mousepositions[0].y:=8;
         mousepositions[1].x:=13;
         mousepositions[1].y:=24;
         mousepositions[2].x:=32;
         mousepositions[2].y:=6;
           for i:=0 to high(mousepositios) do
             begin
              mouse(mousepositions[i].x,mousepositions[i].y,5,5,1);
                wait(3000+(random(500));
                  end;
                    end;

    this is completly untested but what this example does is clicks what position every 3 seconds...
    is this what your talking about?

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
  •