Results 1 to 8 of 8

Thread: Script?

  1. #1
    Join Date
    May 2007
    Location
    Some where fun.
    Posts
    2,891
    Mentioned
    1 Post(s)
    Quoted
    5 Post(s)

    Default Script?

    ive tryed making my first auto typer for runescape and heres the script, but it wont display it in runescape, what can i do? it only displays it in debug menu and yes i put cross button in runescape window.

    program script;
    const
    Message1='flash2:selling 15k willows 30 ea!cnr!!';
    procedure hello;
    begin
    wait(7000)
    Writeln(Message1);
    end;
    begin
    repeat
    hello;
    until(false)
    end.

  2. #2
    Join Date
    Mar 2007
    Posts
    937
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by cnr sport View Post
    ive tryed making my first auto typer for runescape and heres the script, but it wont display it in runescape, what can i do? it only displays it in debug menu and yes i put cross button in runescape window.

    program script;
    const
    Message1='flash2:selling 15k willows 30 ea!cnr!!';
    procedure hello;
    begin
    wait(7000)
    Writeln(Message1);
    end;
    begin
    repeat
    hello;
    until(false)
    end.
    LOL, you made it write in the debug box in Scar -.- It should have been:
    SCAR Code:
    program script;

    const
     Message1='flash2:selling 15k willows 30 ea!cnr!!';


    procedure hello;
    begin
      wait(7000)
      TypeSend(Message1);
    end;


    begin
    repeat
      hello;
    until(false)
    end.

    Writeln writes what you put in the ' ', into the debug box.

    Typesend writes what you put in the ' ', into something else/RuneScape, Typesend is also very undetectable and should always be used for writing procedures.

    -Ashur

    Exam period.

  3. #3
    Join Date
    May 2007
    Location
    Some where fun.
    Posts
    2,891
    Mentioned
    1 Post(s)
    Quoted
    5 Post(s)

    Default

    Quote Originally Posted by ashur2good View Post
    LOL, you made it write in the debug box in Scar -.- It should have been:
    SCAR Code:
    program script;

    const
     Message1='flash2:selling 15k willows 30 ea!cnr!!';


    procedure hello;
    begin
      wait(7000)
      TypeSend(Message1);
    end;


    begin
    repeat
      hello;
    until(false)
    end.

    Writeln writes what you put in the ' ', into the debug box.

    Typesend writes what you put in the ' ', into something else/RuneScape, Typesend is also very undetectable and should always be used for writing procedures.

    -Ashur

    lol thanks for all your help, my first script, trying to not be lazy.... and use other peoples lol , you are very nice, hopfully u can help me through other scripts.

  4. #4
    Join Date
    Mar 2007
    Posts
    937
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by cnr sport View Post
    lol thanks for all your help, my first script, trying to not be lazy.... and use other peoples lol , you are very nice, hopfully u can help me through other scripts.
    Sure, just give me a call and if i'm not busy I would be glad to help


    -Ashur
    Exam period.

  5. #5
    Join Date
    May 2007
    Location
    Some where fun.
    Posts
    2,891
    Mentioned
    1 Post(s)
    Quoted
    5 Post(s)

    Default

    Quote Originally Posted by ashur2good View Post
    Sure, just give me a call and if i'm not busy I would be glad to help


    -Ashur
    I put that in and it says un known identifier where i put it, i looked for it in the note pad app in my scar folder and i couldnt find it,

  6. #6
    Join Date
    Mar 2007
    Posts
    937
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    You forgot to add srl... Here is the fixed version:

    SCAR Code:
    program script;
    {.include SRL/SRL.scar}

    const
     Message1='flash2:selling 15k willows 30 ea!cnr!!';


    procedure hello;
    begin
      wait(7000)
      TypeSend(Message1);
    end;


    begin
    SetUpSRL;
    repeat
      hello;
    until(false)
    end.

    You to have
    SCAR Code:
    {.include SRL/SRL.scar}
    under the program name, and have SetUpSRL; in you're main loop.

    Hope that helped

    -Ashur
    Exam period.

  7. #7
    Join Date
    May 2007
    Location
    Some where fun.
    Posts
    2,891
    Mentioned
    1 Post(s)
    Quoted
    5 Post(s)

    Default

    Quote Originally Posted by ashur2good View Post
    You forgot to add srl... Here is the fixed version:

    SCAR Code:
    program script;
    {.include SRL/SRL.scar}

    const
     Message1='flash2:selling 15k willows 30 ea!cnr!!';


    procedure hello;
    begin
      wait(7000)
      TypeSend(Message1);
    end;


    begin
    SetUpSRL;
    repeat
      hello;
    until(false)
    end.

    You to have
    SCAR Code:
    {.include SRL/SRL.scar}
    under the program name, and have SetUpSRL; in you're main loop.

    Hope that helped

    -Ashur
    Youve made my day

  8. #8
    Join Date
    Mar 2007
    Posts
    937
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by cnr sport View Post
    Youve made my day

    Np, i'm just trying to help


    -Ashur
    Exam period.

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
  •