Install Steam
login
|
language
简体中文 (Simplified Chinese)
繁體中文 (Traditional Chinese)
日本語 (Japanese)
한국어 (Korean)
ไทย (Thai)
Български (Bulgarian)
Čeština (Czech)
Dansk (Danish)
Deutsch (German)
Español - España (Spanish - Spain)
Español - Latinoamérica (Spanish - Latin America)
Ελληνικά (Greek)
Français (French)
Italiano (Italian)
Bahasa Indonesia (Indonesian)
Magyar (Hungarian)
Nederlands (Dutch)
Norsk (Norwegian)
Polski (Polish)
Português (Portuguese - Portugal)
Português - Brasil (Portuguese - Brazil)
Română (Romanian)
Русский (Russian)
Suomi (Finnish)
Svenska (Swedish)
Türkçe (Turkish)
Tiếng Việt (Vietnamese)
Українська (Ukrainian)
Report a translation problem
then place it in the media>lua>client folder (of my mod)
Click the link and Copy this entire code
https://pastebin.com/0w3BcgKw
paste the code in the file you created. Then press the End key on your keyboard and the items are inside your inventory.
I will make a video on this, but since I will be out of town, it will take a few days.
/additem Base.Axe
or
/additem BWM4.rifleweapon
in the text chat. But I'm a philistine.
BWM4.rifleweapon
BWM4.556Round
BWM4.556Box
BWM4.556Can
BWM4.556Case
BWM4.556Cache
I am not sure how to spawn them with necroforge. I spawn them in with the below script. Just create a file here lua > client > AddModHotKey.lua the name can be anything, but make sure it ends in .lua Also press "End" on your keyboard to spawn them in your inventory.
require 'Reloading/ISReloadManager'
function ADDMODS(_keyPressed)
local key = _keyPressed;
if key == 207 then
local player = getPlayer();
local testinv = player:getInventory();
testinv:AddItem("BWM4.rifleweapon");
testinv:AddItem("BWM4.556Round");
testinv:AddItem("BWM4.556Box");
testinv:AddItem("BWM4.556Can");
testinv:AddItem("BWM4.556Case");
testinv:AddItem("BWM4.556Cache");
end
end
Events.OnKeyPressed.Add(ADDMODS)