[modpack] Automobiles [automobiles_pck]

User avatar
duckgo
Member
Posts: 205
Joined: Sun Sep 20, 2020 08:01
In-game: duckgo
Contact:

Re: [modpack] Automobiles [automobiles_pck]

by duckgo » Post

Muito bonito esses carros com modelos mais antigos , um bom trabalho XD

User avatar
apercy
Member
Posts: 645
Joined: Wed Mar 25, 2020 16:31
GitHub: APercy
In-game: APercy
Location: Pinheiral - RJ - Brazil

Re: [modpack] Automobiles [automobiles_pck]

by apercy » Post

duckgo wrote:
Wed Mar 02, 2022 17:19
Muito bonito esses carros com modelos mais antigos , um bom trabalho XD
Obrigado!!!!!
Ainda virão outros ;)

User avatar
apercy
Member
Posts: 645
Joined: Wed Mar 25, 2020 16:31
GitHub: APercy
In-game: APercy
Location: Pinheiral - RJ - Brazil

Re: [modpack] Automobiles [automobiles_pck]

by apercy » Post

Now the cars have inventory. To access the inventory, hold E key (aux) and right click it. Only in github for tests, soon I'll update at ContentDB too

User avatar
apercy
Member
Posts: 645
Joined: Wed Mar 25, 2020 16:31
GitHub: APercy
In-game: APercy
Location: Pinheiral - RJ - Brazil

Re: [modpack] Automobiles [automobiles_pck]

by apercy » Post

One way to build roads is using the various slab cuts from saw mod

Image

And yesterday the blend files from the vehicles was added to main package

User avatar
apercy
Member
Posts: 645
Joined: Wed Mar 25, 2020 16:31
GitHub: APercy
In-game: APercy
Location: Pinheiral - RJ - Brazil

Re: [modpack] Automobiles [automobiles_pck]

by apercy » Post

Added a motorcycle. It's under development but playable.
photo_2022-09-11_11-58-42.jpg
photo_2022-09-11_11-58-42.jpg (142.81 KiB) Viewed 4442 times
photo_2022-09-11_11-58-41.jpg
photo_2022-09-11_11-58-41.jpg (136.01 KiB) Viewed 4442 times

User avatar
apercy
Member
Posts: 645
Joined: Wed Mar 25, 2020 16:31
GitHub: APercy
In-game: APercy
Location: Pinheiral - RJ - Brazil

Re: [modpack] Automobiles [automobiles_pck]

by apercy » Post

Now all vehicles can be driven using mouse control. It can be activated on vehicle dialog.

User avatar
apercy
Member
Posts: 645
Joined: Wed Mar 25, 2020 16:31
GitHub: APercy
In-game: APercy
Location: Pinheiral - RJ - Brazil

Re: [modpack] Automobiles [automobiles_pck]

by apercy » Post

Some "mostri marini" asked me to make something for them to travel the world. So good luck to Luca and Alberto
screenshot_20221127_154305.png
screenshot_20221127_154305.png (643.19 KiB) Viewed 4255 times

ShadMOrdre
Member
Posts: 1118
Joined: Mon Dec 29, 2014 08:07
Location: USA

Re: [modpack] Automobiles [automobiles_pck]

by ShadMOrdre » Post

Apercy,

Any chance you would consider making Automobiles and your boat and airplane mods similar to Steampunk_blimp, in that you've removed the dependency on mobkit?

Would you also consider taking a try at a horse drawn wagon / carriage and an "Age of Discovery" era masted ship.


Shad
Attachments
screenshot_20221117_233740.jpg
screenshot_20221117_233740.jpg (238.25 KiB) Viewed 4251 times
screenshot_20221117_175319.jpg
screenshot_20221117_175319.jpg (252.56 KiB) Viewed 4251 times

User avatar
apercy
Member
Posts: 645
Joined: Wed Mar 25, 2020 16:31
GitHub: APercy
In-game: APercy
Location: Pinheiral - RJ - Brazil

Re: [modpack] Automobiles [automobiles_pck]

by apercy » Post

ShadMOrdre wrote:
Sun Nov 27, 2022 19:24
Apercy,

Any chance you would consider making Automobiles and your boat and airplane mods similar to Steampunk_blimp, in that you've removed the dependency on mobkit?

Would you also consider taking a try at a horse drawn wagon / carriage and an "Age of Discovery" era masted ship.


Shad
I removed mobkit dependency yet!
I was planning a rigged sail ship, but its paused for a while, I need to learn more about the right way to operate one.
currently I'm against the use of the poor horses to pull a carriage, but I could try something in future as a mod :)

ShadMOrdre
Member
Posts: 1118
Joined: Mon Dec 29, 2014 08:07
Location: USA

