Never trust a signed document....fronclynne wrote:As Charlie Brown once said, "AUGH!"UK_Eliter wrote:These things never occurred to me! And I think that the brown cannon just might be going a bit far . .
http://youtu.be/GsSXMT0NrB4
Moderators: winston, another_commander
Never trust a signed document....fronclynne wrote:As Charlie Brown once said, "AUGH!"UK_Eliter wrote:These things never occurred to me! And I think that the brown cannon just might be going a bit far . .
Hey, your the one who handed over the self regenerating code. If I made a flying chunk of manhood, then you are responsible for maintaining it's smooth, throbbing bullet like exterior.Thargoid wrote:I must admit, the first time I ever saw a Caddy in-flight, the thought that crossed my mind was "it's a Klingon d*ldo, something you'd see sticking out of an alien porn star". Nice to know someone elses mind is as sick and twisted as minesdrubble wrote:Now that you've been kind enough to ressurrect (re-erect ? ) the issue, it came to me that he might actually be referring, albeit subconsciously, to a Klingon genitive organ - in which case it would indeed be called by a different name. I've never personally seen one of these myself though... the thought just passed thru my mind, given the general Klingon feeling of the Caddy and of the Dark Rainbow.
That's not to say of course that it's not a lovely design, with the deepest respect for ClymAngus and his work.
Download link (at the end of the first post in this thread) has now been reactivated.BlackKnight wrote:I've just tried downloading the ZIP from the location on the first post but the file is no longer publically available - does that mean it's available privately somehow, or is the link now completely useless?
If this link is now dead, can the Warty Popsicle be downloaded from anywhere else (if all else fails, can someone email the ZIP?)
Actually I'm just a genetic engineer who enjoys tweaking other people's creations... the Dark Rainbow is a direct descendant of the Caduceus, an original creation of ClymAngus.(Thank you for creating the ship sdrubble).
this.checkSystems function
(i.e. , up to the start of the this.repairSystems function
), and pasting Eric's code in its place. Oh, and BTW it's the [b]script.js[/b]
file in the Config
folder.Mmmm... I suspect you didn't really follow the instructions inside the fileBlackKnight wrote:... but the spinning image on the 'Buy ship' screen is all white except for the turrets.
DR_installation_2011.09.14_A.txt
... but of course I'm sure you've actually READ it. Code: Select all
To INSTALL the Dark Rainbow OXP *ALONGSIDE* an already working version of neoCaduceus OXP:
[ . . . ]
To INSTALL the Dark Rainbow OXP *WITHOUT* keeping a working version of neoCaduceus OXP:
[ . . . ]
Code: Select all
2. Install the Caduceus OXP in the normal fashion.
\AddOns
folder. Stating this in a different way: under the \AddOns
folder you should have a number of folders, and each of these folders' name should end in .oxp
(upper/lower case is irrelevant under Windoze).From what I said above, you'll see that there's not a file to be copied anywhere (other than 3 very specific file replacements described in the install file), but rather an entire folder instead...and then copied the renamed file
\AddOns
folder.\AddOns
folder, your next restart of Oolite should be done with the Shift
key held down - that's in order to refresh Oolite's disk cache with your brand new changes (which otherwise might not be totally seen by the game).While it doesn't hurt to start Oolite with SHIFT each time, it should be noted that this is not true.sdrubble wrote:And always remember: every time you've done whatever change under the\AddOns
folder, your next restart of Oolite should be done with theShift
key held down - that's in order to refresh Oolite's disk cache with your brand new changes (which otherwise might not be totally seen by the game).
Unless the date/time stamps of the two folders (the one being replaced and the identically named one replacing it) are exactly the same, Oolite will also in this case recognize a change in the AddOns structure and rebuild the cache without user interference. The message generated in cases like this (when the date/time stamp in an OXP folder has changed) is "Cache is stale (modification dates have changed). Rebuilding from scratch."Commander McLane wrote:The only time they need to rebuild the cache is if they replace one OXP version with an identically named newer version without starting the game in-between. In that case Oolite can't know that what looks like the same folder as before may have new and changed content.
That would be the 'Dark_Rainbow.OXP' file... the one that has an icon that looks like a folderand then copied the renamed file
Code: Select all
//this.checkSystems = function()
//{
//this.playerDamagedList = [];
//var listCounter = 0 ; // reset the counter
//for(listCounter = 0;listCounter<player.ship.equipment.length;listCounter++)
//{
//var scriptEq = EquipmentInfo.infoForKey(player.ship.equipment[listCounter].equipmentKey);
//if( player.ship.equipmentStatus(player.ship.equipment[listCounter].equipmentKey) == "EQUIPMENT_DAMAGED"
//&& ((scriptEq.scriptInfo.thargoidRepairBotChance === undefined
//|| isNaN(scriptEq.scriptInfo.thargoidRepairBotChance))
//|| (!isNaN(scriptEq.scriptInfo.thargoidRepairBotChance)
//&& scriptEq.scriptInfo.thargoidRepairBotChance > 0))
//)
//{
//this.playerDamagedList.push(player.ship.equipment[listCounter].equipmentKey); // if it's broke and fixable, add it to the list.
//}
//}
//}
this.checkSystems = function()
{
this.playerDamagedList = [];
var equipment = player.ship.equipment
var listCounter = 0 ; // reset the counter
for(listCounter = 0;listCounter<equipment.length;listCounter++)
{
if( player.ship.equipmentStatus(equipment[listCounter].equipmentKey) !== "EQUIPMENT_DAMAGED")
{continue}
var scriptEqInfo = EquipmentInfo.infoForKey(equipment[listCounter].equipmentKey).scriptInfo;
if((scriptEqInfo.thargoidRepairBotChance === undefined
|| isNaN(scriptEqInfo.thargoidRepairBotChance))
|| (!isNaN(scriptEqInfo.thargoidRepairBotChance)
&& scriptEqInfo.thargoidRepairBotChance > 0))
{
this.playerDamagedList.push(equipment[listCounter].equipmentKey); // if it's broke and fixable, add it to the list.
}
}
}
..\Oolite\oolite.app\Logs
.[color=#0000FF]..\Oolite\oolite.app\oolite-saves\snapshots[/color]
folder).