Results 1 to 15 of 15

Thread: Flagchat.scar help

  1. #1
    Join Date
    May 2008
    Posts
    103
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default Flagchat.scar help

    ok i need some help like none of my scrips have bin working and a bunch of ppl tell me to get or check my flagchat.scar or Dev something but any way i was just wondering if some one could help cas i have gone to

    http://www.villavu.com/forum/showthread.php?t=45818

    and i get real confused on what i am doing and i went to another link witch i cant remember but it did not help so if someone could walk me througt it, it would help a bunch

    ohh and i have srl v4 #33 and scar 3.20d just saying so ya thanks.

  2. #2
    Join Date
    Feb 2009
    Location
    Philipines
    Posts
    600
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    FlagChat.scar is already fixed in SRL #33.

  3. #3
    Join Date
    Mar 2008
    Location
    ::1
    Posts
    915
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    What exactly is the problem? What do you mean by "like none of my scrips have bin working"?

    Records and Types Save Code (and make you look better)
    Quote Originally Posted by Wizzup? View Post
    Is it possible to make Runescape a 2D game with this?... That would greatly simplify... Just about anything.

  4. #4
    Join Date
    Aug 2007
    Location
    in a random little world
    Posts
    5,778
    Mentioned
    0 Post(s)
    Quoted
    7 Post(s)

  5. #5
    Join Date
    May 2008
    Posts
    103
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    well ok when i use almost all of my scripts i start them and then it gose to the mini map and stays in the same place and starts clicking and dosnt stop or it will start doing the right thing but it will still do the click way past every thing.

  6. #6
    Join Date
    May 2007
    Location
    UK
    Posts
    4,007
    Mentioned
    1 Post(s)
    Quoted
    12 Post(s)

    Default

    To get dev rev a good guide is:
    http://villavu.com/forum/showthread....200#post571200
    Hope this helps
    T~M

  7. #7
    Join Date
    Aug 2007
    Location
    in a random little world
    Posts
    5,778
    Mentioned
    0 Post(s)
    Quoted
    7 Post(s)

  8. #8
    Join Date
    May 2008
    Posts
    103
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    hey i got a question i did the first one the check box and the stuff is in the srl folder but now i cant get it to say check box to put the second link in can u help me

  9. #9
    Join Date
    May 2008
    Posts
    103
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    ok i think i jacked something up cas i tryed to run a script and i keep getting this error

    Include file C:\Program Files\SCAR 3.20\includes\srl\srl\reflection\reflection.scar does not exist.
    Failed when compiling

  10. #10
    Join Date
    Aug 2007
    Location
    in a random little world
    Posts
    5,778
    Mentioned
    0 Post(s)
    Quoted
    7 Post(s)

  11. #11
    Join Date
    Jan 2007
    Posts
    8,876
    Mentioned
    123 Post(s)
    Quoted
    327 Post(s)

    Default

    Try running Da 0wners DownloadReflection script, it will automaticly download the newest Dev Reflection

  12. #12
    Join Date
    May 2008
    Posts
    103
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    ok thanks i will try

  13. #13
    Join Date
    May 2008
    Posts
    103
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    where do i go or can u give me a link zyt3x?

  14. #14
    Join Date
    Jan 2007
    Posts
    8,876
    Mentioned
    123 Post(s)
    Quoted
    327 Post(s)

    Default

    http://www.villavu.com/forum/showthread.php?t=45824

    Heres the script I use:
    SCAR Code:
    function DownloadRepository(RepositoryURL, InstallPath : string; Overwrite : boolean) : boolean;
    var
      s : string;
      Files, Folders, Contents : TStringArray;
      i, h, z : integer;
      FileNum : integer;
    begin
      SetArrayLength(Folders, 1);
      Folders[0] := RepositoryURL;
      Writeln('Obtaining file list...');
      repeat
        s := GetPage(Folders[i]);
        s := Replace(s, 'a href="../">', '');
        repeat
          h := High(Files);
          SetArrayLength(Files, h + 2);
          h := h + 1;
          Files[h] := Folders[i] + Between('href="', '">', s);
          s := Replace(s, 'href="' + Between('href="', '">', s) + '">', '');
          if pos('http://', Copy(Files[h], 8, Length(Files[h]))) > 0 then
            break;
          if EndsWith('/', Files[h]) then
          begin
            h := high(Folders);
            SetArrayLength(Folders, h + 2);
            h := high(Folders);
            Files[high(files)] := Replace(Files[high(files)], RepositoryURL, '');
            Folders[h] := RepositoryURL + Files[high(files)];
            SetArrayLength(Files, GetArrayLength(Files) - 1);
          end;
        until(false);
        SetArrayLength(Files, GetArrayLength(Files) - 1);
        inc(i);
      until(i = high(Folders) + 1);
      h := high(Files);
      Writeln('Obtained file and folder list. There are ' + IntToStr(High(Folders)) + ' folders and ' + IntToStr(h + 1) + ' files.');
      Writeln('Downloading and installing files...');
      h := high(Files);
      SetArrayLength(Contents, h + 1);
      for i := 0 to h do
      begin
        if ((FileExists(InstallPath + Files[i])) and (not Overwrite)) then
          Continue;
        Contents[i] := GetPage(Files[i]);
        Files[i] := Replace(Files[i], RepositoryURL, '') ;
        Files[i] := Replace(Files[i], '/', '\');
        Files[i] := Replace(Files[i], '%20', ' ');
        writeln(InstallPath + Files[i]);
        FileNum := RewriteFile(InstallPath + Files[i], true);
        try
          WriteFileString(FileNum, Contents[i]);
        except
          Writeln('Failed installing file ' + Files[i] + '!');
        finally
          CloseFile(FileNum);
        end;
      end;
      wait(500);
      Writeln('Verifying all files and contents...');
      for i := 0 to h do
      begin
        if Length(Contents[i]) = 0 then
          Continue;
        if FileExists(InstallPath + Files[i]) then
        begin
          FileNum := OpenFile(InstallPath + Files[i], true);
          if FileSize(FileNum) <> Length(Contents[i]) then
          begin
            inc(z);
            Writeln(Files[i] + ' was not installed successfully.');
          end;
          CloseFile(FileNum);
        end else
        begin
          inc(z);
          Writeln(Files[i] + ' was not installed successfully.');
        end;
      end;
      if z <> 0 then
        Writeln(IntToStr(z) + ' file(s) were/was not installed successfully!')
      else
      begin
        Writeln('All files were installed successfully.');
        result := true;
      end;
    end;

    begin
      DownloadRepository('http://scardevreflection.googlecode.com/svn/trunk/', AppPath + 'Includes\SRL\SRL\Reflection\', True);
    end.

  15. #15
    Join Date
    May 2008
    Posts
    103
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    i cant just copy and paste it cas it all ends up on one line how do i get it on scar

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
  •