Fix 3.20, if 3.20 isn't working then we can't test and use scripts while 4 is being worked on, and I'm sure 4 will take longer since it's a complete re-write as apposed to a few fixes in an already written version.
Fix 3.20, if 3.20 isn't working then we can't test and use scripts while 4 is being worked on, and I'm sure 4 will take longer since it's a complete re-write as apposed to a few fixes in an already written version.
scar 4 but a fix for 3.20 would be nice
~Austin~
i say start on 4. since the fonts are gonna be switched back and we've been autoing on 3.20 for a while, we can wait a bit longer :P
<TViYH> i had a dream about you again awkwardsaw
Malachi 2:3
I think bugs in 3.20d are so minor that you should just start a new version from the very beginning.






i say 4
3.20 is working perfectly fine for me
~shut
All my scripts are held on Googlecode git, so if you ever see a problem, fork it and send me a pull request
If a script is grey, it doesn't work, if it's colour then it does!
My Tutorials:-
Everything you need to know about setting up Simba, SRL and Reflection!, How to sort out the MSVCR71.dll error
How to set up players for autoing with Simba, SRL/Simba Standards (with examples), Defines
Auto Updater and Git, Using a testing branch for git, Adding SRL Stats to your script
Creating your own font set for Simba, Guide to Cups, How to make 1.45M (RSGP) a day (not really my tut)
Download a image and set it as your Desktop Wallpaper in C#, How to make your first PHP file uploader
<Coh3n> Shuttleu, fuck I love you right now
I'd like a quickfix for 3.20 ( CountBitmap, FindTransparentBitmap ...).
For 4.0 I'd wish a Reverse Bitmap and Color Finding, Like the Normal one, but that it starts at the bottom right, with the same speed of the usual "FindColor,Bitmap".. That Would be totally amazing.
~caused
yea she did, I saw a link to the thread, but I heard on the forums today that they switched back to the originial fonts but not all the fonts work, they have small changes. I don't know for sure if it's true, just what I remember reading, I think that the fonts should be updated first though. And Rs_GetUpText like ZephyrsFury said.
For everyone that saying SCAR 4.0 might want to re-think..
They set the fonts back, but they still changed some..
Do you really want to go with a broken IsUpText(rs_GetUpText) function until he releases a new version?.
Edit:
Freddy, even tho SCAR 4 wins, I hope you use common sense and release a quick fix of SCAR 3.20...
Last edited by Naike; 07-11-2009 at 04:08 AM.
Plus, SCAR 4 will most likely not be bug free at first.
The best way to contact me is by email, which you can find on my website: http://wizzup.org
I also get email notifications of private messages, though.
Simba (on Twitter | Group on Villavu | Website | Stable/Unstable releases
Documentation | Source | Simba Bug Tracker on Github and Villavu )
My (Blog | Website)
I vote fix bugs, then SCAR 4![]()
Originally Posted by irc



How did you manage to add class support?! Also, will pre-initiated variables support records, like:And even more complex records, and arrays/arrays of records?SCAR Code:... :TPoint = (x: 3; y: 20);
i say fix the font bugs then go onto scar 4
Fix current issues, before making us wait months to use an unstable alternative.
Writing an SRL Member Application | [Updated] Pascal Scripting Statements
My GitHub
Progress Report:13:46 <@BenLand100> <SourceCode> @BenLand100: what you have just said shows you have serious physchological problems 13:46 <@BenLand100> HE GETS IT! 13:46 <@BenLand100> HE FINALLY GETS IT!!!!1
Scar 4, you can easily make your own function for count bitmap, really not that hard, or even get up text, which might take a little longer to achieve.

I was just wondering (too lazy to read the thread, sorry <3) if you would ever make it open source or have more people work on it.I'd like to talk to you about some stuff, too.
(SCAR 4 just because I'm sick of decimals)
It will be something more like this.
SCAR Code:struct Point{
int x = 5;
int y = 10;
}
Those will be initialized on struct creation, but you won't be able to add your custom initialization values for each struct created, unless freddy decides otherwise of course.
Question, will the classes be as cheap as the records, or will they be real classes that support methods and etc.
Also, I'm hoping new version will allow this.
SCAR Code:type trigger = record
actions:array of procedure;
end;
procedure addaction(trig:trigger; act:procedure);
begin
SetArrayLength(trig.actions, GetArrayLength(trig.actions)+1);
trig[High(trig.actions)] := act;
end;
Currently this doesn't compile because you get a type mismatch, and you have to bypass that doing this.
SCAR Code:type action = procedure();
type trigger = record
actions:array of action;
end;
procedure addaction(trig:trigger; act:action);
begin
SetArrayLength(trig.actions, GetArrayLength(trig.actions)+1);
trig[High(trig.actions)] := act;
end;
There are currently 1 users browsing this thread. (0 members and 1 guests)