[Mod] Boats [boats]

User avatar
CraigyDavi
Member
Posts: 582
Joined: Sat Aug 10, 2013 13:08
GitHub: davisonio
IRC: davisonio
In-game: CraigyDavi
Location: Hampshire, UK
Contact:

by CraigyDavi » Post

deasanta wrote:Subject: [Contribution] [PilzAdam/boats]

Boats that can be used in boats mod

http://dl.dropboxusercontent.com/u/1389 ... ts-001.jpg
Picture - http://dl.dropboxusercontent.com/u/1389 ... ts-001.jpg

Original: https://github.com/PilzAdam/boats
GitHub: https://github.com/deasanta/minetest-deasanta
Download: https://github.com/deasanta/minetest-de ... master.zip

License: (see README.txt)
Models: WTFPL
Textures: WTFPL
Wow good job! The boats look great.

User avatar
Evergreen
Member
Posts: 2135
Joined: Sun Jan 06, 2013 01:22
GitHub: 4Evergreen4
IRC: EvergreenTree
In-game: Evergreen
Location: A forest in the midwest
Contact:

by Evergreen » Post

deasanta wrote:Subject: [Contribution] [PilzAdam/boats]

Boats that can be used in boats mod

http://dl.dropboxusercontent.com/u/1389 ... ts-001.jpg
Picture - http://dl.dropboxusercontent.com/u/1389 ... ts-001.jpg

Original: https://github.com/PilzAdam/boats
GitHub: https://github.com/deasanta/minetest-deasanta
Download: https://github.com/deasanta/minetest-de ... master.zip

License: (see README.txt)
Models: WTFPL
Textures: WTFPL
These look much better than the ones that pilzadam made. They look better than minecraft's boats imo.
Back from the dead!

User avatar
PilzAdam
Member
Posts: 4026
Joined: Fri Jul 20, 2012 16:19
GitHub: PilzAdam
IRC: PilzAdam
Location: Germany

by PilzAdam » Post

Evergreen wrote:These look much better than the ones that pilzadam made. They look better than minecraft's boats imo.
I actually havent made them, someone gave them to me.

User avatar
Evergreen
Member
Posts: 2135
Joined: Sun Jan 06, 2013 01:22
GitHub: 4Evergreen4
IRC: EvergreenTree
In-game: Evergreen
Location: A forest in the midwest
Contact:

by Evergreen » Post

PilzAdam wrote:
Evergreen wrote:These look much better than the ones that pilzadam made. They look better than minecraft's boats imo.
I actually havent made them, someone gave them to me.
In that case, better than who ever gave them to you.
Back from the dead!

Purrune
Member
Posts: 19
Joined: Thu Jul 18, 2013 21:03

by Purrune » Post

good and simple

User avatar
Achilles
Member
Posts: 247
Joined: Sun Dec 15, 2013 11:55
In-game: Achilles
Location: Excuse Me???? -_-

Re: [Mod] Boats [boats]

by Achilles » Post

Another amazing mod PilzAdam :)

Maybe we should have paddles also and possibly different types of boats:

-Jet-Ski's
-Motor Boats
-Canoes
-Ships
-Some others...

They could all have different speeds and sizes the faster ones being harder to make...

