View Full Version : Flagchat.scar help
y0m0mma0123
06-06-2009, 12:37 PM
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.
:o:confused::o
Dark Arcana
06-06-2009, 12:40 PM
FlagChat.scar is already fixed in SRL #33.
Tniffoc
06-06-2009, 12:47 PM
What exactly is the problem? What do you mean by "like none of my scrips have bin working"?
Shuttleu
06-06-2009, 04:09 PM
just get srl rev# 33
~shut
y0m0mma0123
06-06-2009, 09:27 PM
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.
Dynamite
06-06-2009, 09:36 PM
To get dev rev a good guide is:
http://villavu.com/forum/showthread.php?p=571200#post571200
Hope this helps
T~M
Shuttleu
06-07-2009, 12:24 AM
To get dev rev a good guide is:
http://villavu.com/forum/showthread.php?p=571200#post571200
Hope this helps
T~M
i wonder why you recommend that guide :rolleyes:
~shut
y0m0mma0123
06-07-2009, 12:48 AM
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
y0m0mma0123
06-07-2009, 05:14 AM
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
Shuttleu
06-07-2009, 05:17 AM
that is reflection
not srl
look for another guide which tells you how to set up reflection
~shut
Zyt3x
06-07-2009, 05:38 AM
Try running Da 0wners DownloadReflection script, it will automaticly download the newest Dev Reflection :)
y0m0mma0123
06-07-2009, 11:51 AM
ok thanks i will try
y0m0mma0123
06-07-2009, 11:53 AM
where do i go or can u give me a link zyt3x?
Zyt3x
06-07-2009, 03:57 PM
http://www.villavu.com/forum/showthread.php?t=45824
Heres the script I use:
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.
y0m0mma0123
06-08-2009, 01:11 AM
i cant just copy and paste it cas it all ends up on one line how do i get it on scar
Powered by vBulletin® Version 4.2.1 Copyright © 2024 vBulletin Solutions, Inc. All rights reserved.