can someone please post the easiest proggy to make as i need one to release my script just like to say ore mined and xp a hour?
can someone please post the easiest proggy to make as i need one to release my script just like to say ore mined and xp a hour?
at the end of your mining procedure put
inc(loads);
or
incEx(ores,28);
Of course you need to name variables and then have a Proggy procedure
but Abu_Jwka has a phenomenal tutorial on making proggies- Look it up!
There are atleast 2 guides I know of that will teach you how to do just that.
Currently: Working on Defending&Attacking in my Castle-Wars ScriptProject Rebuild: 90M/170M
Heres the proggy for my alcher
Simba Code:procedure ProgressReport(var startXP: integer);
var gain: integer;
begin
gain := GetXPBarTotal- startXP;
{$IFDEF DEBUG}
{$ENDIF}
writeln('////////DUDES_MAGIC_ALCHER\\\\\\\\');
writeln('TIME RAN: ' + TimeRunning);
writeln('XP GAIN: ' + IntToStr(gain));
writeln('XP/HR: ' + floatToStr(3600000 * 1.0 / GetTimeRunning * gain));
end;
This is a simple proggy report. You can change what it writes in to fit your needs
Be sure to put in your variables at the top of the script
Simba Code:var
startXP: integer;
There are currently 1 users browsing this thread. (0 members and 1 guests)