[Game] Repixture [3.12.1]

Post Reply
User avatar
Hugues Ross
Developer
Posts: 72
Joined: Mon May 06, 2019 22:52
GitHub: Df458
Location: Kitchens, Pantries, etc.
Contact:

Re: [Game] Repixture [1.3.0]

by Hugues Ross » Post

Noticed a bug with items today:

When the item_drop mod spawns an item entity from a node drop, it disregards any metadata that was supposed to be on the item. Because creative mode moves the item directly to your inventory, this can cause mods that rely on metadata to give inconsistent results depending on if their node was broken while in creative mode or not.

User avatar
Wuzzy
Member
Posts: 4786
Joined: Mon Sep 24, 2012 15:01
GitHub: Wuzzy2
IRC: Wuzzy
In-game: Wuzzy
Contact:

Re: [Game] Repixture [1.3.0]

by Wuzzy » Post

Thanks for the report. I wonder how you found this bug, IIRC there aren't any nodes in the game that drop items with metadata.

User avatar
Hugues Ross
Developer
Posts: 72
Joined: Mon May 06, 2019 22:52
GitHub: Df458
Location: Kitchens, Pantries, etc.
Contact:

Re: [Game] Repixture [1.3.0]

by Hugues Ross » Post

I've got a mod in development with Repixture support planned. I worked around the issue on my end, but I figured it would be good to report the bug so that anyone in a similar situation in the future won't get blindsided.

racal
Member
Posts: 72
Joined: Tue May 26, 2020 08:49

Bug - weak torch

by racal » Post

Wall mounted weak torch (default:torch_weak_wall) burns eternally.

PS... Cool game/revival. :D

User avatar
MirceaKitsune
Member
Posts: 924
Joined: Sat May 21, 2011 22:31
GitHub: MirceaKitsune
IRC: Taoki
In-game: MirceaKitsune
Location: Romania, Bucharest

Re: [Game] Repixture [1.3.0]

by MirceaKitsune » Post

Gave this game a try last night. I really like the base idea of it, looks like a promising game with potential! Latest Git seems pretty simplistic though... it would be nice to see more features and items and complexity added over time.

User avatar
goats
Member
Posts: 212
Joined: Thu Nov 21, 2019 05:29

Re: [Game] Repixture [1.3.0]

by goats » Post

RePixture is just a preservation fork of Pixture, so it continues to work. It isn't going to evolve... unless someone wants fork and build on it. winkwink.

User avatar
Wuzzy
Member
Posts: 4786
Joined: Mon Sep 24, 2012 15:01
GitHub: Wuzzy2
IRC: Wuzzy
In-game: Wuzzy
Contact:

Re: [Game] Repixture [1.3.0]

by Wuzzy » Post

Note a game does not need to receive updates all the time to be “alive”. I mean, if the game is not broken, you can still play it, after all.
I also disagree that a game must be “evolving” to be legit. At one point you just to be done with it and move on.

That having said, yes, Repixture could definitely see more content and depth, but Repixture is not on my priority list for now. It's true, there is not a lot of … stuff … in this game. Even less than MTG, to be honest. The game relies more on style and atmospherics. Definitely exploration. But I currently don't have that many ideas for it, to be honest. But yes, I agree there is definitely untapped potential.

Thing is, there's always so many directions a game like this could be pushed to: Is the focus on adventure, combat, mining, creative bulding, exploration, …?

I think an obvious addition would be just more depth. Basically, more … stuff … of everything.

A key principle for Repixture I want to keep is simplicity. Simplicity in the sense of … only a few game rules / game mechanics. Repixture will definitely not be as complex as MineClone 2. But even with simple rules you can still build a vast world of possibilities … in theory. Like I said, I don't have that many ideas for Repixture now, but I also don't think a lot about it.

Anyway, Repixture will not be going anywhere for a long time, because I am focusing on other games. But you can still play it, we're past version 1.0.0 for a long time, after all.

User avatar
Wuzzy
Member
Posts: 4786
Joined: Mon Sep 24, 2012 15:01
GitHub: Wuzzy2
IRC: Wuzzy
In-game: Wuzzy
Contact:

Version 1.3.1 and version 1.3.2 released!

by Wuzzy » Post

This is just a bugfix release:
  • Fix a typo
  • Don't erase item metadata when dropping item
  • Don't generate caves in water
  • Fix weak wall torch never burning out
  • Don't mess with gravity when going to bed (fixes players that sometimes float above bed)
  • Fix player taking damage when damage is disabled
  • Fix TNT screwing up beds and doors

User avatar
Wuzzy
Member
Posts: 4786
Joined: Mon Sep 24, 2012 15:01
GitHub: Wuzzy2
IRC: Wuzzy
In-game: Wuzzy
Contact:

