diff options
Diffstat (limited to 'gamemode/craftablesystem/misc/resourcepack.lua')
| -rw-r--r-- | gamemode/craftablesystem/misc/resourcepack.lua | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/gamemode/craftablesystem/misc/resourcepack.lua b/gamemode/craftablesystem/misc/resourcepack.lua new file mode 100644 index 0000000..172bef2 --- /dev/null +++ b/gamemode/craftablesystem/misc/resourcepack.lua @@ -0,0 +1,15 @@ +/* Resource Pack */ +local COMBI = {} + +COMBI.Name = "Resource Pack" +COMBI.Description = "You can use the resource pack to store multiple resources in it. Highly recommended." + +COMBI.Req = {} +COMBI.Req["Wood"] = 20 +COMBI.Req["Stone"] = 10 + +COMBI.Results = "gms_resourcepack" +COMBI.Texture = "gms_icons/gms_resourcepack.png" +COMBI.BuildSiteModel = "models/items/item_item_crate.mdl" + +GMS.RegisterCombi( COMBI, "Structures" ) |
