Page 24 of 34 FirstFirst ... 142223242526 ... LastLast
Results 576 to 600 of 827

Thread: AeroLib Include

  1. #576
    Join Date
    Aug 2013
    Posts
    82
    Mentioned
    0 Post(s)
    Quoted
    35 Post(s)

    Default

    I've been having some trouble with getStoreAmount in the Item file. I am using a bitmap to find the item, and then call getStoreAmount but it rarely returns the correct value.

    Here is what I am using now, a custom function.
    Simba Code:
    function getStoreAmount(x1, y1, x2, y2 : integer) : Integer;
    var
      click : Integer;
      S     : String;

    begin
      S := (GetTextAtEx(x1, y1, x2, y2, 0, 3, 2, 65535, 0, 'StatChars07'));
      case Lowercase(S) of
        '':
          result := 1;
        '0':
          result := 0;
        '~':
        begin
          writeln('no amount found, terminating script');
          TerminateScript;
        end;
      else
        result := StrToInt(S);
      end;
    end;
    If any of you want to use this feel free to.

    I would also like to ask if there is a better way to write this function then please PM it to me.

    Perhaps I am not using Flight's function getStoreAmount properly either, if it works for others I'd like to hear that as well.

  2. #577
    Join Date
    Jul 2016
    Posts
    156
    Mentioned
    2 Post(s)
    Quoted
    81 Post(s)

    Default

    I am going to be using AeroLib very soon. Hopefully the instructions are still valid.

  3. #578
    Join Date
    Sep 2016
    Posts
    11
    Mentioned
    0 Post(s)
    Quoted
    3 Post(s)

    Default

    Idk I'm just dumb, but I can't even get it to finish the test.

    Exception in Script: Unable to find file 'AeroLib/AeroLib.Simba' used from ''\


    Edit: Nvm I am dumb, i got it running
    Last edited by DisneyMadeMeDoIt; 09-07-2016 at 06:48 AM.

  4. #579
    Join Date
    Jun 2013
    Location
    Scranton
    Posts
    496
    Mentioned
    5 Post(s)
    Quoted
    220 Post(s)

    Default

    Quote Originally Posted by Athylus View Post
    I've been having some trouble with getStoreAmount in the Item file. I am using a bitmap to find the item, and then call getStoreAmount but it rarely returns the correct value.

    Here is what I am using now, a custom function.
    Simba Code:
    function getStoreAmount(x1, y1, x2, y2 : integer) : Integer;
    var
      click : Integer;
      S     : String;

    begin
      S := (GetTextAtEx(x1, y1, x2, y2, 0, 3, 2, 65535, 0, 'StatChars07'));
      case Lowercase(S) of
        '':
          result := 1;
        '0':
          result := 0;
        '~':
        begin
          writeln('no amount found, terminating script');
          TerminateScript;
        end;
      else
        result := StrToInt(S);
      end;
    end;
    If any of you want to use this feel free to.

    I would also like to ask if there is a better way to write this function then please PM it to me.

    Perhaps I am not using Flight's function getStoreAmount properly either, if it works for others I'd like to hear that as well.
    I've been using getItemAmount() on store items and it seems to work fine. I am using coordinate with an offset of 5 though, not a bitmap

  5. #580
    Join Date
    Sep 2016
    Posts
    1
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    Hey, I was wondering where the AND_TPA dll is? I've found bg5's thread (and I'd post there except the last post is from 2012 and I don't want to necro it) but there's only a link to a pastebin with some pascal code. Am I supposed to compile this? I don't see any actual download links on the thread, and multiple forum searches have revealed nothing.

  6. #581
    Join Date
    Jun 2013
    Location
    Scranton
    Posts
    496
    Mentioned
    5 Post(s)
    Quoted
    220 Post(s)

    Default

    Quote Originally Posted by flamingelite View Post
    Hey, I was wondering where the AND_TPA dll is? I've found bg5's thread (and I'd post there except the last post is from 2012 and I don't want to necro it) but there's only a link to a pastebin with some pascal code. Am I supposed to compile this? I don't see any actual download links on the thread, and multiple forum searches have revealed nothing.
    AND_TPA is a plugin, the downloads are hyperlinks in Flight's post

  7. #582
    Join Date
    Sep 2016
    Posts
    6
    Mentioned
    0 Post(s)
    Quoted
    4 Post(s)

    Default

    The plugin download link is not working for me.

  8. #583
    Join Date
    Jan 2012
    Location
    Sydney, Australia
    Posts
    877
    Mentioned
    12 Post(s)
    Quoted
    368 Post(s)

  9. #584
    Join Date
    May 2015
    Posts
    38
    Mentioned
    0 Post(s)
    Quoted
    15 Post(s)

    Default

    Quote Originally Posted by mokre05 View Post
    The plugin download link is not working for me.
    It is up and working now for me

  10. #585
    Join Date
    Sep 2016
    Posts
    6
    Mentioned
    0 Post(s)
    Quoted
    4 Post(s)

    Default

    Still down for me :/

  11. #586
    Join Date
    May 2015
    Posts
    38
    Mentioned
    0 Post(s)
    Quoted
    15 Post(s)

    Default

    Quote Originally Posted by mokre05 View Post
    Still down for me :/
    I can send the include to you via another method if you would like

  12. #587
    Join Date
    Sep 2016
    Posts
    6
    Mentioned
    0 Post(s)
    Quoted
    4 Post(s)

    Default

    Yeah I would appreciate that thanks!

  13. #588
    Join Date
    May 2015
    Posts
    38
    Mentioned
    0 Post(s)
    Quoted
    15 Post(s)

    Default

    Quote Originally Posted by mokre05 View Post
    Yeah I would appreciate that thanks!
    http://s000.tinyupload.com/index.php...87388693157647 (mods if im not allowed to do this let me know)

  14. #589
    Join Date
    Sep 2016
    Posts
    6
    Mentioned
    0 Post(s)
    Quoted
    4 Post(s)

    Default

    It's not the AeroLib I need. I need the plugins.

  15. #590
    Join Date
    Sep 2016
    Posts
    6
    Mentioned
    0 Post(s)
    Quoted
    4 Post(s)

    Default

    The plugin link is broken. Could someone provide a new link? When I click download nothing happens also on the bottom it says that the file size is 0 kb so it is most likely outdated and can no longer be downloaded from there.

  16. #591
    Join Date
    Aug 2016
    Location
    Kentucky
    Posts
    254
    Mentioned
    3 Post(s)
    Quoted
    96 Post(s)

    Default

    Quote Originally Posted by mokre05 View Post
    The plugin link is broken. Could someone provide a new link? When I click download nothing happens also on the bottom it says that the file size is 0 kb so it is most likely outdated and can no longer be downloaded from there.
    This will work until it's back up.
    http://www.megafileupload.com/7x3p/AeroLib_plugins.zip

    Edit*
    Chrome is blocking it saying it's malicious. This is the original file, so I'm not sure what's going on. Maybe there servers detected a false-positive, and deleted the file form the first link.
    The issue seems to stem from the RSText.dll file with a 25/55 detection ratio (Which I'm sure is a false-positive)
    Either way there is the link, you don't have to trust me, but it's a copy I had in my downloads from when I downloaded it the first time.
    Last edited by Aspect; 09-14-2016 at 07:50 PM.

  17. #592
    Join Date
    Sep 2016
    Posts
    6
    Mentioned
    0 Post(s)
    Quoted
    4 Post(s)

    Default

    Thank you! I really appreciate that you took your time to reupload this for me.

  18. #593
    Join Date
    Apr 2016
    Posts
    10
    Mentioned
    0 Post(s)
    Quoted
    6 Post(s)

    Default

    when im trying to download the plugins its twlling me the file size in 0kb and i cant extract it? somone help?

  19. #594
    Join Date
    Nov 2014
    Posts
    7
    Mentioned
    0 Post(s)
    Quoted
    3 Post(s)

    Default

    Plugins? link? all bad links?????

  20. #595
    Join Date
    Sep 2016
    Posts
    15
    Mentioned
    0 Post(s)
    Quoted
    7 Post(s)

    Default

    hey when im trying to download the Plugins only fine it seems to be down anyway this can be fixed?

  21. #596
    Join Date
    May 2012
    Location
    Lithuania-Italy
    Posts
    32
    Mentioned
    0 Post(s)
    Quoted
    17 Post(s)

    Default

    Quote Originally Posted by Nxtahata View Post
    Plugins? link? all bad links?????
    You could check the previous posts... http://www.megafileupload.com/7x3p/AeroLib_plugins.zip

  22. #597
    Join Date
    Aug 2013
    Posts
    82
    Mentioned
    0 Post(s)
    Quoted
    35 Post(s)

    Default

    Quote Originally Posted by jstemper View Post
    I've been using getItemAmount() on store items and it seems to work fine. I am using coordinate with an offset of 5 though, not a bitmap
    Cool, maybe I was doing it wrong. Thanks for sharing that.

    I don't know if anyone else gets this, but I often get an access violation when use setCompass procedure. I fixed that by using the keydown button. Not sure what causes this access violation, it doesn't really give me much more information than that.

  23. #598
    Join Date
    Jul 2013
    Posts
    4
    Mentioned
    0 Post(s)
    Quoted
    2 Post(s)

    Default

    anyslotactivated() returns true if you have 100k-10m of an item because of the white text at the top of the item

  24. #599
    Join Date
    Dec 2011
    Posts
    23
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    Quote Originally Posted by impitup View Post
    anyslotactivated() returns true if you have 100k-10m of an item because of the white text at the top of the item
    I can confirm this.



    Also doConversationEx() does not work for me with the following parameters:

    doConversationEx(['Yes', 'es'], true);
    doConversationEx(['No'], true);

    It will not click 'Yes' or 'No' to continue the chat.

  25. #600
    Join Date
    Oct 2016
    Posts
    1
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Followed all the install steps, getting Error: File "AeroLib/AeroLib.Simba" not found at line 5

    Can Someone help me out?
    Last edited by dikkegerrie; 11-12-2016 at 05:22 PM.

Page 24 of 34 FirstFirst ... 142223242526 ... LastLast

Thread Information

Users Browsing this Thread

There are currently 2 users browsing this thread. (0 members and 2 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
  •