Page 2 of 3

Re: [Mod] Inventory++ [github] [inventory_plus]

Posted: Tue Mar 03, 2015 16:09
by LazerRay
I get the same bug too, if you have more than two buttons, they start overlapping the crafting grid.

Image

Re: [Mod] Inventory++ [github] [inventory_plus]

Posted: Sun Mar 08, 2015 00:55
by RoseLite
How come there's another file inside the first file?
What should I rename it to?

Re: [Mod] Inventory++ [github] [inventory_plus]

Posted: Sun Mar 08, 2015 01:57
by Napiophelios
You dont really have to rename anything with this one,
just place the unzipped archive into your mod folder.

cornernote distributes his mods as modpacks,
the actual mod is the folder inside thats just named "inventory_plus".

I think mods are supposed to load better /faster when packed into modpack folders,
even if its a single mod inside.

So long as the "mod.txt" file is present,
the folder containing the "inventory_plus" folder
can be named anything.

I would place all mods that depend on inventory plus inside this folder too.

Re: [Mod] Inventory++ [github] [inventory_plus]

Posted: Sun Jun 07, 2015 01:37
by Wuzzy
I have spotted a pretty serious bug in this mod. If a player joins the server, then very quickly leaves the server (faster than 1 second after joining), this will cause the server crashing. The best way to test this is locally. Important: You have to try this with a bogus (=new) username.

My analysis:
The bug is caused because in the on_joinplayer event, a minetest.after is called (1 second) and called inventory_plus.get_formspec and inventory_plus.set_formspec. If the player leaves quicker than 1 second, then inventory_plus.get_formspec will try to call a method of player, who is not on the server anymore, thus causing the crash.

My question is: Why have you put minetest.after in this function in the first place? Is there some rationale behind that?

Re: [Mod] Inventory++ [github] [inventory_plus]

Posted: Sun Jun 07, 2015 04:37
by prestidigitator
There are some things that don't work during an on_joinplayer callback. Using minetest.after() is the usual workaround.

Re: [Mod] Inventory++ [github] [inventory_plus]

Posted: Sun Jun 07, 2015 05:46
by addi
prestidigitator wrote:There are some things that don't work during an on_joinplayer callback. Using minetest.after() is the usual workaround.
is it still required? I thought that was fixed someday?
Edit: yes, its not fixed.

Re: [Mod] Inventory++ [github] [inventory_plus]

Posted: Thu Jul 09, 2015 19:06
by amadin
Does can i change colors?

Re: [Mod] Inventory++ [github] [inventory_plus]

Posted: Thu Jul 30, 2015 11:44
by Casimir
I made a temporary fix for that (until it is probably done in the engine): https://github.com/Zeg9/minetest-inventory_plus/pull/4

Re: [Mod] Inventory++ [github] [inventory_plus]

Posted: Sun Oct 18, 2015 15:18
by Blehmeh98
The game closes out when I switch skins due to the error
. . . init.lua:158: attempt to call field 'explode_textlist_event'(a nil value). I looked on the dev wiki, and that is not even a real function, as I cannot find anything. You will have to use a different function. Maybe 'explode_table_event'?

Re: [Mod] Inventory++ [github] [inventory_plus]

Posted: Sun Oct 18, 2015 19:03
by Casimir
Must be another mod. This one only has 136 lines. Normally the error also says the mod name.

Re: [Mod] Inventory++ [github] [inventory_plus]

Posted: Fri Dec 11, 2015 06:44
by kino2007
Hey, Zeg. I was thinking if you would put a "search" button so it will be easier to get stuff.

So, it's a good idea huh, isn't it?

Re: [Mod] Inventory++ [github] [inventory_plus]

Posted: Fri Dec 25, 2015 16:52
by Neuromancer
This works great now with the new "creative" inventory mod that has search. If you update your minetest game with it you should be good to go.
https://github.com/minetest/minetest_game/pull/736

Re: [Mod] Inventory++ [github] [inventory_plus]

