Results 1 to 2 of 2

Thread: How do I get my uptext to work?

  1. #1
    Join Date
    Mar 2013
    Posts
    22
    Mentioned
    0 Post(s)
    Quoted
    5 Post(s)

    Default How do I get my uptext to work?

    I am trying to make a simple woodcutter. I have never made a script before and followed tutorials and guides to get where I am. I have tried looking and couldn't figure it out. This is what I have.
    This is for RSPS Soulsplit.

    program New;
    {$i srl/srl.simba}

    procedure ChopTree;
    var x, y: integer;
    begin
    LoadFont(SSFont, True);
    repeat
    if FindObj(x, y, 'een', 4690048, 15) then
    begin
    Mouse(x, y, 0, 0, False);
    ChooseOption('een');
    end;
    repeat
    wait(400+random(250));
    Until (InvFull);
    until(InvFull);
    end;

    begin
    SetUpSRL;
    ChopTree;
    end.

    I read that I needed to include my Fonts so I added [LoadFont(SSFont, True);].
    In my Font folder I have
    Fntn.png Fnte.png
    I got the letters from fntpic.png
    Is the script not reading the uptext? Is the untext wrong? Is the LoadFont(SSFont, True); not working?
    Right now all it does is hover over the trees and doesn't click them.
    Last edited by farkid; 04-28-2013 at 04:03 AM.

  2. #2
    Join Date
    May 2013
    Posts
    3
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Try this
    procedure ChopTree;
    var x, y: integer;
    begin
    repeat
    FindNormalRandoms;
    if FindObj(x, y, 'hop', 1785912, 35) then
    begin
    Mouse(x, y, 0, 0, false);
    ChooseOption('hop');
    end;
    repeat
    wait(400+random(250));
    AntiBan;
    Until not IsUpText('vergreen') or (InvFull);
    until(InvFull);
    end;
    its from a Guide, however it wont let me post links becouse rated to low :S.

    Its called: Script down your first rs tree!
    if you wish to find it yourself
    Last edited by emusion; 05-05-2013 at 05:40 PM.

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
  •