Results 1 to 5 of 5

Thread: Stuck with script need help...

  1. #1
    Join Date
    Jan 2012
    Posts
    62
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default Stuck with script need help...

    I want to make a fast vial filler on Varrock West Bank. I am very confused with what to do now this is what i have:
    program new;
    {$DEFINE SMART}

    {$IFDEF SMART}
    {$i SRL/SRL/Misc/Smart.simba}
    {$ENDIF}
    {$i SRL/SRL.simba}
    {$i SRL/SRL/Misc/Paintsmart.simba}

    procedure DoBankStuff;
    begin

    var
    Loads:0 Interger;
    Done: Boolean;
    LongNumber: Extended;
    Text: string;

    procedure DeclarePlayers;
    begin
    HowManyPlayers := 1;
    NumberOfPlayers(HowManyPlayers);
    CurrentPlayer := 0;

    with Players[0] do
    begin
    Name :=''; // Username
    Pass :=''; // Password
    Nick :=''; // 3-4 lower case letters of your character's name
    Pin :=''; // Bank PIN
    Active := True;
    end;
    end;
    begin
    Loads:=5;
    Done:=True;
    LongNumber:=5.36486;
    Text:= 'Hello World!';
    SetupSRL;
    DeclarePlayers;
    LoginPlayer;
    OpenBank('veb', True, True);

    end.

  2. #2
    Join Date
    Feb 2011
    Location
    Earth
    Posts
    1,784
    Mentioned
    1 Post(s)
    Quoted
    0 Post(s)

    Default

    well to being with, you currently have a procedure in a procedure

    Start by making a script to load SMART and log you in, then add something to walk you from place to place. Then add object finding, then banking, then anti-ban, etc.

    Currently: Working on Defending&Attacking in my Castle-Wars Script
    Project Rebuild: 90M/170M

  3. #3
    Join Date
    Jan 2012
    Posts
    62
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    could you edit it so i have a script to load SMART
    PATH
    myPath := [Point(4836, 2958), Point(4833, 2925), Point(4793, 2922), Point(4783, 2909), Point(4774, 2898), Point(4771, 2907)];
    Last edited by maxxfilth; 02-08-2012 at 10:48 PM.

  4. #4
    Join Date
    Dec 2011
    Location
    United States
    Posts
    960
    Mentioned
    21 Post(s)
    Quoted
    504 Post(s)

    Default

    Here is a very simple procedure to use SPS walking.
    Code:
    Procedure WalkToBank;
    var
    myPath:TPointArray;
    begin
     SPS_Setup(RUNESCAPE_SURFACE,['8_9','8_10']);//SPS Areas
     myPath := [Point(3511, 3967), Point(3483, 3968), Point(3450, 3975), Point(3416, 3995), Point(3416, 3995), Point(3241, 4094)];//Replace these points with your own.
      SPS_WalkPath(myPath);
    end;

  5. #5
    Join Date
    Dec 2011
    Location
    East Coast, USA
    Posts
    4,231
    Mentioned
    112 Post(s)
    Quoted
    1869 Post(s)

    Default

    Sorry, but what you have in your first post is a pile of rubbish.
    Not trying to be rude but...I don't see how one could possibly get it into one's head to write something like that.

    Watch YoHoJo's tutorials for complete beginners, they'll help you more than a forum post could.
    GitLab projects | Simba 1.4 | Find me on IRC or Discord | ScapeRune scripts | Come play bot ScapeRune!

    <BenLand100> we're just in the transitional phase where society reclassifies guns as Badâ„¢ before everyone gets laser pistols

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
  •