[Mod] Special Tools [special_tools] [0.3]

User avatar
jojoa1997
Member
 
Posts: 2890
Joined: Thu Dec 13, 2012 05:11

by jojoa1997 » Wed Jan 16, 2013 19:18

Sorry i might have to stop adding to this mod because i just dont have enough time. I have made Likwid H-Craft a co-owner so make ideas and hopefully Likwid H-Craft can keep this going.
Coding;
1X coding
3X debugging
12X tweaking to be just right
 

User avatar
Likwid H-Craft
Member
 
Posts: 1113
Joined: Sun Jan 06, 2013 14:20

by Likwid H-Craft » Thu Jan 17, 2013 00:16

Well is it ok I copy all the data and, move it to a new thread so I can edit, the version and, everything.

Yes I will keep it up it live.
My Domain's/others:
http://likwidtest.hj.cx/ (Not Done)
 

User avatar
jojoa1997
Member
 
Posts: 2890
Joined: Thu Dec 13, 2012 05:11

by jojoa1997 » Thu Jan 17, 2013 00:19

Likwid H-Craft wrote:Well is it ok I copy all the data and, move it to a new thread so I can edit, the version and, everything.

Yes I will keep it up it live.

yes it is wftpl and you can keep the same name if you want. i will post link to your topic here.
Coding;
1X coding
3X debugging
12X tweaking to be just right
 

User avatar
jojoa1997
Member
 
Posts: 2890
Joined: Thu Dec 13, 2012 05:11

by jojoa1997 » Thu Jan 17, 2013 01:51

Coding;
1X coding
3X debugging
12X tweaking to be just right
 

User avatar
jojoa1997
Member
 
Posts: 2890
Joined: Thu Dec 13, 2012 05:11

by jojoa1997 » Sat Jan 19, 2013 01:23

I a, back on this topic. the other would take too long with getting fixes to the public. i will be making spray paint next. i need to know how to make buckets return to the inventory and i need items to put in the recipes for colors
Coding;
1X coding
3X debugging
12X tweaking to be just right
 

User avatar
Aqua
Member
 
Posts: 641
Joined: Wed Aug 22, 2012 09:11

by Aqua » Sat Jan 19, 2013 06:06

How is it going to work? Is it actually going to 'color' blocks. And check the Shrubs or Morewater mod for returning the bucket.
Hi there ^.~
 

4aiman
Member
 
Posts: 1208
Joined: Mon Jul 30, 2012 05:47

by 4aiman » Sat Jan 19, 2013 10:21

Voted "No", but maybe there should be some condition, though. Smth like having skill level > predefined value, after which player [at last!!!] would be able to use that ability.
 

User avatar
Mihobre
Member
 
Posts: 101
Joined: Tue Oct 30, 2012 08:45

by Mihobre » Thu Apr 04, 2013 14:00

hey could you post it somwhere other than ompldr.org like mediafire.com or github because when I click ompldr link they say "nowhere to pee in here" or something like that. pm me if you made another link and if you could, pm me the link


BTW, What if you use unified dyes for spray paint because i think it replaces default dyes and im using unified dyes for other mods i downloaded cuz i collect mods
I wanna fly!!!
I wanna have feathery wings of silver, blue, and white!!!
I wanna soar high and touch the sky!!!
I wanna fly!!!
 

User avatar
jojoa1997
Member
 
Posts: 2890
Joined: Thu Dec 13, 2012 05:11

by jojoa1997 » Thu Apr 04, 2013 14:06

Coding;
1X coding
3X debugging
12X tweaking to be just right
 

Jouster27
Member
 
Posts: 117
Joined: Fri Mar 29, 2013 14:16

by Jouster27 » Fri Apr 12, 2013 14:29

I'd like to make a request. Would you be willing to add a chisel? The purpose of the tool is to extract blocks in their original form, such as default rock (instead of getting cobblestone), sandstone or chalk (from the Darkage mod).

Thanks for reading.
 

User avatar
jojoa1997
Member
 
Posts: 2890
Joined: Thu Dec 13, 2012 05:11

by jojoa1997 » Fri Apr 12, 2013 15:37

Sorry i would but unless every block is recorded to hoiw is has been changed i cannot. also it will take a lot of codeing which i am not willing/have the time to do. if anyone wants to add a pull request be my guest
Coding;
1X coding
3X debugging
12X tweaking to be just right
 

User avatar
Traxie21
Member
 
Posts: 753
Joined: Mon Dec 31, 2012 10:48

by Traxie21 » Fri Apr 12, 2013 16:04

minetest.register_on_dignode()
may help you do that.
 

Jouster27
Member
 
Posts: 117
Joined: Fri Mar 29, 2013 14:16

by Jouster27 » Sun Apr 21, 2013 22:27

The crowbar doesn't have a texture and the link above for the texture doesn't work.
 

User avatar
jojoa1997
Member
 
Posts: 2890
Joined: Thu Dec 13, 2012 05:11

by jojoa1997 » Sun Apr 21, 2013 22:51

NOYICE i am not working on this mod anymore. if someone else want to work on it they cn. What ever happens leave me out please.(maybe this suummer i might work on it but dont get your hopes up)
Coding;
1X coding
3X debugging
12X tweaking to be just right
 

User avatar
Adimgar
New member
 
Posts: 4
Joined: Wed May 13, 2015 03:09
GitHub: Adimgar
IRC: Adimgar

Re: [Mod] Special Tools [special_tools] [0.3]

by Adimgar » Thu May 14, 2015 08:42

Hi there.

I think there is an error either on the recipe or in the register_craft code of your mod.

the racipe says
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
XTX
SWT
XSX


and register_craft:
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_craft({
   output = 'special_tools:shears',
   recipe = {
      {'', 'default:steel_ingot', ''},
      {'default:stick', 'default:wood', 'default:steel_ingot'},
      {'', '', 'default:stick'},
   }
})


it should be:
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_craft({
   output = 'special_tools:shears',
   recipe = {
      {'', 'default:steel_ingot', ''},
      {'default:stick', 'default:wood', 'default:steel_ingot'},
      {'', 'default:stick', ''},
   }
})
Let it be
 

Previous

Return to Mod Releases

Who is online

Users browsing this forum: No registered users and 73 guests

cron