If you are using Windows, do a Google search for 7-Zip.caracal wrote:Very nice, have been loving 1.061. However, the switch to RAR didn't do me any favors. Using Debian's unrar-free:Frame wrote:updated to 1.07 to show
cargo , asteroids and bouy bounty correctly..
Any chance of getting a zipped version?
IFF add on OXP.. Bounty Information
Moderators: winston, another_commander
- JazHaz
- ---- E L I T E ----
- Posts: 2991
- Joined: Tue Sep 22, 2009 11:07 am
- Location: Enfield, Middlesex
- Contact:
JazHaz
Thanks to Gimi, I got an eBook in my inbox tonight (31st May 2014 - Release of Elite Reclamation)!Gimi wrote:Maybe you could start a Kickstarter Campaign to found your £4500 pledge.drew wrote:£4,500 though! <Faints>
Cheers,
Drew.
- JazHaz
- ---- E L I T E ----
- Posts: 2991
- Joined: Tue Sep 22, 2009 11:07 am
- Location: Enfield, Middlesex
- Contact:
Yes, silly me!Ahruman wrote:If he was using Windows, he wouldn’t be using Debian’s unrar-free.
However 7-Zip is available for Linux (& Mac also). See here: http://www.7-zip.org/download.html
JazHaz
Thanks to Gimi, I got an eBook in my inbox tonight (31st May 2014 - Release of Elite Reclamation)!Gimi wrote:Maybe you could start a Kickstarter Campaign to found your £4500 pledge.drew wrote:£4,500 though! <Faints>
Cheers,
Drew.
Indeed it is, and it's a standard Debian package. And I even had it installed already. I just don't run across many RAR files, so it didn't immediately spring to mind. The RAR plugin for 7-Zip is classified as "non-free" by Debian, which doesn't stop me from using it, but I always seek a free alternative when one is available.JazHaz wrote:However 7-Zip is available for Linux (& Mac also).
Anyway, it worked a treat, thanks for the tip JazHaz!
I thought that unpacking RAR files is a free feature, but you need to buy a licence to use the packing algorithm...
...and keep it under lightspeed!
Friendliest Meteor Police that side of Riedquat
Far Arm ships
Z-ships
Baakili Far Trader
Tin of SPAM
Friendliest Meteor Police that side of Riedquat
Far Arm ships
Z-ships
Baakili Far Trader
Tin of SPAM
- Cmdr James
- Commodore
- Posts: 1357
- Joined: Tue Jun 05, 2007 10:43 pm
- Location: Berlin
I checked it, and looks like I remembered the thing right:
http://www.7-zip.org/license.txt
UNRAR is ok without charge, reverse-engineering it & making a RAR archiver isn't allowed.
http://www.7-zip.org/license.txt
UNRAR is ok without charge, reverse-engineering it & making a RAR archiver isn't allowed.
...and keep it under lightspeed!
Friendliest Meteor Police that side of Riedquat
Far Arm ships
Z-ships
Baakili Far Trader
Tin of SPAM
Friendliest Meteor Police that side of Riedquat
Far Arm ships
Z-ships
Baakili Far Trader
Tin of SPAM
- JazHaz
- ---- E L I T E ----
- Posts: 2991
- Joined: Tue Sep 22, 2009 11:07 am
- Location: Enfield, Middlesex
- Contact:
I'm getting a lot of depreciation errors with Bounty Scanner v1.07 on 1.74+.
Any chance of an update? Frame?
Any chance of an update? Frame?
JazHaz
Thanks to Gimi, I got an eBook in my inbox tonight (31st May 2014 - Release of Elite Reclamation)!Gimi wrote:Maybe you could start a Kickstarter Campaign to found your £4500 pledge.drew wrote:£4,500 though! <Faints>
Cheers,
Drew.
- Commander McLane
- ---- E L I T E ----
- Posts: 9520
- Joined: Thu Dec 14, 2006 9:08 am
- Location: a Hacker Outpost in a moderately remote area
- Contact:
As it's only deprecation errors you could easily crawl through the script and replace the deprecated methods yourself, until Frame manages to release a new version. At least that's what I did on my machine (and same goes for fuel collector, which was responsible for the greater part of the remaining deprecation warnings. Both scripts are executed again and again, which means that it is always the same few lines creating the same warnings time and again.JazHaz wrote:I'm getting a lot of depreciation errors with Bounty Scanner v1.07 on 1.74+.
Any chance of an update? Frame?
- JazHaz
- ---- E L I T E ----
- Posts: 2991
- Joined: Tue Sep 22, 2009 11:07 am
- Location: Enfield, Middlesex
- Contact:
Did as you suggested, wasn't totally sure what I was doing, but managed it and it works! Phew!
JazHaz
Thanks to Gimi, I got an eBook in my inbox tonight (31st May 2014 - Release of Elite Reclamation)!Gimi wrote:Maybe you could start a Kickstarter Campaign to found your £4500 pledge.drew wrote:£4,500 though! <Faints>
Cheers,
Drew.
I wouldn't post somebody else's OXP, but I'm happy to post a patch, for those using trunk, or who wish to reduce the number of deprecation messages in their log, until the author has a chance to create and publish an update.Switeck wrote:Got a link to your fix?
So here goes, and to any admin/moderator who doesn't approve, by all means delete this post! I won't mind. (Not that it would matter whether I minded or not, of course. Your worship, sir.)
Code: Select all
In file AddOns/BountyScannerv1.07.oxp/Scripts/BountyScanner.js:
29c29
< if(this.Theplayership.hasEquipment("EQ_FRAME_BOUNTY_SCANNER"))
---
> if(this.Theplayership.equipmentStatus("EQ_FRAME_BOUNTY_SCANNER") == "EQUIPMENT_OK")
42c42
< if(this.Theplayership.hasEquipment("EQ_FRAME_BOUNTY_SCANNER"))
---
> if(this.Theplayership.equipmentStatus("EQ_FRAME_BOUNTY_SCANNER") == "EQUIPMENT_OK")
59c59
< if(!this.Theplayership.hasEquipment("EQ_FRAME_BOUNTY_SCANNER")) // Equipment might be damaged
---
> if(this.Theplayership.equipmentStatus("EQ_FRAME_BOUNTY_SCANNER") != "EQUIPMENT_OK") // Equipment might be damaged
Version 2.0
This large increment in version numbers is due to the fact that Bounty hunter 2.0 is not backward compatible with pre 1.74 Oolite releases, but has been primed more towards performance and therefore needless checks ensuring pre 1.74 compatibility was scrapped..
Download 2.0 here
http://www.box.net/shared/ls3e6ba79y
This large increment in version numbers is due to the fact that Bounty hunter 2.0 is not backward compatible with pre 1.74 Oolite releases, but has been primed more towards performance and therefore needless checks ensuring pre 1.74 compatibility was scrapped..
Download 2.0 here
http://www.box.net/shared/ls3e6ba79y
Bounty Scanner
Number 935
Number 935
- JazHaz
- ---- E L I T E ----
- Posts: 2991
- Joined: Tue Sep 22, 2009 11:07 am
- Location: Enfield, Middlesex
- Contact:
Thanks for making this new version! Have updated the wiki with this link.Frame wrote:
JazHaz
Thanks to Gimi, I got an eBook in my inbox tonight (31st May 2014 - Release of Elite Reclamation)!Gimi wrote:Maybe you could start a Kickstarter Campaign to found your £4500 pledge.drew wrote:£4,500 though! <Faints>
Cheers,
Drew.