2020-05-25 13:57:49 -05:00
# Vehicle Mash [![Build status](https://github.com/Panquesito7/vehicle_mash/workflows/build/badge.svg)](https://github.com/Panquesito7/vehicle_mash/actions)
2020-05-15 17:57:42 -05:00
- Current version: 2.2
- By [blert2112 ](https://github.com/blert2112 ), and improvements by [Panquesito7 ](https://github.com/Panquesito7 ).
2015-05-01 01:36:59 -04:00
2015-05-01 01:21:31 -04:00
A merge of all the vehicles from:
2019-06-13 17:54:26 -05:00
- "Cars" by Radoslaw Slowik.
- "Mesecars" by paramat.
- "Car" by Esteban.
- "Boats" by PilzAdam.
- "Hovercraft" by Stuart Jones.
2015-05-01 01:36:59 -04:00
2019-06-13 17:54:26 -05:00
- 30 vehicles currently.
2015-05-21 19:56:20 -04:00
- Certain vehicles can now carry passengers. Currently one passenger max.
2015-05-01 01:21:31 -04:00
- Disable vehicles by commenting out it's 'dofile' line in init.lua
- Adding new vehicles is a simple matter of:
- create/aquire vehicle model and textures
- create, and name appropriately, a new .lua file for the vehicle based on one of the existing ones
- change settings in the file you created to reflect the new vehicle
2020-05-15 17:57:42 -05:00
- add a new line to init.lua to load the vehicle `dofile(minetest.get_modpath("vehicle_mash") .. "/NAME_OF_VEHICLE.lua")`
2015-05-01 01:36:59 -04:00
2020-05-15 17:57:42 -05:00
## Installation
- Unzip the archive, rename the folder to `vehicle_mash` and place it in
2019-06-13 17:54:26 -05:00
../minetest/mods/
2015-05-01 01:36:59 -04:00
2019-06-13 17:54:26 -05:00
- GNU/Linux: If you use a system-wide installation place
it in ~/.minetest/mods/.
- If you only want this to be used in a single world, place
the folder in worldmods/ in your world directory.
2020-05-15 17:57:42 -05:00
For further information or help, see:\
2019-06-13 17:54:26 -05:00
https://wiki.minetest.net/Installing_Mods
2020-05-15 17:57:42 -05:00
## License
2015-05-01 01:21:31 -04:00
All licenses of previous works, of course, apply. (see credits below)
As far as the work I did... It's really just a fork of a fork of a fork of a fork, tossed it all into a blender and spun it on puree for a bit. Baked it for a while and set it on the counter to cool. What I mean is, make what you will of it, it matters not to me.
2015-05-01 01:36:59 -04:00
2020-05-15 17:57:42 -05:00
## Dependencies
- `default` (included in [Minetest Game ](https://github.com/minetest/minetest_game ))
2020-05-22 23:31:44 -05:00
- [`lib_mount` ](https://github.com/Panquesito7/lib_mount )
2015-05-01 01:36:59 -04:00
2020-05-15 17:57:42 -05:00
## Requirements
- `vehicle_mash` 2.1.0 for MT 5.0.0+.
- `vehicle_mash` 2.0 for MT 0.4.12+ (may work on older versions).
2019-06-13 17:54:26 -05:00
2020-05-15 17:57:42 -05:00
## TODO
2015-05-01 01:21:31 -04:00
- crafting
2015-05-01 01:36:59 -04:00
2020-05-15 17:57:42 -05:00
## Changelog
2019-06-13 17:54:26 -05:00
2020-05-15 17:57:42 -05:00
v2.2 5/15/2020
* Move files to a folder of its own.
* Add GitHub workflow and LuaCheck.
* Add `settingtypes.txt` to select enabled cars.
* Improve `README.md` .
* Short a bit the code.
2019-06-13 17:54:26 -05:00
v2.1 6/10/2019
* Fix attachment positions for drivers/passengers on all vehicles.
* Adds red, green, and yellow hovercrafts.
2020-05-15 17:57:42 -05:00
* Use `mod.conf` for name, description and dependencies.
* Support for MT 5.0.0+.
2019-06-13 17:54:26 -05:00
2016-08-13 14:59:51 -04:00
v2.0 8/13/2016
2019-06-13 17:54:26 -05:00
* converted to use the lib_mount mod for "driving"
* enlarged F1 and 126r models x2.5
* added yellow Mesecar
* updated boat model from default boat mod
* various speed/braking/turning/acceleration tweaks
* various collision box tweaks
* various other tweaks I probably forgot about
2020-05-15 17:57:42 -05:00
* last version supporting MT 0.4.12+.
2019-06-13 17:54:26 -05:00
2015-05-21 19:56:20 -04:00
v1.4 5/19/2015
2019-06-13 17:54:26 -05:00
* attach (one) passenger added
* reorganized vehicle definition file code and added some variables pertaining to passengers
* added a vehicle definition file template with comments
* cleaned up to remove code dulplication
2015-05-06 00:13:25 -04:00
v1.3 5/5/2015
2019-06-13 17:54:26 -05:00
* player now sits forward in vehicles
* tweaked player sit positions
* tweaked collison boxes
* proper placement on_ground/in_water
v1.2 5/1/2015
* added boats
* changed name so to not conflict with other mods
2015-05-01 01:21:31 -04:00
v1.1 4/25/2015
2019-06-13 17:54:26 -05:00
* car won't come to a complete stop (fixed)
2015-05-01 01:21:31 -04:00
v1.0 4/24/2015
2015-05-01 01:36:59 -04:00
2019-06-13 17:54:26 -05:00
* first release
2020-05-15 17:57:42 -05:00
## Bugs, suggestions and new features
2019-06-13 17:54:26 -05:00
Report bugs or suggest ideas by [creating an issue ](https://github.com/blert2112/vehicle_mash/issues/new ).
If you know how to fix an issue, consider opening a [pull request ](https://github.com/blert2112/vehicle_mash/compare ).
2020-05-15 17:57:42 -05:00
## Credit where credit is due
2015-05-01 01:21:31 -04:00
- F1 and 126R cars from: "Cars" by Radoslaw Slowik
2015-05-01 01:33:00 -04:00
- https://forum.minetest.net/viewtopic.php?f=9& t=8698
- License: Code WTFPL, modeles/textures CC BY-NC-ND 4.0
2015-05-01 01:21:31 -04:00
- Black, Blue, Brown, Cyan, Dark Green, Dark Grey, Green, Grey, Magenta, Orange, Pink, Red, Violet, White, Yellow, Hot Rod, Nyan Ride, Oerkki Bliss, and Road Master from: "Car" by Esteban
2015-05-01 01:33:00 -04:00
- https://forum.minetest.net/viewtopic.php?f=13& t=7407
- License:
- No info given in that mod but I am going to assume the credit for the original model goes to:
- Melcor and his CAR01 model
- https://forum.minetest.net/viewtopic.php?f=9& t=6512
- License: CC-BY-NC-SA
2015-05-01 01:21:31 -04:00
- MeseCars from: "Mesecars" by paramat
2015-05-01 01:33:00 -04:00
- https://forum.minetest.net/viewtopic.php?f=11& t=7967
- Licenses: Code WTFPL, textures CC BY-SA
2015-05-01 01:21:31 -04:00
- Boats from "Boats" by PilzAdam
2015-05-01 01:33:00 -04:00
- textures: Zeg9
- model: thetoon and Zeg9, modified by PavelS(SokolovPavel)
- License: WTFPL
2015-05-01 01:21:31 -04:00
2015-05-06 00:13:25 -04:00
- Hovercraft from "Hovercraft" by Stuart Jones
2015-05-06 00:20:23 -04:00
- Licenses:
- textures: CC-BY-SA
- sounds: freesound.org
- Rocket Boost Engine Loop by qubodup - CC0
- CARTOON-BING-LOW by kantouth - CC-BY-3.0
- All other sounds: Copyright Stuart Jones - CC-BY-SA
2015-05-06 00:13:25 -04:00
2020-05-15 17:57:42 -05:00
I am sure many others deserve mention.\
If you feel left out let me know and I will add you in.
2015-05-01 01:21:31 -04:00
2019-06-13 17:54:26 -05:00
Enjoy!