IntToStr does accept Int64.
IntToStr does accept Int64.
I got the bass dll error.
~Hermen
Oh sorry, misread it. I'm going to try something, hold on.
Edit: I tried a buffer...doesn't work...
Last edited by Da 0wner; 07-16-2009 at 01:08 AM.
That stuff has been there for a while...
thanks alot freddy, had a few problems at first but then i found a very good "how to obtain scar 3.21" tutorial and im all good. just srl now...
your the bomb!
http://i57.photobucket.com/albums/g2...rton04/1-2.png
SELL AUTO'D ITEMS AT MID - MAX!!!
Hey Freddy, is it possible to add in support for recursion, or is that just something the current script engine can't handle?
Erm, i'm pretty sure it does support recursion if it's what i think it is..
BTW, Freddy1990: http://en.wikipedia.org/wiki/Recursi...puter_science)
You may contact me with any concerns you have.
Are you a victim of harassment? Please notify me or any other staff member.
| SRL Community Rules | SRL Live Help & Chat | Setting up Simba | F.A.Q's |
-ignore this-
Last edited by senrath; 07-16-2009 at 11:32 AM.
It does allow for recursion!!
SCAR Code:function RecursionTest(I: Integer): Integer;
begin
if (I < 1) then
begin
Result := I;
Exit;
end;
Writeln(I);
Result := RecursionTest(I - 1);
end;
begin
RecursionTest(10);
end.
~NS
Ah, whoops. I forgot to put in an exit statement. Silly me. I'm much more used to working with Java than SCAR.
You may contact me with any concerns you have.
Are you a victim of harassment? Please notify me or any other staff member.
| SRL Community Rules | SRL Live Help & Chat | Setting up Simba | F.A.Q's |
lol yes, I think thats already been in SCAR for a very long time. QuickSort's algorithm uses recursion.
~NS
You may contact me with any concerns you have.
Are you a victim of harassment? Please notify me or any other staff member.
| SRL Community Rules | SRL Live Help & Chat | Setting up Simba | F.A.Q's |
What does fixscar.exe do? is it for people with the .dll errors?
Yeah, it downloads the missing DLLs.
Ce ne sont que des gueux
Also, possibly, could you please add in capablities in SCAR? Or is that just not possible?
e.g:scar Code:function IsIn(s: String): Boolean;
begin
Result := s in ['A'..'z'];
end;
![]()
You may contact me with any concerns you have.
Are you a victim of harassment? Please notify me or any other staff member.
| SRL Community Rules | SRL Live Help & Chat | Setting up Simba | F.A.Q's |
There are currently 1 users browsing this thread. (0 members and 1 guests)