Results 1 to 4 of 4

Thread: script add on [make your credits scroll]

  1. #1
    Join Date
    Apr 2008
    Location
    Northwest england
    Posts
    1,179
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default script add on [make your credits scroll]

    here it is

    save it as an include

    and call it via scrolly(numberoflines);
    Blank!

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

    Default

    Nice its possible to make scrolls

    \\Batnas
    My first script!!!
    http://www.srl-forums.com/forum/show...tupost&t=32388

    There are 10 kind of people in the word
    -Those who can the binary
    -And those who can't

    http://www.srl-forums.com/forum/diff...ls-t30279.html

    http://www.srl-forums.com/forum/tut-...radial+walking

  3. #3
    Join Date
    Jul 2007
    Location
    Norway.
    Posts
    1,938
    Mentioned
    3 Post(s)
    Quoted
    0 Post(s)

    Default

    Nice attempt, try to run this:

    SCAR Code:
    procedure ScrollDebug(Text: TStringArray; WaitBetweenLines, MaxLines: Integer);
    var
      Textz: Integer;
    begin
      ClearDebug;
      for Textz := 0 to High(Text) do
      begin
        if Textz >= MaxLines then DeleteDebugLine(0);
        WriteLn(Text[Textz]);
        Wait(WaitBetweenLines);
      end;
    end;
     
    begin
      ScrollDebug(['line 1', 'line 2', 'line 3', 'line 4', 'line 5', 'line 6',
      'line 7', 'line 8', 'line 9', 'line 10', 'line 11', 'line 12', 'line 13',
      'line 14', 'line 15', 'line 16', 'line 17'], RandomRange(200, 500), 5);
    end.


    I made it just for you

  4. #4
    Join Date
    Apr 2008
    Location
    Northwest england
    Posts
    1,179
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    nice only prob with that is i cant understand how it works could you show me
    ty

    Edit: Nvm i undestand it now needed to brush up my array knowledge =]
    Blank!

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. kotsz autofighter need some help u get credits
    By ShowerThoughts in forum OSR Help
    Replies: 15
    Last Post: 07-24-2007, 07:55 PM
  2. Horizontal Scroll bars...
    By Bam Bam in forum SRL Site Discussion
    Replies: 16
    Last Post: 04-29-2007, 08:28 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
  •