Results 1 to 5 of 5

Thread: My First Ever Script! Plz Review

  1. #1
    Join Date
    Oct 2008
    Posts
    2
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    My First Ever Script! Plz Review

    Hi Ppl as of this is my first script i thought i should post it here... Subject Specific... this is it its a typer ... plz review and post comments

    Here tis...

    var
    I : Integer;
    Text : TStringArray;

    begin
    Text := 'put text in here',
    'your text',
    'your text here',
    'final blah'];
    for I := 0 to High(Text) do
    begin
    TypeSend(Text[i]);
    Wait(500 + Random(400));
    end;
    end.

    Sorry if i'm posting the format wrong plz correct me if i am.

    Thankyou Very Much

    Pkrange1155 - Rue

  2. #2
    Join Date
    Feb 2007
    Location
    Alberta,Canada
    Posts
    2,358
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    yeah put scar tags around, makes it easier to read

    it looks pretty good, i liek how you used an array in your first script, impressive. Congrads on learning to script, hope to see more from you
    “Ignorance, the root and the stem of every evil.”

  3. #3
    Join Date
    Jan 2007
    Posts
    85
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Here you go matey:

    SCAR Code:
    var
      I : Integer;
      Text : TStringArray;

    begin
      Text :=['put text in here',
              'your text',
              'your text here',
              'final blah'];
      for I := 0 to High(Text) do
        begin
          TypeSend(Text[i]);
          Wait(500 + Random(400));
        end;
    end.

    The use of the array was quite nice. Keep it up.

  4. #4
    Join Date
    Sep 2008
    Location
    Adelaide, South Aust
    Posts
    47
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Nicely done pkrange111. Very impressive for a first!! Keep up the good work and make sure when u post your script that u use the SCAR tags as suggested.

  5. #5
    Join Date
    Sep 2008
    Location
    Aussie mate
    Posts
    411
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Nice try for first script keep reading tuts and remember to put [.SCAR][/SCAR] tags around your work or just upload it.
    IM BACK!!!!!!!!!!!!!!!!!

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. My First Ever Script! Plz Review
    By Pkrange1155 in forum First Scripts
    Replies: 7
    Last Post: 10-30-2008, 10:21 PM
  2. Review on My First Script [WillowChopper]
    By Claymore in forum OSR Help
    Replies: 2
    Last Post: 07-08-2008, 02:14 AM
  3. Review My Script Idea
    By mat_de_b in forum News and General
    Replies: 14
    Last Post: 09-10-2007, 08:48 PM
  4. Replies: 1
    Last Post: 02-14-2007, 06:08 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •