Log in

View Full Version : Submitting a script to SRL: Questions!



Queso
07-24-2008, 12:11 PM
Right, so I was browsing the site, and I decided to look at how you go about adding SRL Stats to your script by uploading it, and when looking at the form you have to fill out, it asks about "custom variables".

Would these "custom variables" be what you declare before all your procedures and functions are coded?

Also, if you update a script, do you have to re-submit it as another script, or is there a way of updating the current script that is uploaded (so you don't lose your hours of stats)?

sirlaughsalot
07-24-2008, 12:35 PM
Whenever you write a progress report it is based on increasing variables. For instance Procedure ProgressReport;
begin
ClearDebug;
Writeln('~~~~~~~~~~~~~~~~~~~~~~~~')
Writeln('||Script By Sirlaughsalot')
Writeln('||Birds Banked '+IntToStr(BirdsBanked))
Writeln('||'+IntToStr(Loads)+' Loads Done')
Writeln('||'+IntToStr(GPUsed)+' Gp used')
Writeln('|| Ran For '+TimeRunning)
Writeln('~~~~~~~~~~~~~~~~~~~~~~~~')
Writeln('')
Writeln('~~~~~~~~~~~~~~~~~~~~~~~~')
Writeln('~Post this or be EATEN!~')
Writeln('~~~~~~~~~~~~~~~~~~~~~~~~')
SRLRandomsReport;
end; That is my bird buyer progress report and in each of the procedures where i buy and deposit birds i increase the variables. The variables that you use in your progress report, are the same that you use for "custom variables"