Project Zomboid

Project Zomboid

Rick's MLC Pay & Pump
Viser 11-20 af 21 forekomster
< 1  2  3 >
Opdatering: 18. juli 2024 kl. 1:36

Added to the 3rd party patch for the The Filibuster Rhymes' Used Cars! Fuel Test "FuelTruck_ISRefuelFromGasPump_start.lua" file which has an override for the ISRefuelFromGasPump:start() which looks like test code with hard-coded values, and does not set the self.sound. This will cause the ISRefuelFromGasPump:stop() to error when it tries to stop the sound.

This patch removes the FR :start() method by replacing it with the original vanilla function.

Opdatering: 11. juli 2024 kl. 5:38

Updated to correct the cost of fuel from the pump by dividing the amount spent by the cost/litre. Silly mistake really. I could claim I was too tired to code it properly in a fit of otherwise inspirational coding, and that might be the case. Certainly this is a consequence of insufficient testing.

Opdatering: 8. juli 2024 kl. 2:11

Fixed issue with sandbox options not using the updated custom values.

Opdatering: 7. juli 2024 kl. 1:58

Updated sandbox options to have a maximum of 100 (was 5)
Added compatibility code for the Simple Ovehaul Traits and Occupationsl. The SOTO mod code replaces some of the fuel timed actions, which causes the Pay and Pump code to not run. This update replicates the SOTO code effects while still allowing the Pay and Pump code to run.

Opdatering: 3. apr. 2024 kl. 4:40

Fixed missing code so it uses the propane price.

Opdatering: 2. apr. 2024 kl. 2:33

By popular demand I have added support for:
-- Pumps Have Propane https://gtm.steamproxy.vip/sharedfiles/filedetails/?id=2739570406
-- CreditCardsPlus https://gtm.steamproxy.vip/sharedfiles/filedetails/?id=2873621032
-- Snake's Mod https://gtm.steamproxy.vip/sharedfiles/filedetails/?id=2719327441 (PremiumCreditCard)

Note I have not released the Pumps Have Propane : Fill Large Propane Tank because I can't find one to test, and don't know where it comes from. If anyone knows the item Type and which mods includes it please let me know and I will be able to test and release sometime.

Opdatering: 28. mar. 2024 kl. 17:04

Updated fuelStation detection to use the name of the texture for gas2go and fossoil, instead of IsoThumpable so FuelAPI barrels are still free.

Opdatering: 26. mar. 2024 kl. 4:09

Updated to handle the FuelAPI take gas from barrel. The FuelAPI uses the same ISTakeFuel TimedAction for handling (ie: pretending the barrel is a fuelStation. This change checks if the fuelStation is an IsoThumpable (FuelAPI barrel) A vanilla fuelStation is an IsoObject.

Opdatering: 24. mar. 2024 kl. 5:15

Updated to work with Compatibility for Tread's Fuel Types Framework [41.65+].
Added price/litre for Petrol (default) Diesel and LPG.

Opdatering: 22. mar. 2024 kl. 23:34

Refactored the Take Fuel timed actions so the :start() function does not require overriding. I override the new() instead.
This avoids a fault which occurs if the "Simple Overhaul: Traits and Occupations" mod is in-use.
Happily enough, this update removed some code I was uncomfortable to have, as it was a copy/paste of the vanilla code, and I really, really don't like doing that.