Navicat > connect to your database > functions > WZ_CharCreate, and then you have this:
Code:
if(@CharsCreated <= 5) begin -- add some default items - BE ULTRA CAREFUL with BackpackSlot number
insert into UsersInventory (CustomerID, CharID, BackpackSlot, ItemID, LeasedUntil, Quantity)
values (@in_CustomerID, @CharID, 1, 101306, '2020-1-1', 1) -- Flashlight
insert into UsersInventory (CustomerID, CharID, BackpackSlot, ItemID, LeasedUntil, Quantity)
values (@in_CustomerID, @CharID, 2, 101261, '2020-1-1', 1) -- Bandages
insert into UsersInventory (CustomerID, CharID, BackpackSlot, ItemID, LeasedUntil, Quantity)
values (@in_CustomerID, @CharID, 3, 101296, '2020-1-1', 1) -- Can of Soda
insert into UsersInventory (CustomerID, CharID, BackpackSlot, ItemID, LeasedUntil, Quantity)
values (@in_CustomerID, @CharID, 4, 101289, '2020-1-1', 1) -- Granola Bar
end
And you change the values, or add new ones, I think it's pretty self-explanatory :)