Results 1 to 18 of 18

Thread: my first script--need help!

  1. #1
    Join Date
    Nov 2006
    Posts
    117
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    my first script--need help!

    Well my problem is pretty much the same as mod mopars but i cant understand that thread because his script is way ore complicated then mine.
    well i did an autoralker using beb's tutorial and i did the basics and learnt something
    it types my message into the scar debug box how do i egt it into the runescape window
    abd i also dont knoe how to srlerize my script could someone show me step by step and explain it please i am really keen on scripting

    heres my basic script

    SCAR Code:
    program script;

    const
    Message1='Hello world!';

    procedure hello;
    begin
    wait(2000)
    Writeln(message1);
    end;

    begin
    repeat
    hello;
    until(false)
    End.
    im back----took a long break away but im back and im gonna get into scripting

  2. #2
    Join Date
    Nov 2006
    Location
    Belgium
    Posts
    110
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Change all the Writeln thingies into TypeSend

  3. #3
    Join Date
    Nov 2006
    Posts
    117
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    program script;

    const
    Message1='Hello world!';

    procedure hello;
    begin
    wait(2000)
    typesend(message1);
    end;

    begin
    repeat
    hello;
    until(false)
    End.



    like that?
    im back----took a long break away but im back and im gonna get into scripting

  4. #4
    Join Date
    Oct 2006
    Location
    England
    Posts
    154
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    but you need to add this
    PHP Code:
    {.include SRL/SR>scar
    under Program Script;

  5. #5
    Join Date
    Nov 2006
    Posts
    117
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    wat does that do?
    im back----took a long break away but im back and im gonna get into scripting

  6. #6
    Join Date
    Nov 2006
    Location
    Belgium
    Posts
    110
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Oh yea, forgot, sorry

    It activates SRL, so you kan use the TypeSend function

    ~Have to go now, be back tommorow~

  7. #7
    Join Date
    Nov 2006
    Posts
    117
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    wat does it do?
    im back----took a long break away but im back and im gonna get into scripting

  8. #8
    Join Date
    Oct 2006
    Location
    England
    Posts
    154
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Sorry my keyboard went weids its meant to be:
    PHP Code:
    {.include SRL/SRL.scar
    and that will elt you use the TypeSend procedure.

  9. #9
    Join Date
    Nov 2006
    Posts
    117
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    thanks for everything but like i said what esactly does it do?
    im back----took a long break away but im back and im gonna get into scripting

  10. #10
    Join Date
    Nov 2006
    Posts
    117
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    ok this is how iv got it

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

    const
    Message1='Hello world!';

    procedure hello;
    begin
    wait(2000)
    typesend(message1);
    end;

    begin
    repeat
    hello;
    until(false)
    End.

    it keeps sayin that i dont hav srl/scar
    and it also says typesend is an unknown identifier
    im back----took a long break away but im back and im gonna get into scripting

  11. #11
    Join Date
    Oct 2006
    Location
    England
    Posts
    154
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    It bascily loads the SRL include and let you use all the procedures and funtions insidee it.

  12. #12
    Join Date
    Nov 2006
    Posts
    117
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    hmmm now why does it say 'typesend' is an unknown identifier
    and it also says that srl/srl.scar does not exist
    im back----took a long break away but im back and im gonna get into scripting

  13. #13
    Join Date
    Nov 2006
    Posts
    117
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    can anyone help me please
    im back----took a long break away but im back and im gonna get into scripting

  14. #14
    Join Date
    Oct 2006
    Location
    England
    Posts
    154
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    ypu need to downlaod SRL

  15. #15
    Join Date
    Nov 2006
    Posts
    117
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    i downloaded srl n scar already installed form this site
    http://www.box.net/public/xozkcz5j3d
    im back----took a long break away but im back and im gonna get into scripting

  16. #16
    Join Date
    Nov 2006
    Posts
    117
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    is that the newest one? if not could you post the link to an already installed srl to scar coz im shit at those type of things lol
    im back----took a long break away but im back and im gonna get into scripting

  17. #17
    Join Date
    Nov 2006
    Posts
    117
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    ok my scar works its just that this unknown identifire typesend doesnt work could someone please help
    im back----took a long break away but im back and im gonna get into scripting

  18. #18
    Join Date
    Nov 2006
    Posts
    117
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    w00t i got it to work
    now i just need other people to tell me what i should add like that anti bans n shit like dat
    well here it is
    SCAR Code:
    program script;
    {.include SRL/SRL.scar}

    const
    Message1='Hello world!';

    procedure hello;
    begin
    wait(2000)
    typesend(message1);
    end;

    begin
    repeat
    hello;
    until(false)
    End.
    im back----took a long break away but im back and im gonna get into scripting

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
  •