[Mod] Boats [boats]

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

[Mod] Boats [boats]

by PilzAdam » Post

Hello everyone!
This is mod adds boats to Minetest. Craft a boat like this:

Code: Select all

wood      wood
wood wood wood
place it on water and jump in with a rightclick. Turn the boat with A and D and accelerate and decelerate with W and S.
Have Fun!

If anyone can provide new textures I will gladly take them.

License:
WTFPL

Depends:
default

GitHub:
https://github.com/PilzAdam/boats

Download:
https://github.com/PilzAdam/boats/archive/master.zip

User avatar
Jeija
Member
Posts: 686
Joined: Fri Dec 23, 2011 21:46
Location: Nürtingen, Germany

by Jeija » Post

Great mod!
Redstone for minetest: Mesecons (mesecons.net)

User avatar
Zeg9
Member
Posts: 608
Joined: Fri Sep 21, 2012 11:02
Location: France

by Zeg9 » Post

o_O Great mod again PilzAdam !
I made a few (a lot of?) mods for minetest: here is a list.
See also the MT-Faithful texture pack (work in progress).

User avatar
babe223
Member
Posts: 141
Joined: Mon Nov 14, 2011 13:36
Location: Brasil,Rio de Janeiro

by babe223 » Post

very good mod ^ ^ boat, the question will be what to do with a car that your mod?
Bem vindos Brasileiros,eu sou primeiro brasileiro daqui do forum, espero que tragam bastante mods

[MOD] torch http://minetest.net/forum/viewtopic.php?id=3021
[MOD]HATCHE:http://minetest.net/forum/viewtopic.php?id=3458

User avatar
Zeg9
Member
Posts: 608
Joined: Fri Sep 21, 2012 11:02
Location: France

by Zeg9 » Post

A question: where does the power come from ? ;)
I made a few (a lot of?) mods for minetest: here is a list.
See also the MT-Faithful texture pack (work in progress).

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

by PilzAdam » Post

Zeg9 wrote:A question: where does the power come from ? ;)
IDK, ask the Minetest god.

User avatar
Mito551
Member
Posts: 1271
Joined: Sat Jun 16, 2012 15:03

by Mito551 » Post

is this strange that these boats work better than minecraft ones?
Last edited by Mito551 on Sun Dec 09, 2012 20:42, edited 1 time in total.

User avatar
jordan4ibanez
Member
Posts: 1923
Joined: Tue Sep 27, 2011 18:44
GitHub: jordan4ibanez
IRC: jordan4ibanez
In-game: jordan4ibanez

by jordan4ibanez » Post

These boats work better than minecraft boats
hello, am program. do language in rust. make computer do. okay i go now.

User avatar
jordan4ibanez
Member
Posts: 1923
Joined: Tue Sep 27, 2011 18:44
GitHub: jordan4ibanez
IRC: jordan4ibanez
In-game: jordan4ibanez

by jordan4ibanez » Post

You should give them a fancy drawtype :D
hello, am program. do language in rust. make computer do. okay i go now.

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

by Topywo » Post

Great!

Josh
Member
Posts: 1146
Joined: Fri Jun 29, 2012 23:11
Location: Victoria, Australia

by Josh » Post

Epic! Im gonna try this out :)

leo_rockway
Member
Posts: 211
Joined: Tue Jul 31, 2012 20:37

by leo_rockway » Post

Awesome. Thank you!
Try Skyblock for MineClone 2
Listen to this sound and music pack!

Josh
Member
Posts: 1146
Joined: Fri Jun 29, 2012 23:11
Location: Victoria, Australia

by Josh » Post

Josh wrote:Epic! Im gonna try this out :)
Really good! But riding the boat is buggy.

User avatar
InfinityProject
Member
Posts: 1009
Joined: Sat Mar 17, 2012 00:52
Location: World of Infinity, US

by InfinityProject » Post

This truly is amazing. Could you use a 3d mesh (Taoki) for this?

tinoesroho
Member
Posts: 570
Joined: Fri Feb 17, 2012 21:55
Location: Canada

by tinoesroho » Post

Awesome stuff - loving it!
We are what we create.

