Results 1 to 3 of 3

Thread: How do I get task repeated untill inventry is full?

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

    Default How do I get task repeated untill inventry is full?

    I've new to this as i've finally decided to play runescape again because of the old school

    Basically I've got the script to buy the item from the person.

    Code:
    begin
    SetupP07Include;
    repeat
    FindSilk;
    wait(550);
    Talking;
    until(false);
    
    end.
    is how my scirpt runs and it repeats its self over and over again but how would I do it to check inventry is full and to stop that task I know I've got to implement P07_CheckInv somewhere but not sure where and how? any guide on this would be great!

  2. #2
    Join Date
    Mar 2006
    Location
    Belgium
    Posts
    3,564
    Mentioned
    111 Post(s)
    Quoted
    1475 Post(s)

    Default

    Quote Originally Posted by Rs is Legacy View Post
    I've new to this as i've finally decided to play runescape again because of the old school

    Basically I've got the script to buy the item from the person.

    Code:
    begin
    SetupP07Include;
    repeat
    FindSilk;
    wait(550);
    Talking;
    until(false);
    
    end.
    is how my scirpt runs and it repeats its self over and over again but how would I do it to check inventry is full and to stop that task I know I've got to implement P07_CheckInv somewhere but not sure where and how? any guide on this would be great!

    Simba Code:
    begin
    SetupP07Include;
    repeat
    FindSilk;
    wait(550);
    Talking;
    until(Invfull); // here

    Creds to DannyRS for this wonderful sig!

  3. #3
    Join Date
    Dec 2011
    Posts
    7
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    Quote Originally Posted by Sjoekeloe View Post
    Simba Code:
    begin
    SetupP07Include;
    repeat
    FindSilk;
    wait(550);
    Talking;
    until(Invfull); // here
    WOW, So simply makes me feel stupid lol.

    Thankyou!

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
  •