Re: [modpack] Automobiles [automobiles_pck]

by ShadMOrdre » Post

apercy wrote:
Sun Nov 27, 2022 19:43
I was planning a rigged sail ship, but its paused for a while, I need to learn more about the right way to operate one.
This is good to hear!

Yes, poor horses. I only ask as this fits in line with historical modes of transport, and would offer yet another awesome way to recreate certain themes.

Also, I wanted to point you to this model, by stu, the author of 3d_armor. It would fit nicely with Demoiselle and Steampunk_blimp. I thought maybe you could do something with it.... :)

Shad

User avatar
Irremann
Member
Posts: 50
Joined: Fri Jan 10, 2020 06:03
GitHub: Irremann
Location: Russia, Pereslavl-Zalesskiy

Re: [modpack] Automobiles [automobiles_pck]

by Irremann » Post

apercy, hello. I just copied this part from the old version of the mod and the problem with the "sit" was gone. I'll upload it to my server and test it.

Code: Select all

-- attach player
function automobiles_lib.attach_driver(self, player)
    local name = player:get_player_name()
    self.driver_name = name

    -- attach the driver
    player:set_attach(self.driver_seat, "", {x = 0, y = 0, z = 0}, {x = 0, y = 0, z = 0})
    local eye_y = -4
    if automobiles_lib.detect_player_api(player) == 1 then
        eye_y = 2.5
    end
    player:set_eye_offset({x = 0, y = eye_y, z = 0}, {x = 0, y = eye_y, z = -30})
    player_api.player_attached[name] = true
    -- make the driver sit
    minetest.after(0.2, function()
        player = minetest.get_player_by_name(name)
        if player then
	        player_api.set_animation(player, "sit")
            --apply_physics_override(player, {speed=0,gravity=0,jump=0})
        end
    end)
end

User avatar
apercy
Member
Posts: 645
Joined: Wed Mar 25, 2020 16:31
GitHub: APercy
In-game: APercy
Location: Pinheiral - RJ - Brazil

Re: [modpack] Automobiles [automobiles_pck]

by apercy » Post

Irremann wrote:
Sun Dec 11, 2022 12:07
apercy, hello. I just copied this part from the old version of the mod and the problem with the "sit" was gone. I'll upload it to my server and test it.

Code: Select all

-- attach player
function automobiles_lib.attach_driver(self, player)
    local name = player:get_player_name()
    self.driver_name = name

    -- attach the driver
    player:set_attach(self.driver_seat, "", {x = 0, y = 0, z = 0}, {x = 0, y = 0, z = 0})
    local eye_y = -4
    if automobiles_lib.detect_player_api(player) == 1 then
        eye_y = 2.5
    end
    player:set_eye_offset({x = 0, y = eye_y, z = 0}, {x = 0, y = eye_y, z = -30})
    player_api.player_attached[name] = true
    -- make the driver sit
    minetest.after(0.2, function()
        player = minetest.get_player_by_name(name)
        if player then
	        player_api.set_animation(player, "sit")
            --apply_physics_override(player, {speed=0,gravity=0,jump=0})
        end
    end)
end
But the problem keeps on 5.7 version... I need to find another way to do it

User avatar
apercy
Member
Posts: 645
Joined: Wed Mar 25, 2020 16:31
GitHub: APercy
In-game: APercy
Location: Pinheiral - RJ - Brazil

Re: [modpack] Automobiles [automobiles_pck]

by apercy » Post

Yesterday I put the Time Machine Delorean on ContentDB too. But it have no recipe, just the default Delorean has it. The time machine version is incomplete yet, but is flyable. To fly you have to turn the fly mode on, through the vehicle form, then use Jump to gain altitude and Shift to lose. Once it hits the ground it will automatically turn off the flight mode. Be carefull.
screenshot_20221212_201524.png
screenshot_20221212_201524.png (745.66 KiB) Viewed 4120 times
minetet bttf.png
minetet bttf.png (963.64 KiB) Viewed 4120 times

User avatar
apercy
Member
Posts: 645
Joined: Wed Mar 25, 2020 16:31
GitHub: APercy
In-game: APercy
Location: Pinheiral - RJ - Brazil

Re: [modpack] Automobiles [automobiles_pck]

by apercy » Post

some improvements today, now some instruments can be seen on dark

User avatar
Irremann
Member
Posts: 50
Joined: Fri Jan 10, 2020 06:03
GitHub: Irremann
Location: Russia, Pereslavl-Zalesskiy

Re: [modpack] Automobiles [automobiles_pck]

by Irremann » Post

I installed the mod on the server and got terrible lags. The motorcycle jerks and almost does not go. The buggy and roadster drive normally only in a straight line. When I try to turn, lags begin.

Which surface check or spot check under the light heavily loads network?