I tinker and occasionally make (lousy) mods. Currently building an MMO subgame and updating mods. Pirate Party of Canada member. Sporadic author. 21 years old.

My github:
https://github.com/tinoesroho/

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

by PilzAdam » Post

InfinityProject wrote:This truly is amazing. Could you use a 3d mesh (Taoki) for this?
As I mentioned in the first post the graphics are just dummy images/models. If anyone can provide better graphics or an model I will add them. Also nodeboxes are welcome.

thetoon
Member
Posts: 106
Joined: Tue Dec 11, 2012 12:55

by thetoon » Post

Ok, here is a naïve contribution : http://dl.free.fr/khCLm1Iv6 (put all the files in /mods/minetest/boat/models, create it before)

And here is how the boat definition (in init.lua) should be modified :

Code: Select all

local boat = {
    physical = true,
    collisionbox = {-0.5,-0.4,-0.5, 0.5,0.4,0.5},
    visual = "mesh",
    mesh = "boat.x",
    -- visual_size = {x=1.2, y=0.8},
    textures = {"boat.png"},
    driver = nil,
    v = 0,
}
Maybe two animation frames should be defined : one with the boat higher than the other (for when it's empty).

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

by PilzAdam » Post

thetoon wrote:Ok, here is a naïve contribution : http://dl.free.fr/khCLm1Iv6 (put all the files in /mods/minetest/boat/models, create it before)

And here is how the boat definition (in init.lua) should be modified :

Code: Select all

local boat = {
    physical = true,
    collisionbox = {-0.5,-0.4,-0.5, 0.5,0.4,0.5},
    visual = "mesh",
    mesh = "boat.x",
    -- visual_size = {x=1.2, y=0.8},
    textures = {"boat.png"},
    driver = nil,
    v = 0,
}
Maybe two animation frames should be defined : one with the boat higher than the other (for when it's empty).
Thank you!
But I think its a bit too... big. Maybe create something smaller (maybe you can look at the Minecraft ones to get inspiration).
But anyway, thanks a lot for trying!
Here is a picture how it looks in-game:
Image
If people like this I will add it, but I think some smaller model would fit better.

thetoon
Member
Posts: 106
Joined: Tue Dec 11, 2012 12:55

by thetoon » Post

PilzAdam wrote:But I think its a bit too... big. Maybe create something smaller (maybe you can look at the Minecraft ones to get inspiration).
(Thanks for adding the screenshot, btw)

Well, it's far from perfect or finished. Took me a couple minutes on my lunch break. I'd like to try something more "rafty", as soon as I have time to.

Regarding its size, I'm not too sure. After all, the player should fit. I'll see what I can do.

Now, when it comes to Minecraft inspiration, I try to forget I ever played this game (as good as it is) when modelling. :]

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

by PilzAdam » Post

I created a branch for the model. Download:
https://github.com/PilzAdam/boats/archive/model.zip

Comp52
Member
Posts: 56
Joined: Sun Oct 07, 2012 00:49

by Comp52 » Post

I get an error from line 53: on_rightclick, or something like that. Do I need the latest version? i'm using 4.3

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

by PilzAdam » Post

Comp52 wrote:I get an error from line 53: on_rightclick, or something like that. Do I need the latest version? i'm using 4.3
Sure you get an error when the mod tries to attach the player with a function that is added in 0.4.4

User avatar
0gb.us
Member
Posts: 841
Joined: Sun Sep 16, 2012 01:55
Location: 0gb.us:30000
Contact:

by 0gb.us » Post

Oh, nice. I forget who I was talking to the other day, but they were telling me that Minetest should have boats added to it.

thetoon
Member
Posts: 106
Joined: Tue Dec 11, 2012 12:55

by thetoon » Post

Ok, here is a whole other take on the matter : http://dl.free.fr/fHqvYJm3h

This is also my first try at UV texturing under Blender, so it's a bit rough.

Image

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

by PilzAdam » Post

thetoon wrote:Ok, here is a whole other take on the matter : http://dl.free.fr/fHqvYJm3h

This is also my first try at UV texturing under Blender, so it's a bit rough.

Image
This looks better, but is too small. If you make this one bigger and remove the thing at the back of it its fine.

Post Reply

Who is online

Users browsing this forum: No registered users and 3 guests