Page 16 of 34 FirstFirst ... 6141516171826 ... LastLast
Results 376 to 400 of 827

Thread: AeroLib Include

  1. #376
    Join Date
    Aug 2007
    Location
    Colorado
    Posts
    7,421
    Mentioned
    268 Post(s)
    Quoted
    1442 Post(s)

    Default

    Quote Originally Posted by Kosovaa View Post
    Yes, several times today.
    Give this a try:
    http://s000.tinyupload.com/index.php...21492438470853

    Current projects:
    [ AeroGuardians (GotR minigame), Motherlode Miner, Blast furnace ]

    "I won't fall in your gravity. Open your eyes,
    you're the Earth and I'm the sky..."


  2. #377
    Join Date
    May 2012
    Posts
    108
    Mentioned
    3 Post(s)
    Quoted
    45 Post(s)

    Default

    Quote Originally Posted by Flight View Post
    I assume you both are using Reflection-based scripts? I don't understand how you're getting the error. It's caused by trying to load the 'ProSocks' plugin twice, once with AeroLib and again in the Reflection include, but the latest reflection update should have taken care of that. I myself am getting no errors from it. I just can't understand it. But for now what you can do is completely remove the part in the Reflection include that loads ProSocks.dll. To do this remove these 3 lines at line 77 in "Includes > Reflection > lib > misc > Misc.Simba":
    Simba Code:
    {$IFNDEF Aerolib}
      {$loadlib prosocks}
    {$ENDIF}

    That's the part that checks if we're using AeroLib or not, if so then it's assumed the ProSocks plugin is already loaded and won't try to load it again. But for some reason it's not doing this...
    Thanks for the fix, everything is working again. Also good to see the world switcher working again, will definitely implement this in a script.

  3. #378
    Join Date
    Jun 2015
    Posts
    9
    Mentioned
    0 Post(s)
    Quoted
    5 Post(s)

    Default

    unfortunately, it still doesn't work.

  4. #379
    Join Date
    Feb 2012
    Location
    Portugal
    Posts
    91
    Mentioned
    3 Post(s)
    Quoted
    41 Post(s)

    Default

    Are there any tutorials to start with this? Or we have to figure stuff out from our own? Im used to SRL-6

  5. #380
    Join Date
    Aug 2007
    Location
    Colorado
    Posts
    7,421
    Mentioned
    268 Post(s)
    Quoted
    1442 Post(s)

    Default

    Quote Originally Posted by PatriqDesigns View Post
    Are there any tutorials to start with this? Or we have to figure stuff out from our own? Im used to SRL-6
    This weekend I'll try putting aside some time to make some basic documentation and tutorials.

    Current projects:
    [ AeroGuardians (GotR minigame), Motherlode Miner, Blast furnace ]

    "I won't fall in your gravity. Open your eyes,
    you're the Earth and I'm the sky..."


  6. #381
    Join Date
    Aug 2007
    Posts
    539
    Mentioned
    20 Post(s)
    Quoted
    266 Post(s)

    Default

    Hey, so WorldMap.png is outdated as there is no GE in it (also no edgeville furnace), and also on Walker.Simba, setting TRSWalker.minRunEnergy to anything higher than 100 will always ignore it, I use; RSW.minRunEnergy := 999; because I don't want the walker handling my running (I want to walk the entire time). Also, walker clicks the unclickable area, bottem of the minimap.

    EDIT: It also appears that the new update changed the world list.

  7. #382
    Join Date
    Jan 2011
    Posts
    335
    Mentioned
    0 Post(s)
    Quoted
    23 Post(s)

    Default

    As soon as I updated to the newest version i'm getting spammed "access violation"
    If I see you autoing with level 3/default clothes/crap name I WILL report you. Auto Correctly.

  8. #383
    Join Date
    Feb 2012
    Location
    Norway
    Posts
    995
    Mentioned
    145 Post(s)
    Quoted
    596 Post(s)

    Default

    Quote Originally Posted by ineedbot View Post
    WorldMap.png is outdated as there is no GE in it
    The updated map is here: http://slackworld.net/downloads/rs07_world.png
    - The site is down from time to time, just try it again a lil' later if it's not accessable, ctrl+F5 is the map only loads partially.


    Quote Originally Posted by ineedbot View Post
    Also, walker clicks the unclickable area, bottem of the minimap.
    I have been made aware. I'll have that fixed in the next release.. Meanwhile you can add a fix yourself..:

    Navigate to `AeroLib > core > minimap > Walker > Walker.simba : line 208`
    Change where it says `66` to `60`.
    - hopefully enough, but you might have to decrease it a bit more than that.

    Keep in mind that the points (in your path) must be closer together then whatever that number is (or equal to it) (so 60 give a max distance of 60 pixels), so by decresing that number your path might need to be updated if you have large steps.


    Quote Originally Posted by ineedbot View Post
    TRSWalker.minRunEnergy to anything higher than 100 will always ignore it
    Expected behavior.
    Last edited by slacky; 07-11-2015 at 07:13 AM.
    !No priv. messages please

  9. #384
    Join Date
    Mar 2012
    Location
    San Diego
    Posts
    760
    Mentioned
    4 Post(s)
    Quoted
    91 Post(s)

    Default

    Hi, currently the World-select Screen has been changed due to the tournament worlds being released, which messed up world switching just a bit since worlds were added and removed, resulting in worlds being placed in different spots within the selection screen. It would sometimes choose F2P worlds even though it was set to choose P2P worlds only. I've done my best to update it to the current World-select Screen, excuse the sloppiness
    (Alternatively, you could download the edited files in the attachments)

    Location of Files: C:\Simba\Includes\AeroLib\entities\player
    Changes to WorldHandler.simba: rsWorldToMS, SelectWorld, RandomWorld
    Changes to Login.simba: TIntegerArrays for MemWorlds and F2PWorlds

    Changes to WorldHandler.simba

    rsWorldToMS (Changed a few Indexes)
    New code

    Simba Code:
    function rsWorldToMS(Index: Integer): TPoint;
    begin
      if inRange(Index, 301, 319) then
        Result.X := 205
      else if inRange(Index, 320, 342) then
        Result.X := 300
      else if inRange(Index, 343, 368) then
        Result.X := 392
      else if inRange(Index, 369, 394) then
        Result.X := 485;

      if ((Index=301)or(Index=320)or(Index=343)or(Index=369)) then
        Result.Y := 63
      else if ((Index=302)or(Index=321)or(Index=344)or(Index=370)) then
        Result.Y := 86
      else if ((Index=303)or(Index=322)or(Index=345)or(Index=373)) then
        Result.Y := 111
      else if ((Index=304)or(Index=325)or(Index=346)or(Index=374)) then
        Result.Y := 134
      else if ((Index=305)or(Index=326)or(Index=349)or(Index=375)) then
        Result.Y := 158
      else if ((Index=306)or(Index=327)or(Index=350)or(Index=376)) then
        Result.Y := 182
      else if ((Index=308)or(Index=328)or(Index=351)or(Index=377)) then
        Result.Y := 206
      else if ((Index=309)or(Index=329)or(Index=354)or(Index=378)) then
        Result.Y := 231
      else if ((Index=310)or(Index=330)or(Index=358)or(Index=381)) then
        Result.Y := 255
      else if ((Index=311)or(Index=333)or(Index=359)or(Index=382)) then
        Result.Y := 278
      else if ((Index=312)or(Index=334)or(Index=360)or(Index=383)) then
        Result.Y := 302
      else if ((Index=313)or(Index=335)or(Index=361)or(Index=384)) then
        Result.Y := 326
      else if ((Index=314)or(Index=336)or(Index=362)or(Index=385)) then
        Result.Y := 350
      else if ((Index=316)or(Index=337)or(Index=365)or(Index=386)) then
        Result.Y := 375
      else if ((Index=317)or(Index=338)or(Index=366)or(Index=393)) then
        Result.Y := 398
      else if ((Index=318)or(Index=341)or(Index=367)or(Index=394)) then
        Result.Y := 423
      else if ((Index=319)or(Index=342)or(Index=368)) then
        Result.Y := 446;

    end;


    selectWorld (Replaced 'WorldArr' with this TIntegerArray)
    New code

    Simba Code:
    WorldArr :=
      [301,320,343,369,+
      302,321,344,370,+
      303,322,345,373,+
      304,325,346,374,+
      305,326,349,375,+
      306,327,350,376,+
      308,328,351,377,+
      309,329,354,378,+
      310,330,358,381,+
      311,333,359,382,+
      312,334,360,383,+
      313,335,361,384,+
      314,336,362,385,+
      316,337,365,386,+
      317,338,366,393,+
      318,341,367,394,+
      319,342,368];


    randomWorld (Changed MemWorlds and FreeWorlds into new TIntegerArrays)
    New code

    Simba Code:
    MemWorlds :=
      [    320,343,369,+
       302,321,344,370,+
       303,322,345,373,+
       304,    346,374,+
       305,    349,375,+
       306,327,350,376,+
           328,351,377,+
       309,329,354,378,+
       310,330,358,    +
       311,333,359,    +
       312,334,360,    +
       313,    361,    +
       314,336,362,    +
               365,386,+
       317,338,366,    +
       318,341,367,    +
       319,342,368];

       FreeWorlds :=
      [301,308,316,335,381, +
       382,383,384,385,393,394];




    Changes to Login.simba

    loginPlayer function (Changed MemWorlds and FreeWorlds to the same TIntegerArrays as the ones in the randomWorld function)
    New code

    Simba Code:
    MemWorlds :=
      [    320,343,369,+
       302,321,344,370,+
       303,322,345,373,+
       304,    346,374,+
       305,    349,375,+
       306,327,350,376,+
           328,351,377,+
       309,329,354,378,+
       310,330,358,    +
       311,333,359,    +
       312,334,360,    +
       313,    361,    +
       314,336,362,    +
               365,386,+
       317,338,366,    +
       318,341,367,    +
       319,342,368];

       FreeWorlds :=
      [301,308,316,335,381, +
       382,383,384,385,393,394];



    Attached Files Attached Files

  10. #385
    Join Date
    Aug 2007
    Location
    Colorado
    Posts
    7,421
    Mentioned
    268 Post(s)
    Quoted
    1442 Post(s)

    Default

    Nicely done with the map, Slacky. I've uploaded it and the new distance restriction fix for RSWalker. I've also adjusted the worldlist, all thanks to Prometheus, and made a small adjustment in chatbox text grabbing. The next time you run AL your include should auto-update.

    Current projects:
    [ AeroGuardians (GotR minigame), Motherlode Miner, Blast furnace ]

    "I won't fall in your gravity. Open your eyes,
    you're the Earth and I'm the sky..."


  11. #386
    Join Date
    Jun 2015
    Posts
    39
    Mentioned
    1 Post(s)
    Quoted
    29 Post(s)

    Default

    The update doesn't seem to be working for me. I keep getting

    [AL] Initiating AeroLib...
    [AL] Checking version...
    [AL] There's a minor update available for AeroLib.
    [AL] Updating AeroLib...
    [AL] Successfully updated AeroLib, please restart the script.
    [09:00:02:117] [] [Status] All cached references free'd from memory
    Successfully executed.

    I restart the script and it keeps saying it needs to update. I closed out simba, and restarted my computer and it hasn't fixed it. Any ideas? The script I'm using is ineedbot's AIO Fisher if that helps at all.

  12. #387
    Join Date
    Aug 2007
    Location
    Colorado
    Posts
    7,421
    Mentioned
    268 Post(s)
    Quoted
    1442 Post(s)

    Default

    Quote Originally Posted by PAX Twisted Fate View Post
    I restart the script and it keeps saying it needs to update. I closed out simba, and restarted my computer and it hasn't fixed it. Any ideas? The script I'm using is ineedbot's AIO Fisher if that helps at all.
    I forgot to change back the updater, it still acts developmental. I'll update it quick on GitHub, so either download & install it again manually (for the last time hopefully) or change line 96 of AeroLib.simba to this:
    Simba Code:
    RenameFile(IncludePath + RepoName + '-master', IncludePath + RepoName);

    Can't believe I forgot to change that back, that's what happens when you're rushed...

    Current projects:
    [ AeroGuardians (GotR minigame), Motherlode Miner, Blast furnace ]

    "I won't fall in your gravity. Open your eyes,
    you're the Earth and I'm the sky..."


  13. #388
    Join Date
    Jun 2014
    Posts
    35
    Mentioned
    0 Post(s)
    Quoted
    9 Post(s)

    Default

    Thanks for the quick fix Flight!

  14. #389
    Join Date
    Mar 2013
    Location
    Earth some place
    Posts
    108
    Mentioned
    2 Post(s)
    Quoted
    66 Post(s)

    Default

    Quote Originally Posted by PAX Twisted Fate View Post
    The update doesn't seem to be working for me. I keep getting

    [AL] Initiating AeroLib...
    [AL] Checking version...
    [AL] There's a minor update available for AeroLib.
    [AL] Updating AeroLib...
    [AL] Successfully updated AeroLib, please restart the script.
    [09:00:02:117] [] [Status] All cached references free'd from memory
    Successfully executed.

    I restart the script and it keeps saying it needs to update. I closed out simba, and restarted my computer and it hasn't fixed it. Any ideas? The script I'm using is ineedbot's AIO Fisher if that helps at all.
    Quote Originally Posted by Flight View Post
    I forgot to change back the updater, it still acts developmental. I'll update it quick on GitHub, so either download & install it again manually (for the last time hopefully) or change line 96 of AeroLib.simba to this:
    Simba Code:
    RenameFile(IncludePath + RepoName + '-master', IncludePath + RepoName);

    Can't believe I forgot to change that back, that's what happens when you're rushed...

    Having the same problem as him, keeps repeating that. I changed line 96 of aerolib.simba but I am still getting the error, going to manually updating and see if that fixes the problem. (edit: manually updating fixes the problem)

    Thanks for the quick fixes guys.

    Edited: Went ahead and redownloaded everything on page 1, no longer getting the updating error. Thanks Flight and Prometheus
    Last edited by captainblast; 07-11-2015 at 07:53 PM. Reason: Fixed the error

  15. #390
    Join Date
    Nov 2011
    Location
    Florida
    Posts
    71
    Mentioned
    0 Post(s)
    Quoted
    2 Post(s)

    Default

    I just got the latest aerolib from github and installed it again manually, but now I'm getting this error on most of my scripts

    [AL] Initiating AeroLib...
    [AL] Checking version...
    [AL] Currently up to date.
    [AL] Loaded 2 MSObjects.
    [AL] Best world found: 10
    [AL] Loading SMART: World 10
    [AL] Startup complete!
    [15:16:46:723] [Reflection] [Status] Successfully setup!
    [15:16:46:728] [Reflection] [Fatal] is not active.
    [15:16:46:736] [Reflection] [Status] All cached references free'd from memory
    Successfully executed.

    Went back to the old version for now until I can figure out what's causing it

  16. #391
    Join Date
    Aug 2014
    Posts
    93
    Mentioned
    2 Post(s)
    Quoted
    36 Post(s)

    Default

    Fixed changed Action:

    Code:
    1664: Actions := ['Members world',                         0,    5,    'Switch'];
    Also recommend to change the Retrys from 'Invalid Username / Password' to 5 instead of 0, some people have a small lagg spike which will result into 1-2 failing logins. :P

    -Rare

  17. #392
    Join Date
    May 2012
    Location
    Gielnor
    Posts
    95
    Mentioned
    0 Post(s)
    Quoted
    50 Post(s)

    Default

    Keeps saying that there is a minor update and keeps updating each time. I've tried doing that line 96 fix, and manually updating with the github version, and nothing works. Please help.

  18. #393
    Join Date
    Feb 2013
    Posts
    4
    Mentioned
    0 Post(s)
    Quoted
    2 Post(s)

    Default

    [AL] Initiating AeroLib...
    [AL] Checking version...
    [AL] There's a minor update available for AeroLib.
    [AL] Updating AeroLib...
    [AL] Successfully updated AeroLib, please restart the script.
    [02:33:00:170] [] [Status] All cached references free'd from memory
    Successfully executed.

    I keep getting this message even after changing line 96, manually reinstalling aerolib and plugins, and restarting the script, but keep getting the same error. Someone please help, thank you
    Last edited by darkl0rd13oy; 07-14-2015 at 07:54 AM.

  19. #394
    Join Date
    Aug 2007
    Location
    Colorado
    Posts
    7,421
    Mentioned
    268 Post(s)
    Quoted
    1442 Post(s)

    Default

    Quote Originally Posted by nigerson View Post
    Keeps saying that there is a minor update and keeps updating each time. I've tried doing that line 96 fix, and manually updating with the github version, and nothing works. Please help.
    Quote Originally Posted by darkl0rd13oy View Post
    [AL] Initiating AeroLib...
    [AL] Checking version...
    [AL] There's a minor update available for AeroLib.
    [AL] Updating AeroLib...
    [AL] Successfully updated AeroLib, please restart the script.
    [02:33:00:170] [] [Status] All cached references free'd from memory
    Successfully executed.

    I keep getting this message even after changing line 96, manually reinstalling aerolib and plugins, and restarting the script, but keep getting the same error. Someone please help, thank you
    I don't see why. If you've re-installed AeroLib from GitHub then your updater should be functioning correctly now. Is your revision number 1?

    Current projects:
    [ AeroGuardians (GotR minigame), Motherlode Miner, Blast furnace ]

    "I won't fall in your gravity. Open your eyes,
    you're the Earth and I'm the sky..."


  20. #395
    Join Date
    Jul 2015
    Posts
    1
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    keeps giving me this
    Exception in Script: Unable to find file 'AeroLib/AeroLib.Simba' used from 'C:\Simba\Scripts\HoodzFletcher V2.simba'
    also does this with other scripts, what did i do wrong?

  21. #396
    Join Date
    May 2012
    Location
    Gielnor
    Posts
    95
    Mentioned
    0 Post(s)
    Quoted
    50 Post(s)

    Default

    Quote Originally Posted by Flight View Post
    I don't see why. If you've re-installed AeroLib from GitHub then your updater should be functioning correctly now. Is your revision number 1?
    im not sure if this is it but here you go.

    AL_VERSION_MAIN = 1.2;
    AL_VERSION_SUB = 1;
    AL_GITURL = 'https://github.com/J-Flight/AeroLib';

  22. #397
    Join Date
    May 2012
    Location
    Gielnor
    Posts
    95
    Mentioned
    0 Post(s)
    Quoted
    50 Post(s)

    Default

    Quote Originally Posted by nigerson View Post
    im not sure if this is it but here you go.

    AL_VERSION_MAIN = 1.2;
    AL_VERSION_SUB = 1;
    AL_GITURL = 'https://github.com/J-Flight/AeroLib';
    NVM i put the update into my folder called aerolib master instead of just aerolib. my fault for being a dumbass.

  23. #398
    Join Date
    Sep 2014
    Posts
    8
    Mentioned
    0 Post(s)
    Quoted
    4 Post(s)

    Default

    noob question ?if move mouse to point?100?100??and click mouse left:

    HumanMMouse(100,100,5,5);
    fastclick(mouse_left);

    is it right?and how to know the fuction about moving mouse?

  24. #399
    Join Date
    May 2015
    Posts
    14
    Mentioned
    0 Post(s)
    Quoted
    4 Post(s)

    Default

    Hello everyone,

    I've been having this problem quite often lately and was told to come here for some extra help. Rare Scripts has been helping me through most of it but he's very busy, as well as Fitta.

    All these problems seem to happen with my scripts that hop worlds a lot, so it might have something to do with that but it's quite annoying knowing that I can't run a script for more than an hour without me having to restart it. Everyone of these problems that I'm posting below, stops the script completely.

    #1 :

    Just sits in the log-in screen not doing anything. This is the debug (image) : Attachment 26454

    It might be due to the PvP worlds that give the option "Are you sure you wanna login?, etc." and it bugs the client out.


    #2 : I'll come back to the client looking like this: Attachment 26455 then it'll shut bot down. Not sure how it gets like this either. I've tried watching but I notice nothing that triggers it.

    #3 : I'll get the errors: "Too many connections from this address" or "Try again in a few minutes" or attempting to login to a f2p world when its in a p2p area. Those 3 shut down my bot as well.

    So my question is, does anyone know whats going on with all of this? Is there a way to get failsafes for logins?

    Thanks in advance.

  25. #400
    Join Date
    Jan 2011
    Posts
    335
    Mentioned
    0 Post(s)
    Quoted
    23 Post(s)

    Default

    after updating my aerolib i keep getting Error: Access violation now.
    If I see you autoing with level 3/default clothes/crap name I WILL report you. Auto Correctly.

Page 16 of 34 FirstFirst ... 6141516171826 ... LastLast

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
  •