Results 1 to 5 of 5

Thread: [request] proggy report?

  1. #1
    Join Date
    Apr 2012
    Posts
    34
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default [request] proggy report?

    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?

  2. #2
    Join Date
    Feb 2012
    Location
    SRL Jail
    Posts
    1,319
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    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!

  3. #3
    Join Date
    Feb 2011
    Location
    Earth
    Posts
    1,784
    Mentioned
    1 Post(s)
    Quoted
    0 Post(s)

    Default

    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 Script
    Project Rebuild: 90M/170M

  4. #4
    Join Date
    Feb 2012
    Location
    SRL Jail
    Posts
    1,319
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by PatDuffy View Post
    There are atleast 2 guides I know of that will teach you how to do just that.
    I only know about Abu's.. and it was good.

  5. #5
    Join Date
    Jan 2012
    Posts
    319
    Mentioned
    0 Post(s)
    Quoted
    2 Post(s)

    Default

    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;
    -My Scripts-
    Dude'sFighters
    Dude'sBonfires
    Donations help with scripting Paypal!

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •