Results 1 to 6 of 6

Thread: Progress Report Procedure Help | Canvas

  1. #1
    Join Date
    Jan 2012
    Posts
    713
    Mentioned
    3 Post(s)
    Quoted
    9 Post(s)

    Default Progress Report Procedure Help | Canvas

    1)I have a few scripts I am looking to release but I could not find any Progress Report Tutorials in the "Tutorial Island" and I'm looking for a little guidance as i don't feel my scripts are complete yet as i only have a very basic progy procedure that doesnt show XP/H rates|Profits etc.

    2)Is there any free programs out there that have the canvas option for creating custom SPS bit maps, one of the last parts in my air orb script and I couldn't find anything else besides Adobe Photoshop.

    Thanks.

  2. #2
    Join Date
    Jan 2012
    Location
    Calgary, AB, Canada
    Posts
    1,819
    Mentioned
    5 Post(s)
    Quoted
    120 Post(s)

    Default

    Usually you can just use Inc();<--- increases the integer in there by on or IncEx(Item as a integer, Amount to increase by);

    Example:

    Simba Code:
    procedure CountLoot;
    var
     Hides: Integer
    begin
     If InvFull then
     IncEx(Hides, 28);
    end;
    Current Project: Retired

  3. #3
    Join Date
    Jan 2012
    Posts
    713
    Mentioned
    3 Post(s)
    Quoted
    9 Post(s)

    Default

    Quote Originally Posted by Gucci View Post
    Usually you can just use Inc();<--- increases the integer in there by on or IncEx(Item as a integer, Amount to increase by);

    Example:

    Simba Code:
    procedure CountLoot;
    var
     Hides: Integer
    begin
     If InvFull then
     IncEx(Hides, 28);
    end;
    What about a script that creates a different amount of items each use, right now I'm trying to figure out how to count Molten Glass which has 30% chance of making a duplicated. EX: Each load is 1 cast > each load has a chance of 14-21 say molten glass, some loads its 18, others 17, 16, 15, and so on.

    Im Guessing it would need to be a DTM function to count? Totally clueless on the proggy i might just skip it for now until i can get someone to help a little bit over skype
    Last edited by Google; 03-29-2012 at 05:43 AM.

  4. #4
    Join Date
    Jan 2012
    Location
    Calgary, AB, Canada
    Posts
    1,819
    Mentioned
    5 Post(s)
    Quoted
    120 Post(s)

    Default

    Well for that maybe try:

    Simba Code:
    Procedure CountGlass;
    var
     Glass, i: Integer;
    begin

    for i: 1 to 28 do

     begin
      MMouse(x, y, 2, 2);
      If IsUpText('lass') then
      Inc(Glass):
     end;
    end;
    Current Project: Retired

  5. #5
    Join Date
    Feb 2012
    Location
    Somewhere, over the rainbow...
    Posts
    2,272
    Mentioned
    3 Post(s)
    Quoted
    45 Post(s)

  6. #6
    Join Date
    Jan 2012
    Posts
    713
    Mentioned
    3 Post(s)
    Quoted
    9 Post(s)

    Default

    Quote Originally Posted by abu_jwka View Post
    I'm overtired I must of read over that when I was checking. Thank you for the link though.

    > Anyone have any input on the canvas for creating custom SPS maps or is it not even needed?

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
  •