Results 1 to 8 of 8

Thread: Beginner's questions

  1. #1
    Join Date
    Sep 2012
    Posts
    11
    Mentioned
    0 Post(s)
    Quoted
    2 Post(s)

    Default Beginner's questions

    Hi,

    I want to start scripting.
    I have an idea, but I'm not sure what I'm doing.
    Is there a repertory where I can find all Const, Var, Procedures ?

    Thank you.
    Last edited by RedCrew; 09-25-2012 at 05:42 PM.

  2. #2
    Join Date
    Jul 2011
    Location
    /home/litoris
    Posts
    2,226
    Mentioned
    0 Post(s)
    Quoted
    159 Post(s)

    Default

    You create your own constants and variables as needed.
    The whole include consists of procedures and functions, see the .simba files to learn what's available.
    We also have a ton of tutorials available over at the Tutorial Island section.
    Miner & Urn Crafter & 07 Chicken Killer
    SPS BlindWalk Tutorial

    Working on: Nothing

    teacher in every art, brought the fire that hath proved to mortals a means to mighty ends

  3. #3
    Join Date
    Sep 2012
    Posts
    11
    Mentioned
    0 Post(s)
    Quoted
    2 Post(s)

    Default

    How can I make it, right click on a NPC moving ?

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

    Default

    I'd suggest you read the Beginner's tutorial here; http://villavu.com/forum/showthread.php?t=58935
    Solar from RiD.

  5. #5
    Join Date
    Apr 2012
    Location
    Australia
    Posts
    1,252
    Mentioned
    1 Post(s)
    Quoted
    22 Post(s)

    Default

    Get started with the beginner's tutorials, perhaps even watch some of YoHoJo's video tutorials. Then IIRC there is even a tutorial specifically about clicking on a moving NPC

  6. #6
    Join Date
    Nov 2007
    Posts
    77
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    u will need this http://docs.villavu.com/srl-5/srlref.html

    thx to srl even a newbie like me can bank and walk arround map ^^

  7. #7
    Join Date
    Sep 2012
    Posts
    11
    Mentioned
    0 Post(s)
    Quoted
    2 Post(s)

    Default

    Thank you all ! :P

    I want to show you something.
    Is it suppose to work ?
    program Starter;

    procedure Start;
    var
    x, y:Integer;
    begin
    if FindColorSpiralTolerance( x, y, 5593496 , 170, 292, 432, 299, 2) or
    FindColorSpiralTolerance( x, y, 3685221 , 170, 292, 432, 299, 2) or
    FindColorSpiralTolerance( x, y, 5395859 , 170, 292, 432, 299, 2) then
    begin
    MoveMouse(x, y);
    Wait(1000);
    ClickMouse(x, y, mouse_Right);
    end;
    end;

    begin
    Start;
    end.
    Last edited by RedCrew; 09-26-2012 at 12:45 AM.

  8. #8
    Join Date
    Sep 2012
    Posts
    9
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by RedCrew View Post
    Thank you all ! :P

    I want to show you something.
    Is it suppose to work ?
    Umm I hope you're not using that in RS LOL. You're gonna get banned using default Simba functions like 'clickmouse' and 'movemouse.' You need to include (load) the "INCLUDE" called "SRL" and load functions from it. It has much safer and more human-like mouse movements along with other useful functions.

    Simba functions on their own are great for macroing things that have little to none bot detectability or simply for speed.
    Last edited by SDLines; 09-26-2012 at 01:15 AM.

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
  •