Version 1.3.3 released!

by Wuzzy » Post

Here's a new release, made for Minetest 5.3.0 to fix bugs.

Changelog:
  • New required Minetest version: 5.3.0
  • Fix breath bar not disappearing at all
  • Apply Minetest's native background statbar icons

User avatar
PEAK
Member
Posts: 187
Joined: Mon Jun 08, 2015 20:32
In-game: PEAK
Contact:

Boats for Repixture – quick and dirty

by PEAK » Post

Copy the mods "boats" and "player_api" from MinetestGame into the "mods" folder of pixture_revival.

In "init.lua" of "boats" only a few lines at the end have to be modified:

change this:

Code: Select all

minetest.register_craft({
	output = "boats:boat",
	recipe = {
		{"",           "",           ""          },
		{"group:wood", "",           "group:wood"},
		{"group:wood", "group:wood", "group:wood"},
	},
})

minetest.register_craft({
	type = "fuel",
	recipe = "boats:boat",
	burntime = 20,
})
to:

Code: Select all

crafting.register_craft({
	output = "boats:boat",
	items = {
		"group:planks 5",
		"default:fiber 4",
		"default:stick 2",
	},
})

crafting.register_craft({
	type = "fuel",
	recipe = "boats:boat",
	burntime = 20,
})

… and now: have fun!
I am okay with using the screenshots in all my posts for the website of Minetest (http://minetest.net).

catagent101
New member
Posts: 1
Joined: Mon Aug 24, 2020 16:45

Re: [Game] Repixture [1.3.3]

by catagent101 » Post

I found a bug. Flint and steel can light burned out torches on the floor and ceiling but not burned out torches on walls.

User avatar
Wuzzy
Member
Posts: 4786
Joined: Mon Sep 24, 2012 15:01
GitHub: Wuzzy2
IRC: Wuzzy
In-game: Wuzzy
Contact:

Version 1.3.4 released!

by Wuzzy » Post

Version 1.3.4 released!

Changelog:
  • Fix flint and steel failing to light up wall torches

tgree
New member
Posts: 1
Joined: Sat Nov 28, 2020 11:56

Re: [Game] Repixture [1.3.4]

by tgree » Post

Hi, nice game, my son loves it !

I wanted to report a little translation error in French:

https://repo.or.cz/Pixture/pixture_revi ... ault.fr.tr
46 Cobble=Bricoler

"Cobble" should be "Pavé"
(actually "to cobble" means "bricoler", auto-translate was probably involved there ;))

User avatar
Wuzzy
Member
Posts: 4786
Joined: Mon Sep 24, 2012 15:01
GitHub: Wuzzy2
IRC: Wuzzy
In-game: Wuzzy
Contact:

Version 1.3.5 released!

by Wuzzy » Post

Version 1.3.5 released!

Changelog:
  • Fix possible crash related to hunger
  • Fix translation of "cobble" in French (thanks, tgree!)
  • Fix Creative Inventory trash slot not working for player named "trash"
  • Added object crosshair (will take effect in Minetest 5.4.0)

ryuk
New member
Posts: 1
Joined: Sun Nov 08, 2020 00:43
In-game: ryuk

Re: [Game] Repixture [1.3.5]

by ryuk » Post

Hello! (this is my first post ever on the forums)
Thanks for keeping this simple yet stable game alive, you're awesome! :-)

I noticed a bug: If you have the creative tool in survival mode, when you die, the whole thing crashes.
It would be nice (for server admins, for example) to be able to keep the creative tool to mess around and let the other players play in survival.

To reproduce: enable creative mode, give yourself the creative tool, then quit, disable creative mode go back in game and kill yourself in some way.
You'll see:

Code: Select all

AsyncErr: ServerThread::run Lua: Runtime error from mod 'builtin_item' in callback on_dieplayer(): ...e/ryuk/.minetest/games/repixture/mods/item_drop/init.lua:31: attempt to index a nil value
stack traceback:
	...e/ryuk/.minetest/games/repixture/mods/item_drop/init.lua:31: in function 'drop_item'
	...minetest/games/repixture/mods/drop_items_on_die/init.lua:25: in function <...minetest/games/repixture/mods/drop_items_on_die/init.lua:16>
	/usr/share/minetest/builtin/game/register.lua:429: in function </usr/share/minetest/builtin/game/register.lua:413>
Again, thanks for everything!

User avatar
Wuzzy
Member
Posts: 4786
Joined: Mon Sep 24, 2012 15:01
GitHub: Wuzzy2
IRC: Wuzzy
In-game: Wuzzy
Contact:

Version 1.3.6!

by Wuzzy » Post

I fixed two bugs in version 1.3.6:

