{NEW} FLINT MOD (Flint n Steel)

User avatar
IPushButton2653
Member
 
Posts: 666
Joined: Wed Nov 16, 2011 22:47

{NEW} FLINT MOD (Flint n Steel)

by IPushButton2653 » Thu Mar 15, 2012 04:52

I made this, first, out of interest in flintknapping. Then, after a few suggestions (and thinking about Jordach's minecraft pack), I made it Flint and Steel!


Now, to the mod...

First, you mine GRAVEL
Image

Then you get FLINT :D
Image

Then you craft KNAPPING TOOLS from flint and a stick
Image

Now mine more FLINT!
Image

Now craft an ARROWHEAD with the tools!
Image

DONE!
Image

For flint and steel, craft a steel ingot on top of a piece of flint. It's that easy.

DOWNLOADhttp://www.mediafire.com/?szs126gkjyk7ym5
Last edited by IPushButton2653 on Fri Mar 16, 2012 21:33, edited 1 time in total.
 

User avatar
IPushButton2653
Member
 
Posts: 666
Joined: Wed Nov 16, 2011 22:47

by IPushButton2653 » Thu Mar 15, 2012 05:14

Those crafting recipes are LEGIT. Just make sure you change the default init.lua before you start!
 

User avatar
Calinou
Member
 
Posts: 3124
Joined: Mon Aug 01, 2011 14:26
GitHub: Calinou
IRC: Calinou
In-game: Calinou

by Calinou » Thu Mar 15, 2012 11:11

You are able to redefine blocks/items/recipes from another mod, you don't need to replace the "default" mod stuff. Dunno how though.
 

User avatar
sdzen
Member
 
Posts: 1170
Joined: Fri Aug 05, 2011 22:33

by sdzen » Thu Mar 15, 2012 19:33

minetest.register_node{ :default:stone :P
[h]Zen S.D.[/h] The next generation of tranquility!
malheureusement mon français n'est pas bon :<
Owner of the Zelo's
In game name: MuadTralk, spdtainted, sdzen, sd zen, sdzeno
 

User avatar
LorenzoVulcan
Member
 
Posts: 437
Joined: Mon Mar 12, 2012 06:46

by LorenzoVulcan » Thu Mar 15, 2012 21:24

Nice mod,This can be used for making a flint 'n' steel mod!
But why you didn't put the drop on gravel's block?
Developer of the BlockForge 2# Project!
Official thread: http://minetest.net/forum/viewtopic.php?pid=54290#p54290
 

User avatar
IPushButton2653
Member
 
Posts: 666
Joined: Wed Nov 16, 2011 22:47

by IPushButton2653 » Thu Mar 15, 2012 21:50

It was midnight. I was tired. But I am putting it on gravel and redefining it. Then I'll try flint and steel. And maybe a few others :3
 

User avatar
LorenzoVulcan
Member
 
Posts: 437
Joined: Mon Mar 12, 2012 06:46

by LorenzoVulcan » Thu Mar 15, 2012 21:51

IPushButton2653 wrote:It was midnight. I was tired. But I am putting it on gravel and redefining it. Then I'll try flint and steel. And maybe a few others :3

Waiting for it ;)
Developer of the BlockForge 2# Project!
Official thread: http://minetest.net/forum/viewtopic.php?pid=54290#p54290
 

User avatar
IPushButton2653
Member
 
Posts: 666
Joined: Wed Nov 16, 2011 22:47

by IPushButton2653 » Thu Mar 15, 2012 22:21

Working on it. Trouble redefining gravel.
 

User avatar
LorenzoVulcan
Member
 
Posts: 437
Joined: Mon Mar 12, 2012 06:46

by LorenzoVulcan » Fri Mar 16, 2012 06:39

IPushButton2653 wrote:Working on it. Trouble redefining gravel.

Uhm,I made a flint 'n' steel mod,but there's no fire.
If you want,i can send you the part of code that i used for make the gravel's drop on flint too ^^.
Developer of the BlockForge 2# Project!
Official thread: http://minetest.net/forum/viewtopic.php?pid=54290#p54290
 

User avatar
IPushButton2653
Member
 
Posts: 666
Joined: Wed Nov 16, 2011 22:47

by IPushButton2653 » Fri Mar 16, 2012 19:36

Still working on redefining it. And I know how to make it fire. But go ahead and send it to me. I may use it anyway ;)
 

User avatar
LorenzoVulcan
Member
 
Posts: 437
Joined: Mon Mar 12, 2012 06:46

by LorenzoVulcan » Fri Mar 16, 2012 21:12

IPushButton2653 wrote:Still working on redefining it. And I know how to make it fire. But go ahead and send it to me. I may use it anyway ;)

Well,I used a part of your code for making it but i modified the random value of drop
Your phone or window isn't wide enough to display the code box. If it's a phone, try rotating it to landscape mode.
Code: Select all
minetest.register_node("default:gravel", {

    description = "Gravel",

    tile_images = {"default_gravel.png"},

    is_ground_content = true,

    material = minetest.digprop_gravellike(1.0),

        drop = {

            max_items = 2,

             items = {

            {

                items = {'if:flint'},

                rarity = 5,

            },

            {

                items = {'default:gravel'},

            }

        }

    },

})


Just replace this with the gravel's registration in default
Developer of the BlockForge 2# Project!
Official thread: http://minetest.net/forum/viewtopic.php?pid=54290#p54290
 

User avatar
IPushButton2653
Member
 
Posts: 666
Joined: Wed Nov 16, 2011 22:47

by IPushButton2653 » Fri Mar 16, 2012 21:32

I already fixed that. Updating soon today. I had to implement the flint n steel and get it to work. So far, I can't get the textures for it to load. But it's all good ^^
 

User avatar
LorenzoVulcan
Member
 
Posts: 437
Joined: Mon Mar 12, 2012 06:46

by LorenzoVulcan » Sat Mar 17, 2012 09:57

It doesn't work to me.

Your phone or window isn't wide enough to display the code box. If it's a phone, try rotating it to landscape mode.
Code: Select all
10:55:12: INFO[ServerThread]: TOSERVER_INTERACT: action=4, item=7, pointed=[node under=-81,11,26 above=-81,12,26]
10:55:12: ACTION[ServerThread]: LorenzoVulcan uses flint:flint_n_steel, pointing at [node under=-81,11,26 above=-81,12,26]
10:55:12: ERROR[ServerThread]: ERROR: An unhandled exception occurred: LuaError: Expecting itemstack, itemstring, table or nil
10:55:12: ERROR[ServerThread]: stack traceback:
Developer of the BlockForge 2# Project!
Official thread: http://minetest.net/forum/viewtopic.php?pid=54290#p54290
 


Return to WIP Mods

Who is online

Users browsing this forum: No registered users and 6 guests

cron