Posted: Thu Jan 21, 2016 15:18
by Minetest Sam
I renamed the folder to inventory_plus but still the debug.text shows unresolved mod name "inventory_plus"

Re: [Mod] Inventory++ [github] [inventory_plus]

Posted: Sat Jan 23, 2016 12:24
by LaraWonder
Hey, Minetest's telling me that there's an error with this mod. I think is because of the name of the archive. How should call it?
P.D.: I've unpackaged the .zip archive, if anyone was going to ask

Re: [Mod] Inventory++ [github] [inventory_plus]

Posted: Sat Jan 23, 2016 23:22
by benrob0329
Rename the folder to "inventory_plus"

Re: [Mod] Inventory++ [github] [inventory_plus]

Posted: Sat Mar 19, 2016 15:13
by mahmutelmas06
Will be an update to work with latest version of manetest ?
Because buttons messed up in creative mode right now

Re: [Mod] Inventory++ [github] [inventory_plus]

Posted: Sun Mar 20, 2016 01:14
by Napiophelios
....

Re: [Mod] Inventory++ [github] [inventory_plus]

Posted: Sun Mar 20, 2016 01:30
by mahmutelmas06
Your file is completly what i wanted.
Thank you for sharing

Re: [Mod] Inventory++ [github] [inventory_plus]

Posted: Sun Mar 20, 2016 01:40
by benrob0329
The buttons dissapear after you swich tabs.

Otherwise It works fine, I just hope that Rubenwardy's tab API gets pushed to core.

Re: [Mod] Inventory++ [github] [inventory_plus]

Posted: Sun Mar 20, 2016 01:46
by Napiophelios
benrob0329 wrote:The buttons dissapear after you swich tabs.

Otherwise It works fine, I just hope that Rubenwardy's tab API gets pushed to core.

Cornernote intentionally put a delay in for showing the buttons to avoid problems.
I have tried to edit it out but it causes problems when you do.

I generally just hit the page arrow button to get them to reappear.
You will also note they dont appear on the crafting tab either.

EDIT:
I was wrong benrob0329, its not cornernote's creative mode delay making the buttons disappear
the formspec has to be set on each tab when you switch to it.
I think I can figure it out.....just not tonight :)

Re: [Mod] Inventory++ [github] [inventory_plus]

Posted: Wed Aug 17, 2016 22:09
by BrunoMine
Apparently this project was stopped. This is bad.

Re: [Mod] Inventory++ [github] [inventory_plus]

Posted: Thu Aug 18, 2016 19:59
by TenPlus1
The text only version of inventory_plus is still being worked on with newer 0.4.14 features added: https://github.com/tenplus1/inventory_plus

Re: [Mod] Inventory++ [github] [inventory_plus]

Posted: Wed Aug 12, 2020 17:45
by Wuzzy
--deleted--
(this post was posted in error)

Re: [Mod] Inventory++ [github] [inventory_plus]

Posted: Sun Dec 20, 2020 11:03
by smallwitch66
Perdón, no se si esto lo puedo preguntar aqui.
Tengo estos botones juntos
¿que puedo hacer? no puedo avanzar en el inventario
plus error.png
plus error.png (513.17 KiB) Viewed 947 times

Re: [Mod] Inventory++ [github] [inventory_plus]

Posted: Mon Dec 21, 2020 00:37
by Ignaramico
smallwitch66 wrote:
Sun Dec 20, 2020 11:03
Perdón, no se si esto lo puedo preguntar aqui.
Tengo estos botones juntos
¿que puedo hacer? no puedo avanzar en el inventario
plus error.png
For starters, i believe thats sfinv not inventory++, second i believe the problem is with the version of the mod/game, one of the errors that shows in the images ("invalid list ring element") showed to me once too, but then i downloaded an earlier version of sfinv and it stopped showing

en español/spanish:
Spoiler
segun yo, ese inventario es del sfinv, no del inventory++, como quiera, ya intentaste borrar el mod y volverlo a instalar? o instalar una version anterior?, o mejor intenta usar otro mod para el inventario