Results 1 to 3 of 3

Thread: FlashText

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

    Default FlashText

    Simple script I made, its just for fun, or making a nice sig

    SCAR Code:
    Function FlashText(TheText: string; totalflash:integer) : boolean;
    var
      Flashtimes : integer;
    begin
      repeat
        ClearDebug;
        Writeln('          '+TheText+'          ');
        wait(500);
        ClearDebug;
        wait(500);
        Flashtimes := Flashtimes +1
      Until(Flashtimes = totalflash)
    end;

    Makes a flashing Text in your Debug. Fill it in like:

    SCAR Code:
    Flashtext('Dumpin Owns!!!', 3);

    Dumpin owns = the text
    3 = the number of flashes

    easy!!!

    [22:20] <[-jesus-]> freddy, go uninstall yourself

  2. #2
    Join Date
    May 2007
    Location
    Netherlands, Amersfoort
    Posts
    2,701
    Mentioned
    1 Post(s)
    Quoted
    0 Post(s)

    Default

    lol. the first function that works!

    rofl.

    good job though.

    you learned something wich is good

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

    Default

    hehe ty, but this was a VEEEEERRRRRRRRYYYYYYYY simple function ;P I am going to try other later
    ty

    [22:20] <[-jesus-]> freddy, go uninstall yourself

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
  •