Created
November 12, 2022 21:18
-
-
Save betawax/01950ebe1aa2ba3e50e4dfb4c368dea2 to your computer and use it in GitHub Desktop.
Project Zomboid Starter Kit
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if SandboxVars.StarterKit then | |
local bag = playerObj:getInventory():AddItem("Base.Bag_ALICEpack_Army"); | |
bag:getItemContainer():AddItem("Base.Hammer"); | |
bag:getItemContainer():AddItem("Base.Screwdriver"); | |
playerObj:getInventory():AddItem("Base.BaseballBat"); | |
playerObj:getInventory():AddItem("Base.WaterBottleFull"); | |
playerObj:getInventory():AddItem("Base.WaterBottleFull"); | |
playerObj:setClothingItem_Back(bag); | |
end; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment