Page 1 of 2 12 LastLast
Results 1 to 25 of 26

Thread: Cigue's Ectofuntus Worshipper !

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

    Default Cigue's Ectofuntus Worshipper !

    Cigue 4x Prayer Experience Script

    Six months in the making and finally out ! This juggernaut will work through a lot of instructions to put your bones into the Ectofuntus, and thus get easy, cheap prayer experience.

    -Start the script in Port Phasmatys or nearby, with buckets, pots and an ectophial in inventory.

    - BEFORE YOU WORK THE SCRIPT : You need Ghosts Ahoy! and 59 agility.

    - I used to recommend Big Bones as the cheapest way to raise prayer, but after some testing I found out that the xp per hour is ridiculously low (10k per hour instead of ~50k for dragon bones). I therefore suggest that, if you have a little money, you use dragon bones with this script

    Suggestions are very welcome, about what bones would you like to be supported, how to improve/accelerate the script, etc.

    Future updates :
    -Fixing the antirandoms

    Featuring :
    - Full color;
    - Custom object finding;
    - Trigonometry; most functions work regardless of map orientation (useful as an antiban !);
    - DTM finding used for map walking and item finding;
    - Failsafes and Time Marks (if not logged in then exit, symbol finding, etc);
    - Time tested antiban;
    - Proggies and breaks.

    Suggestions are welcome.

    PS. By using this script, you hereby agree to report here any bugs that happen to you
    Last edited by Cigue; 08-01-2010 at 07:09 PM.
    I don't check this place often, sorry.

    Currently working on - Software Engineering degree. Thank you SRL for showing me the one true path

  2. #2
    Join Date
    Aug 2008
    Location
    Finland
    Posts
    2,851
    Mentioned
    3 Post(s)
    Quoted
    2 Post(s)

    Default

    Wow. That looks awesome.
    SCAR Code:
    function Math_PointCoords (point1: TPoint; xp, yp : integer): TPoint;//This returns the point xp, yp from point1 if compass was looking north. Use main screen center and minimap center as point1.
    begin
      Result := Point(point1.x + xp * Round(Cos(rs_GetCompassAngleRadians)) + yp * Round(Sin(rs_GetCompassAngleRadians)), point1.y - xp * Round(Sin(rs_GetCompassAngleRadians)) + yp * Round(Cos(rs_GetCompassAngleRadians)));
    end;

    ...but that hurts my eyes!

    SCAR Code:
    function Math_PointCoords (point1: TPoint; xp, yp : integer): TPoint;
    var
      a, sina, cosa: extended;
    begin
      a := rs_GetCompassAngleRadians;
      sina := sin(a);
      cosa := cos(a);
      Result := Point(Round(point1.x + xp * cosa + yp * sina), Round(point1.y - xp * sina + yp * cosa));
    end;

    and I'm not completely sure what you're doing there
    Anyways, you were rounding cosine and sine alone, which only result 0 or 1, and I believe you wanted to round the whole result. "Round(sina)" results either 0 or 1. Therefore "Round(sina) * xp" results either "xp" or "0".
    Last edited by marpis; 07-13-2010 at 02:10 PM.

  3. #3
    Join Date
    Jan 2010
    Posts
    5,227
    Mentioned
    6 Post(s)
    Quoted
    60 Post(s)

    Default

    I think the point of that was basically just so that the orientation of the minimap doesn't matter.

    However, there is already a RotatePoint function in SRL which does the same thing.

  4. #4
    Join Date
    Sep 2009
    Posts
    580
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Thank you Marpis ! Added your function to script and +rep.
    Basically, what it does is it takes a point, then a coord from that point, and rotates it by -(Rs_getcompassangledegrees), so I can run functions off that point the way I'd use them if the compass was pointing north. I know it's not too clear. :/

    @i luffs yews : I'd like to know more about that.
    Last edited by Cigue; 07-13-2010 at 07:38 PM.
    I don't check this place often, sorry.

    Currently working on - Software Engineering degree. Thank you SRL for showing me the one true path

  5. #5
    Join Date
    Jan 2010
    Posts
    5,227
    Mentioned
    6 Post(s)
    Quoted
    60 Post(s)

    Default

    I'll try to find the include it's in later.

    I know it's like.. the last function in some include.. Maybe MapWalk.scar?

  6. #6
    Join Date
    Sep 2009
    Posts
    580
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Updated! The script now features breaks. I'm still working on antirandoms, so beware !
    I don't check this place often, sorry.

    Currently working on - Software Engineering degree. Thank you SRL for showing me the one true path

  7. #7
    Join Date
    Jan 2010
    Posts
    5,227
    Mentioned
    6 Post(s)
    Quoted
    60 Post(s)

    Default

    There was a problem with banking. My mouse was over the banker and it didn't right click him.

    http://pastebin.com/6weVny15

    Problem was around line 213.

    Also, when it was taking the final stairs down to the slime it was mousing over the wall behind me for awhile.

  8. #8
    Join Date
    Sep 2009
    Posts
    580
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by i luffs yeww View Post
    There was a problem with banking. My mouse was over the banker and it didn't right click him.

    http://pastebin.com/6weVny15

    Problem was around line 213.

    Also, when it was taking the final stairs down to the slime it was mousing over the wall behind me for awhile.
    I don't quite understand what happened at the first error, but I gave the script a new provision that will higher tolerance everytime the banker isn't found.

    As for the second problem : Fixed!

    Also, final version released, now works with dragon bones.
    I don't check this place often, sorry.

    Currently working on - Software Engineering degree. Thank you SRL for showing me the one true path

  9. #9
    Join Date
    Jul 2007
    Location
    Right now? Chair.
    Posts
    8,488
    Mentioned
    3 Post(s)
    Quoted
    12 Post(s)

    Default

    RotatePoint in WizzyPluggin - I think that's what is on everyone's mind

    Great job on the script. You should check out MSI one of these days

    ~RM

    I & I know Zion. It is in the spirit, body and mind of every one of us
    RMouse(obj: TMSIObject): boolean;

  10. #10
    Join Date
    Jun 2007
    Location
    Netherlands
    Posts
    137
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Im getting

    Error: Exception: The given DTM Index[0] doesn't exist at line 352

    and after that file[D:\lotsofblabla\SRL Log 19-07-10 0.txt] has not been freed in the script, freeing it now.

    Tried to search forum but couldnt find anything Any ideas on how to fix this?


    edit
    Hmm im getting this error in AntiRandoms i see now, ill try to update srl and stuff
    Last edited by autoerforlife; 07-19-2010 at 11:08 AM.

  11. #11
    Join Date
    Sep 2009
    Posts
    580
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by autoerforlife View Post
    Im getting

    Error: Exception: The given DTM Index[0] doesn't exist at line 352

    and after that file[D:\lotsofblabla\SRL Log 19-07-10 0.txt] has not been freed in the script, freeing it now.

    Tried to search forum but couldnt find anything Any ideas on how to fix this?


    edit
    Hmm im getting this error in AntiRandoms i see now, ill try to update srl and stuff
    Gave me this a few times for some reason, however I think you can fix it by specifying Players[0].nick something else than ''
    I don't check this place often, sorry.

    Currently working on - Software Engineering degree. Thank you SRL for showing me the one true path

  12. #12
    Join Date
    Feb 2006
    Location
    Amsterdam
    Posts
    13,692
    Mentioned
    146 Post(s)
    Quoted
    130 Post(s)

    Default

    Hey, this looks really cool! I'll have to test this with my main. I never got past prayer 82... Ugh.



    The best way to contact me is by email, which you can find on my website: http://wizzup.org
    I also get email notifications of private messages, though.

    Simba (on Twitter | Group on Villavu | Website | Stable/Unstable releases
    Documentation | Source | Simba Bug Tracker on Github and Villavu )


    My (Blog | Website)

  13. #13
    Join Date
    Sep 2009
    Posts
    580
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    I'm sorry for the untested clusterfuck that was 1.5. I'm completing a fix right now.

    EDIT : thanks for the cup
    Last edited by Cigue; 07-19-2010 at 11:21 PM.
    I don't check this place often, sorry.

    Currently working on - Software Engineering degree. Thank you SRL for showing me the one true path

  14. #14
    Join Date
    Jun 2007
    Location
    Netherlands
    Posts
    137
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by Cigue View Post
    I'm sorry for the untested clusterfuck that was 1.5. I'm completing a fix right now.

    EDIT : thanks for the cup
    wewt your great and fast ;D


    edit:

    Hmmm found the same bug again

    Error: Exception: The given DTM Index[0] doesn't exist at line 352
    The following DTMs were not freed: [1]
    The following bitmaps were not freed: [SRL - Mod bitmap, SRL - Admin bitmap]
    File[D:\Software\simba\Simba\Includes\SRL\Logs\SRL Log 20-07-10 1.txt] has not been freed in the script, freeing it now.

    Got srl and all updated gonna try to find solution now

    re-edit:

    Woops, that was in simba, i meant this bug:
    [Runtime Error] : Exception: Access violation at address 007876D4 in module 'scar.exe'. Read of address 00000000 in line 383 in script D:\Software\runescape\scar\includes\SRL\SRL\Core\A ntiRandoms\AntiRandoms.scar
    Last edited by autoerforlife; 07-20-2010 at 03:13 PM.

  15. #15
    Join Date
    Sep 2009
    Posts
    580
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by autoerforlife View Post
    wewt your great and fast ;D


    edit:

    Hmmm found the same bug again

    Error: Exception: The given DTM Index[0] doesn't exist at line 352
    The following DTMs were not freed: [1]
    The following bitmaps were not freed: [SRL - Mod bitmap, SRL - Admin bitmap]
    File[D:\Software\simba\Simba\Includes\SRL\Logs\SRL Log 20-07-10 1.txt] has not been freed in the script, freeing it now.

    Got srl and all updated gonna try to find solution now

    re-edit:

    Woops, that was in simba, i meant this bug:
    [Runtime Error] : Exception: Access violation at address 007876D4 in module 'scar.exe'. Read of address 00000000 in line 383 in script D:\Software\runescape\scar\includes\SRL\SRL\Core\A ntiRandoms\AntiRandoms.scar
    Both errors are caused by SRL issues, not the script. However, I have disabled the AntiRandoms in the most recent version. If the script finds a random it'll log out before you know it anyway.

    1.7 out! Did my first night run with this baby, now I got about 400 less big bones.
    I don't check this place often, sorry.

    Currently working on - Software Engineering degree. Thank you SRL for showing me the one true path

  16. #16
    Join Date
    Jun 2007
    Location
    Netherlands
    Posts
    137
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by Cigue View Post
    Both errors are caused by SRL issues, not the script. However, I have disabled the AntiRandoms in the most recent version. If the script finds a random it'll log out before you know it anyway.

    1.7 out! Did my first night run with this baby, now I got about 400 less big bones.
    damn your too fast, ill go try it now

    works uber, but didnt logout on maze, only random iv seen so far while running the script
    Last edited by autoerforlife; 07-20-2010 at 04:30 PM.

  17. #17
    Join Date
    Sep 2009
    Posts
    580
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Nice! Thanks If you feel like it you can add me over MSN (get my adress by clicking the little butterfly next to my post count).
    I don't check this place often, sorry.

    Currently working on - Software Engineering degree. Thank you SRL for showing me the one true path

  18. #18
    Join Date
    Jun 2007
    Location
    Netherlands
    Posts
    137
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by Cigue View Post
    Nice! Thanks If you feel like it you can add me over MSN (get my adress by clicking the little butterfly next to my post count).
    did that, tnx

    also found a few more bugs:

    1. i have to enter my pin by myself, if i dont enter it, it just walks from banker to banker in an endless loop

    2. after like 8 runs or something, im getting an error:
    Error: Exception: The given DTM Index[0] doesn't exist at line 79
    The following bitmaps were not freed: [SRL - Mod bitmap, SRL - Admin bitmap]
    File[D:\Software\simba\Simba\Includes\SRL\Logs\SRL Log 20-07-10 6.txt] has not been freed in the script, freeing it now.

    This error is in the color file.

    Both seem to be SRL issues i presume?

    Gr, autoer

  19. #19
    Join Date
    Sep 2009
    Posts
    580
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by autoerforlife View Post
    did that, tnx

    also found a few more bugs:

    1. i have to enter my pin by myself, if i dont enter it, it just walks from banker to banker in an endless loop

    2. after like 8 runs or something, im getting an error:
    Error: Exception: The given DTM Index[0] doesn't exist at line 79
    The following bitmaps were not freed: [SRL - Mod bitmap, SRL - Admin bitmap]
    File[D:\Software\simba\Simba\Includes\SRL\Logs\SRL Log 20-07-10 6.txt] has not been freed in the script, freeing it now.

    This error is in the color file.

    Both seem to be SRL issues i presume?

    Gr, autoer
    Both should be fixed
    I don't check this place often, sorry.

    Currently working on - Software Engineering degree. Thank you SRL for showing me the one true path

  20. #20
    Join Date
    Jun 2007
    Location
    Netherlands
    Posts
    137
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by Cigue View Post
    Both should be fixed
    gonna try now, will edit when i tested thoroughly

  21. #21
    Join Date
    Aug 2010
    Posts
    1
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    wheres the cript for the bot?

  22. #22
    Join Date
    Sep 2009
    Posts
    580
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    It's on the first post, you have to download it, and then run it using SIMBA. To download Simba, go here : http://simba.villavu.com/bin/Release...aInstaller.exe
    I don't check this place often, sorry.

    Currently working on - Software Engineering degree. Thank you SRL for showing me the one true path

  23. #23
    Join Date
    Feb 2011
    Posts
    1
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Hi I'm new to this community and i found this script and would really like to use it. i downloaded all the simba files in the first post and i dont know how to activate the bot. i run one of the files then i click the green play button and it says"
    doesn't exist
    Exception in Script: Unable to find file 'SRL/SRL.scar' used from ''

    could someone give me a quick walkthrough on this because i think its me who is doing something wrong.

    Thanks

  24. #24
    Join Date
    Feb 2007
    Location
    Colorado, USA
    Posts
    3,716
    Mentioned
    51 Post(s)
    Quoted
    624 Post(s)

    Default

    Quote Originally Posted by jimmyjamzie View Post
    Hi I'm new to this community and i found this script and would really like to use it. i downloaded all the simba files in the first post and i dont know how to activate the bot. i run one of the files then i click the green play button and it says"
    doesn't exist
    Exception in Script: Unable to find file 'SRL/SRL.scar' used from ''

    could someone give me a quick walkthrough on this because i think its me who is doing something wrong.

    Thanks
    Look at the dates of the last post before you post problems, stuff gets out dated pretty fast
    The only true authority stems from knowledge, not from position.

    You can contact me via matrix protocol: @grats:grats.win or you can email me at the same domain, any user/email address.

  25. #25
    Join Date
    Oct 2010
    Location
    Brasil PR Ponta Grossa
    Posts
    96
    Mentioned
    1 Post(s)
    Quoted
    9 Post(s)

    Default

    buaaaaaa my membership over today =(.

Page 1 of 2 12 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
  •