1) Crash related to dropped items (thanks for reporting!)
2) Mobs detect incorrect owner

Note I do not plan to do any feature updates for Repixture at the moment. So only bugfixes and basic maintenance for now.

Jackknife
Member
Posts: 189
Joined: Fri Sep 25, 2020 20:07

Re: [Game] Repixture [1.3.6]

by Jackknife » Post

I noticed there aren't any mine carts, but its not a big deal.
Just was wondering about that when I tried it out a week or two ago.

User avatar
Wuzzy
Member
Posts: 4786
Joined: Mon Sep 24, 2012 15:01
GitHub: Wuzzy2
IRC: Wuzzy
In-game: Wuzzy
Contact:

Version 1.4.0! Version 1.4.1!

by Wuzzy » Post

Version 1.4.0 is released! This is a release for the new Minetest version 5.4.0.

Changelog:
  • Compability bugfixes for Minetest 5.4.0
  • Needs Minetest 5.4.0 now
  • Added button press sound effect
  • Use checkmark in achievements list for completed achievements instead of a long word
  • Fix bad button offset of pressed buttons
EDIT: Version 1.4.1 is released!
This fixes a regression which made all liquids opaque in the previous version.

Jackknife
Member
Posts: 189
Joined: Fri Sep 25, 2020 20:07

Re: [Game] Repixture [1.4.1]

by Jackknife » Post

I’ve been trying to add in the carts mod from Minetest game but that didn’t work and so I tried to get an anvil mod to work but I can’t get it to work properly, it shows up in creative but crashes whenever I try to craft it.
I put in steel ingots and it crashes with error messages saying something about on move or whatever.
I got the boats mod from Minetest game to function but that’s about it.

Jackknife
Member
Posts: 189
Joined: Fri Sep 25, 2020 20:07

Re: [Game] Repixture [1.4.1]

by Jackknife » Post

There's a bug that crashes the game whenever I try to use the lasso on the animals.

User avatar
Wuzzy
Member
Posts: 4786
Joined: Mon Sep 24, 2012 15:01
GitHub: Wuzzy2
IRC: Wuzzy
In-game: Wuzzy
Contact:

Version 1.4.2!

by Wuzzy » Post

Version 1.4.2 is released!
This fixes a crash when using the lasso on a mob.

kuboid
Member
Posts: 15
Joined: Thu Jan 30, 2020 19:59
IRC: kuboid
In-game: kuboid

Re: [Game] Repixture [1.4.2]

by kuboid » Post

Hi Wuzzy,

Been playing Repixture a lot lately with my kids. We even found our first small village (they seem to be _really_ rare). In between I was lucky finding a few jewels in the giant woods but currently I feel like I need to chop the whole forest to find even one ;-D

Question: I noticed that transparent water is not working with Repixture (but with _Minetest Game_ it does). Bug or feature?

[Edit] On local game the transparent water works (MT 5.4 client), but not when playing on my minetest-server. Checked all versions. Server is running MT 5.3, so I only installed Repixture 1.3.6 (Vanilla, no mods). Game runs fine but still there is no transparent water. /etc/minetest/minetest.conf does not seem to contain a setting for transparent water.

Greetings and thanks for giving us nice leisure time. About the water I'm a bit clueless now :(

kuboid
Member
Posts: 15
Joined: Thu Jan 30, 2020 19:59
IRC: kuboid
In-game: kuboid

Re: [Game] Repixture [1.4.2]

by kuboid » Post

Ok, I got it. Server and client seem to require to be exactly the same version. My server is Debian, so no MT 5.4 available yet as binary. So I compiled my own MT 5.4, installed it and - yay - the water is transparent now on the (5.4) clients.

kuboid
Member
Posts: 15
Joined: Thu Jan 30, 2020 19:59
IRC: kuboid
In-game: kuboid

Re: Boats for Repixture – quick and dirty

by kuboid » Post

PEAK wrote:
Thu Jul 30, 2020 10:19
Copy the mods "boats" and "player_api" from MinetestGame into the "mods" folder of pixture_revival.

(...)

… and now: have fun!
Thanks PEAK for the hint. Boats are a real improvement of Repixture! I also decreased the drag factor. By default, the boat is far too slow.
Floating through the beautiful river valleys on a boat is a really nice experience :)

LonelyCDDISK
New member
Posts: 4
Joined: Fri Jun 26, 2020 11:38
GitHub: LonelyMusicDisc
In-game: LonelyDisc
Contact:

Re: [Game] Repixture [1.4.2]

by LonelyCDDISK » Post

the sprinting is a bummer but this looks great, not sure why it didn't pop up on contentdb a while back.

Post Reply

Who is online

Users browsing this forum: No registered users and 2 guests