Jump to content

futuromodder

Member
  • Posts

    2
  • Joined

  • Last visited

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

futuromodder's Achievements

  1. I'm new in lua modding world. I would like to make a custom recepies mod, where i can find the default in game recepies to find out the logic behind food crafting in the game?
  2. Hello i'm working on a custom profession using "profession framework" I succesfully create the profession but i want to have a note / notebook in the inventory at spawn with custom text in it. I tried different approach but nothing seems to work ProfessionFramework.addProfession('HamRadioOperator', { name = "custom job", description = "We're there when all else fails", icon = "logo", cost = 0, xp = { [Perks.Electricity] = 1, }, recipes = {"Make Makeshift Radio", "Make Makeshift Walkie Talkie", "Makeshift Ham Radio"}, levels = { { desc = "aaaaaaa", xp = 0, skills = { Electricity = 3, } } }, clothing = { Tshirt = {"Base.Shirt_Workman"}, Pants = {"Base.TrousersMesh_DenimLight"}, Waist = {"Base.Bag_FannyPackFront"}, }, inventory = { ["Base.Headphones"] = 1, ["Radio.WalkieTalkie1"] = 1, ["Radio.RadioRed"] = 1, ["Base.SheetPaper2"] = 1, ["Base.Pen"] = 1, }, containers = { ["Base.SheetPaper2"] = { items = { ["Base.Pen"] = 1, }, text = "Custom text on the sheet paper", } }, }) any help? is even possible to do it?
×
×
  • Create New...