(If it doesn't cause lag)

Lomic
New member
Posts: 4
Joined: Thu Oct 30, 2014 19:37

Re: [Mod] Boats [boats]

by Lomic » Post

Hi erveryon, I'm trying to use deasanta's mod, I've installed and actived "ds_rowboat" and "ds_sailboat" for my world, but in the game I can't build the boat.

I try this : 5 wooden planks set like a "U" on the 6 bottom boxes of the crafting tool, but it don't turn into a boat.

I've discovered the boat in the wiki, where it was not mentionned that you need a mod to obtain it, but as I was not succeeding to build it as shown, I googled to find more and here I am.

My PC is running with Ubuntu, I have Minetest 0.4.10.

If someone can help, it would be great, thanks

User avatar
Topywo
Member
Posts: 1721
Joined: Fri May 18, 2012 20:27

Re: [Mod] Boats [boats]

by Topywo » Post

@Lomic
That's strange. Boats is a mod that's included in the minetest_game:

games/minetest_game/mods/boats

Create a minetest_game without enabling other mods. Can you now make a boat?

ds_rowboat and ds_sailboat (depends.txt must be default and boats. Those mods probably were made before boats became part of minetest_game.

Crafting:

Code: Select all

minetest.register_craft({
output = "ds_rowboat:ds_rowboat",
recipe = {
{"", "", ""},
{"", "", ""},
{"boats:boat", "boats:boat", ""},
},


minetest.register_craft({
output = "ds_sailboat:ds_sailboat",
recipe = {
{"", "", ""},
{"", "", ""},
{"boats:boat", "boats:boat", "boats:boat"},
},
})
Edit: Maybe this helps (too). Only extract ds_rowboat and ds_sailboat in your mod folders. Then, after writing boats in the depends.txt try again.

Lomic
New member
Posts: 4
Joined: Thu Oct 30, 2014 19:37

Re: [Mod] Boats [boats]

by Lomic » Post

Topywo wrote:That's strange. Boats is a mod that's included in the minetest_game:

games/minetest_game/mods/boats
my path is "/home/lomic/.minetest/mods" and before I put ds_rowboat and ds_sailboat, it was empty, is there any other location I should check?
Create a minetest_game without enabling other mods. Can you now make a boat?
I don't have other mods.
ds_rowboat and ds_sailboat (depends.txt must be default and boats. Those mods probably were made before boats became part of minetest_game.
ok, I tried to add "boats" in depends.txt but nothing changed

I don't get what I am supposed to do with your "crafting" code?

Thanks for your help anyway :)

User avatar
Topywo
Member
Posts: 1721
Joined: Fri May 18, 2012 20:27

Re: [Mod] Boats [boats]

by Topywo » Post

Lomic wrote:is there any other location I should check?
I'm not very familiair with the system-wide build, but found this:
/usr/share/minetest/games/[gameid]/mods/
~/.minetest/mods/[gameid]/ <-- User-installed mods
~/.minetest/worlds/[worldname]/worldmods/

The first line describes the place of the minetestgames. Standard/default game, the [gameid] is minetest_game. When you doubleclick on it's mods, there are several mods that belong to it (like default, flowers and also boats).
Lomic wrote:ok, I tried to add "boats" in depends.txt but nothing changed
I tried out and noticed I could craft the deasanta boats, so my mistake.
Lomic wrote:I don't get what I am supposed to do with your "crafting" code?
The deasanta boats are crafted by placing 2 boats and 3 boats on the botttom line of the crafting grid.

- Did you try out creative? If the ds_rowboat and ds_sailboat are loaded they should appear in it.
- Did you create a minetest game? (if you created the development game or maybe another game without the boats mod, you can't make one)
- Only the ds_rowboat and ds_sailboat folders must be put (directly) into the mods folder, without any parent directory. Don't use/install everything else from the zip.

I hope it works.

Lomic
New member
Posts: 4
Joined: Thu Oct 30, 2014 19:37

Re: [Mod] Boats [boats]

by Lomic » Post

thanks for the other path, I found it here : /usr/share/games/minetest/games/minetest_game/mods

and in fact I don't have a mod called "boats" in here, those are the default mods installed with the game

Code: Select all

bones
bucket
creative
default
doors
dye
external_legacy
farming
flowers
fire
give_initial_stuff
legacy
screwdriver
stairs
vessels
wool
in fact I realised that I get an error message when I try to start the game with "ds_rowboat" activated and "boats" added to depends.txt, it says dependency not satisfied or something like that but it is logical if I don't have the "boats" mod

I've seen that I can have boats in creative mod (they are available among the items) but I can't use them.

User avatar
Topywo
Member
Posts: 1721
Joined: Fri May 18, 2012 20:27

Re: [Mod] Boats [boats]

by Topywo » Post

@Lomic

It looks to me you are using (the) minetest(_game from) 0.4.9 instead of 0.4.10. There is legacy still in it and no boats.

Most of the times the development versions from minetest work better (with the latests (updates of) mods) or use at least the 0.4.10 stable version.

Here are some links:

viewforum.php?f=42

http://minetest.net/download

Or build minetest yourself (look under GitHub, readme.txt, Linux):
https://github.com/minetest/minetest

Alternative, download from GithHub minetest_game and extract boats into your minetest_game folder. Though this might not work if the recent boats mod is to new for minetest 0.4.9 (didn't try it)

Lomic
New member
Posts: 4
Joined: Thu Oct 30, 2014 19:37

Re: [Mod] Boats [boats]

by Lomic » Post

Topywo wrote:Alternative, download from GithHub minetest_game and extract boats into your minetest_game folder. Though this might not work if the recent boats mod is to new for minetest 0.4.9 (didn't try it)
it doesn't work, I will habe to install 0.4.10. I remember now, I used Ubuntu software library to install the game and I've just checked, it is the 0.4.9

User avatar
TenPlus1
Member
Posts: 3700
Joined: Mon Jul 29, 2013 13:38
In-game: TenPlus1
Contact:

Re: [Mod] Boats [boats]

by TenPlus1 » Post

I've always liked the boat mod even though on server it lags a tad, so here's a little code change to make it turn quicker, and if you hit the shore too hard the boat is destroyed and drops 3 wood :) (wip)

https://github.com/tenplus1/boats

User avatar
philipbenr
Member
Posts: 1897
Joined: Fri Jun 14, 2013 01:56
GitHub: philipbenr
IRC: philipbenr
In-game: robinspi
Location: United States

Re: [Mod] Boats [boats]

by philipbenr » Post

Cool idea, TenPlus1. I like it better than what we are using now.

Post Reply

Who is online

Users browsing this forum: No registered users and 6 guests