Back to Index Page generated: May 8, 2024, 6:16:03 AM

Expansion Beer Cooler

Content

Warnings

  1. Found XML equipment list

Manifest

from Expansion Manager's OXP list from Expansion Manifest
Description Keep your beer cool even while sun skimming Keep your beer cool even while sun skimming
Identifier oolite.oxp.maik.beercooler oolite.oxp.maik.beercooler
Title Beer Cooler Beer Cooler
Category Equipment Equipment
Author maik maik
Version 1.1.0 1.1.0
Tags
Required Oolite Version
Maximum Oolite Version
Required Expansions
Optional Expansions
Conflict Expansions
Information URL http://wiki.alioth.net/index.php/Beer_Cooler n/a
Download URL https://wiki.alioth.net/img_auth.php/0/0d/Beercooler.oxz n/a
License CC-BY-NC-SA 3.0 CC-BY-NC-SA 3.0
File Size n/a
Upload date 1610873229

Documentation

Also read http://wiki.alioth.net/index.php/Beer%20Cooler

Equipment

Name Visible Cost [deci-credits] Tech-Level
Beer Cooler yes 100 1+
Sell Beer Cooler yes 100 1+

Ships

This expansion declares no ships. This may be related to warnings.

Models

This expansion declares no models. This may be related to warnings.

Scripts

Path
Config/script.js
/*

based on the sell_equipment script from Commander McLane

Script for selling the beer cooler


Oolite
Copyright © 2003-2013 Giles C Williams and contributors

This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
MA 02110-1301, USA.


beercooler.oxp
Copyright © 2012-2014 "Maik"

This work is licensed under the Creative Commons
Attribution-Noncommercial-Share Alike 3.0 Unported License.

To view a copy of this license, visit
http://creativecommons.org/licenses/by-nc-sa/3.0/ or send a letter
to Creative Commons, 171 Second Street, Suite 300, San Francisco,
California, 94105, USA.

*/


this.name           = "oolite.oxp.beercooler";
this.description    = "script for selling the beer cooler";
this.author         = "Maik";
this.copyright      = "© 2014 Maik";
this.license		= "CC-by-nc-sa 3.0";
this.version        = "1.1.0";

/* event handler */

this.playerBoughtEquipment = function(equipmentKey)
{
	if(equipmentKey == "EQ_BEERCOOLER_REMOVAL")
	{
		player.ship.removeEquipment("EQ_BEERCOOLER");
		player.ship.removeEquipment("EQ_BEERCOOLER_REMOVAL");
	}
}