With the same set of mods on my PC, everything is fine.

User avatar
apercy
Member
Posts: 645
Joined: Wed Mar 25, 2020 16:31
GitHub: APercy
In-game: APercy
Location: Pinheiral - RJ - Brazil

Re: [modpack] Automobiles [automobiles_pck]

by apercy » Post

Irremann wrote:
Thu Dec 15, 2022 14:02
I installed the mod on the server and got terrible lags. The motorcycle jerks and almost does not go. The buggy and roadster drive normally only in a straight line. When I try to turn, lags begin.

Which surface check or spot check under the light heavily loads network?

With the same set of mods on my PC, everything is fine.
I did not any change to the drive mechanics. I'll try to reproduce it.

Dead monkey 404
Member
Posts: 24
Joined: Tue Apr 13, 2021 11:05
In-game: Deadmonkey404

Re: [modpack] Automobiles [automobiles_pck]

by Dead monkey 404 » Post

Player eye postion in first person is too low,tested on Minetest 5.6.1stable win64 , and 5.7.0 dev sfan5 build on Windows 11 pro 64 bit. Both are glitched and lower where in Android version, the eye position is correct, same 5.6.1 stable Official Android build .


_forgive my english_
Look through a black mirror, darkly... and see your sins unveiled.

User avatar
apercy
Member
Posts: 645
Joined: Wed Mar 25, 2020 16:31
GitHub: APercy
In-game: APercy
Location: Pinheiral - RJ - Brazil

Re: [modpack] Automobiles [automobiles_pck]

by apercy » Post

Dead monkey 404 wrote:
Fri Feb 03, 2023 13:40
Player eye postion in first person is too low,tested on Minetest 5.6.1stable win64 , and 5.7.0 dev sfan5 build on Windows 11 pro 64 bit. Both are glitched and lower where in Android version, the eye position is correct, same 5.6.1 stable Official Android build .


_forgive my english_
Thank you. Could you tell me if you have any skin mod installed on your world? So I can adapt the sit code to it.

Dead monkey 404
Member
Posts: 24
Joined: Tue Apr 13, 2021 11:05
In-game: Deadmonkey404

Re: [modpack] Automobiles [automobiles_pck]

by Dead monkey 404 » Post

I have edit_skin by Johannes installed. And on other I have epidermis and skin maker.
Look through a black mirror, darkly... and see your sins unveiled.

User avatar
apercy
Member
Posts: 645
Joined: Wed Mar 25, 2020 16:31
GitHub: APercy
In-game: APercy
Location: Pinheiral - RJ - Brazil

Re: [modpack] Automobiles [automobiles_pck]

by apercy » Post

Thank you, I'll try to reproduce and then fix it :)

Dead monkey 404
Member
Posts: 24
Joined: Tue Apr 13, 2021 11:05
In-game: Deadmonkey404

Re: [modpack] Automobiles [automobiles_pck]

by Dead monkey 404 » Post

Hey apercy problem wasn't with the skin mods, it was with the advanced train offset fix.
Look through a black mirror, darkly... and see your sins unveiled.

User avatar
apercy
Member
Posts: 645
Joined: Wed Mar 25, 2020 16:31
GitHub: APercy
In-game: APercy
Location: Pinheiral - RJ - Brazil

Re: [modpack] Automobiles [automobiles_pck]

by apercy » Post

Dead monkey 404 wrote:
Mon Feb 13, 2023 13:52
Hey apercy problem wasn't with the skin mods, it was with the advanced train offset fix.
Thank you! I was trying to reproduce and got nothing. I’ll try again this week!

Dead monkey 404
Member
Posts: 24
Joined: Tue Apr 13, 2021 11:05
In-game: Deadmonkey404

Re: [modpack] Automobiles [automobiles_pck]

by Dead monkey 404 » Post

Any progress?
Look through a black mirror, darkly... and see your sins unveiled.

User avatar
apercy
Member
Posts: 645
Joined: Wed Mar 25, 2020 16:31
GitHub: APercy
In-game: APercy
Location: Pinheiral - RJ - Brazil

Re: [modpack] Automobiles [automobiles_pck]

by apercy » Post

Dead monkey 404 wrote:
Fri Feb 17, 2023 14:14
Any progress?
I cannot reproduce :(
Did you tried to update the mod? I made some improvements recently and maybe this fixed the issue

Dead monkey 404
Member
Posts: 24
Joined: Tue Apr 13, 2021 11:05
In-game: Deadmonkey404

Re: [modpack] Automobiles [automobiles_pck]

by Dead monkey 404 » Post

I'll try
Look through a black mirror, darkly... and see your sins unveiled.

Post Reply

Who is online

Users browsing this forum: Ahrefs [Bot] and 11 guests