diff options
Diffstat (limited to 'gamemode/craftablesystem/playermade/rope.lua')
| -rw-r--r-- | gamemode/craftablesystem/playermade/rope.lua | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/gamemode/craftablesystem/playermade/rope.lua b/gamemode/craftablesystem/playermade/rope.lua new file mode 100644 index 0000000..f07db29 --- /dev/null +++ b/gamemode/craftablesystem/playermade/rope.lua @@ -0,0 +1,15 @@ +/* Rope */ +local COMBI = {} + +COMBI.Name = "Rope" +COMBI.Description = "Allows you to use Rope tool ( Using Rope Tool will consume the Rope ) and used in fishing rod crafting." + +COMBI.Req = {} +COMBI.Req["Herbs"] = 5 +COMBI.Req["Wood"] = 2 +COMBI.Req["Water_Bottles"] = 1 + +COMBI.Results = {} +COMBI.Results["Rope"] = 1 + +GMS.RegisterCombi( COMBI, "Combinations" ) |
