Search found 15 matches

by Nitro
Mon Jan 07, 2019 07:58
Forum: Minetest-related projects
Topic: Automatic Mod Creation Tool For Minetest (A.M.C.T.F.M)
Replies: 11
Views: 1735

Re: Automatic Mod Creation Tool For Minetest (A.M.C.T.F.M)

Linuxdirk wrote:People should stop using Python 2.
you can't tell me what to do mum
by Nitro
Mon Jan 07, 2019 07:57
Forum: Modding Discussion
Topic: Adding new seeds to grass?
Replies: 1
Views: 256

Adding new seeds to grass?

I want to have an item have a chance to drop out of grass, is it possible to do that or do I need to make a new type of grass?
by Nitro
Fri Jan 04, 2019 10:58
Forum: Minetest-related projects
Topic: Automatic Mod Creation Tool For Minetest (A.M.C.T.F.M)
Replies: 11
Views: 1735

Re: Automatic Mod Creation Tool For Minetest (A.M.C.T.F.M)

If you want python2 I believe this should work for you: https://www.archlinux.org/packages/extra/x86_64/python2/ or you can go to the official download page: https://www.python.org/downloads/source/ you need python2 as raw_input is a python2 thing, you can try and replace "raw_input" with ...
by Nitro
Mon Dec 31, 2018 23:40
Forum: Minetest-related projects
Topic: Automatic Mod Creation Tool For Minetest (A.M.C.T.F.M)
Replies: 11
Views: 1735

Re: Automatic Mod Creation Tool For Minetest (A.M.C.T.F.M)

If you're running on linux no need for setup.py :) (assuming you already have python 2.7 installed), the setup.py is for py2exe (windows users). If it doesn't run try these commands

Code: Select all

python auto_mod.py
# you cannot do ./auto_mod.py as I didn't add the Hash-Bang at the top of the file
by Nitro
Sun Dec 30, 2018 00:30
Forum: Modding Discussion
Topic: How to spawn ore in water source?
Replies: 3
Views: 418

Re: How to spawn ore in water source?

I believe it was me being a bit dumb I just went out from spawn so that new chuncks could spawn the different ore values
by Nitro
Sat Dec 29, 2018 11:56
Forum: Modding Discussion
Topic: How to make a formspec furance-like object?
Replies: 3
Views: 435

Re: How to make a formspec furance-like object?

Thanks for reply Napiophelios!

Found what I need by watching this: https://www.youtube.com/watch?v=8FTMG1NMlQg
by Nitro
Sat Dec 29, 2018 10:02
Forum: Modding Discussion
Topic: How to make a formspec furance-like object?
Replies: 3
Views: 435

How to make a formspec furance-like object?

I looked at the furnace code and still can't seem to wrap my head around this. When I show the formspec to the player there are no boxs for items to go in https://i.imgur.com/01bTALT.png What happens if I click on where the boxs should be https://cdn.discordapp.com/attachments/528059590328320003/528...
by Nitro
Sat Dec 29, 2018 04:29
Forum: Minetest-related projects
Topic: Automatic Mod Creation Tool For Minetest (A.M.C.T.F.M)
Replies: 11
Views: 1735

Re: Automatic Mod Creation Tool For Minetest (A.M.C.T.F.M)

Haven't run into a problem with textures going into the media folder what steps did you do to encounter the bug?
by Nitro
Sat Dec 29, 2018 02:33
Forum: Modding Discussion
Topic: How to spawn ore in water source?
Replies: 3
Views: 418

Re: How to spawn ore in water source?

nvm it fixed itself
by Nitro
Sat Dec 29, 2018 02:02
Forum: Modding Discussion
Topic: How to spawn ore in water source?
Replies: 3
Views: 418

How to spawn ore in water source?

I am trying to spawn this node as an ore to replace water and I am not having any luck, did I miss something? minetest.register_ore({ ore_type = "scatter", ore = "jamm_base:dessence_source", wherein = "default:water_source", clust_scarcity = 1*1*1, clust_num_ores = 8, c...
by Nitro
Fri Dec 28, 2018 23:23
Forum: Minetest-related projects
Topic: Automatic Mod Creation Tool For Minetest (A.M.C.T.F.M)
Replies: 11
Views: 1735

Automatic Mod Creation Tool For Minetest (A.M.C.T.F.M)

A.M.C.T.F.M While I was creating a mod while I was in a call with a friend of mine on discord and I was screensharing. He was watching as my nodes and items were being added to the game and he wanted to do that too, I showed him the modding beginner tutorial but he couldn't wrap his head around it ...
by Nitro
Thu Dec 27, 2018 11:24
Forum: Modding Discussion
Topic: How to get the player object?
Replies: 5
Views: 508

Re: How to get the player object?

Thank You this worked :D
by Nitro
Thu Dec 27, 2018 11:21
Forum: Modding Discussion
Topic: How to get the player object?
Replies: 5
Views: 508

Re: How to get the player object?

ok I try this
by Nitro
Thu Dec 27, 2018 11:16
Forum: Modding Discussion
Topic: How to get the player object?
Replies: 5
Views: 508

Re: How to get the player object?

so if I shouldn't write player then what do I use?
by Nitro
Thu Dec 27, 2018 11:01
Forum: Modding Discussion
Topic: How to get the player object?
Replies: 5
Views: 508

How to get the player object?

Hi, I'm new to minetest modding and I am trying to use the Player Effects modding framework ( https://forum.minetest.net/viewtopic.php?t=9689 ) to add an effect onto a player that uses an item. on_use = function(itemstack, placer, pointed_thing) minetest.chat_send_all("testing") playereffe...