Search found 4 matches

by PUMPKINIDOLATER
Sun Dec 03, 2017 03:21
Forum: Modding Discussion
Topic: How to Make Mod Set Player Crafting Grid to be 2 by 2?
Replies: 7
Views: 1421

Re: How to Make Mod Set Player Crafting Grid to be 2 by 2?

Depend on sfinv. Then use this code: sfinv.override_page("sfinv:crafting", { title = "Crafting", get = function(self, player, context) return sfinv.make_formspec(player, context, [[ list[current_player;craft;3,0.5;2,2;] list[current_player;craftpreview;6,1.5;1,1;] image[4.75,1.5...
by PUMPKINIDOLATER
Sat Dec 02, 2017 04:11
Forum: Modding Discussion
Topic: How to Make Mod Set Player Crafting Grid to be 2 by 2?
Replies: 7
Views: 1421

Re: Post your modding questions here

Maybe I ramble too much and don't get directly to the point. My question is: How do I make -- uncomment the next 6 lines to restrict players to a 2x2 inventory craft grid minetest.register_on_joinplayer(function(player) player:set_inventory_formspec("size[8,7.5]".. "list[current_playe...
by PUMPKINIDOLATER
Fri Dec 01, 2017 07:49
Forum: Modding Discussion
Topic: Should NonCommercial licenses be disallowed in Mod Releases?
Replies: 23
Views: 3106

Re: Should NonCommercial licenses be disallowed in Mod Relea

The spirit of a Free Software program, as Richard Stallman has pointed out, is to allow for commericial use. That's the very reason why those creative commons licenses are not recognized or thought well of by the FSF community. It runs against the grain of the entire point of the GPL. Here is the Fr...
by PUMPKINIDOLATER
Fri Dec 01, 2017 07:39
Forum: Modding Discussion
Topic: How to Make Mod Set Player Crafting Grid to be 2 by 2?
Replies: 7
Views: 1421

How to Make Mod Set Player Crafting Grid to be 2 by 2?

Question: How to Make Mod Set Player Crafting Grid to be 2 by 2? Reason: Trying to cobble together the many various broken workbench mods into one simple working workbench mod. I have tried to find/create this for hours. I think I found one, can someone please help with the last major step? Goals: P...