Results 1 to 3 of 3

Thread: I cant count :o

  1. #1
    Join Date
    Jun 2007
    Posts
    71
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default I cant count :o

    Hello...I am making a script atm. and ill like to get it to "count"how long it is , example how many times it has moved the mouse out of 100..
    I was trying to do it at this way but didt workt
    Can somone tell me how to get it to work
    Thanks A lot!


    SCAR Code:
    program Im_A_Noob_Who_Cant_Count;
    Var
    I: Integer;
      procedure count;
        begin
        for i := 1 to 100 do
            begin
            movemouse(100,100)
            wait(10)
            movemouse(50,50)
            writeln(I)
        end;
    begin
    end.

  2. #2
    Join Date
    Oct 2006
    Location
    finland, helsinki
    Posts
    2,501
    Mentioned
    3 Post(s)
    Quoted
    2 Post(s)

    Default

    SCAR Code:
    program Im_A_Noob_Who_Cant_Count;

    Var
      I: Integer;

    procedure count;
    begin
      for i := 1 to 100 do
      begin
        movemouse(100,100)
        wait(10)
        movemouse(50,50)
        writeln(IntToStr(I))
      end;
    end;

    begin
      count;
    end.

    Code:
    • Narcle: I recall Jukka releasing a bunch of scripts like this before... Its how he rolls I think. rofl
    • Solarwind: Dude, you are like... t3h s3x.
    • Hy71194: JuKKa you're a machine! You released 3 scripts in 10 minutes! :O
    • benjaa: woah.... Jukka is the man Guildminer pwns all
    • NaumanAkhlaQ: And JuKKa Is my Her0!

  3. #3
    Join Date
    Jun 2007
    Posts
    71
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Thanks alot man

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. K Wtf!!!? POST COUNT
    By pinapple--> in forum SRL Site Discussion
    Replies: 13
    Last Post: 10-01-2008, 11:44 PM
  2. The Post Count
    By Torrent of Flame in forum SRL Site Discussion
    Replies: 59
    Last Post: 03-25-2008, 02:13 AM
  3. Count question.
    By Dangerous Garden Tools in forum OSR Help
    Replies: 1
    Last Post: 01-03-2008, 01:27 AM
  4. Count DTM
    By marre in forum OSR Help
    Replies: 6
    Last Post: 11-29-2007, 02:20 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
  •