From 2d25539036e9bca8a127f3d768df3a3e217bdf5a Mon Sep 17 00:00:00 2001 From: Vortrex <3858226+VortrexFTW@users.noreply.github.com> Date: Wed, 19 Oct 2022 23:55:38 -0500 Subject: [PATCH] Add item type drop model command --- scripts/server/command.js | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/server/command.js b/scripts/server/command.js index d05449f8..c4708a4f 100644 --- a/scripts/server/command.js +++ b/scripts/server/command.js @@ -353,6 +353,7 @@ function loadCommands() { new CommandData("itemtypeorderprice", setItemTypeOrderPriceCommand, " ", getStaffFlagValue("ManageItems"), true, false, "Sets an item type's order price (base price when ordering for a business"), new CommandData("itemtyperiskmult", setItemTypeRiskMultiplierCommand, " ", getStaffFlagValue("ManageItems"), true, false, "Sets an item type's risk multiplayer (higher value for more dangerous or rare illegal items)"), new CommandData("itemtypeenabled", toggleItemTypeEnabledCommand, "", getStaffFlagValue("ManageItems"), true, false, "Toggles an item type on or off (if off, any items with that type can't be interacted with)"), + new CommandData("itemtypedropmodel", setItemTypeDropModelCommand, " ", getStaffFlagValue("ManageItems"), true, false, "Sets the drop model for the object of an item type when dropped"), new CommandData("itemtypedroppos", setItemTypeDropPositionCommand, " [x] [y] [z]", getStaffFlagValue("ManageItems"), true, false, "Sets the offset position for the object of an item type when dropped"), new CommandData("itemtypedroprot", setItemTypeDropRotationCommand, " [x] [y] [z]", getStaffFlagValue("ManageItems"), true, false, "Sets the rotation for the object of an item type when dropped"), new CommandData("itemtypedropscale", setItemTypeDropScaleCommand, " [x] [y] [z]", getStaffFlagValue("ManageItems"), true, false, "Sets the scale for the object of an item type when dropped"),