Hi guys, this script has been working fine until tonight where I edited the weapon/ammo entity numbers as i usually would and started getting this error weapon_crafting_table1.lua attempt to concatenate field ? a nil value? can anyone spot what it might be and why please
Cheers

p.s the error occurs at line 79 which is the weapon selection
-- LUA Script - precede every function and global member with lowercase name of script + '_main'
-- check these are nil first so we can carry over from over levels or saves etc if needs be
if g_woodcollected == nil then
g_woodcollected=0
end
if g_flintcollected == nil then
g_flintcollected=0
end
if g_fiberscollected == nil then
g_fiberscollected=0
end
if g_featherscollected == nil then
g_featherscollected=0
end
-- added the other material items here if needed
--don't change
local itemtomake = 1
itemname = {}
flintneeded = {}
woodneeded = {}
fiberneeded = {}
feathersneeded = {}
--add other materials here too
local haveflint = 0
local havewood = 0
local havefiber = 0
local havefeathers = 0
--item names for showing in shop menu
itemname[1] = "Dagger"
itemname[2] = "Bow"
itemname[3] = "Arrow"
itemname[4] = "Hatchet"
--etc
--list out each item requirements here
flintneeded[1] = 2
woodneeded[1] = 2
fiberneeded[1] = 1
feathersneeded[1] = 0
flintneeded[2] = 2
woodneeded[2] = 2
fiberneeded[2] = 2
feathersneeded[2] = 0
flintneeded[3] = 2
woodneeded[3] = 2
fiberneeded[3] = 2
feathersneeded[3] = 2
flintneeded[4] = 2
woodneeded[4] = 2
fiberneeded[4] = 2
feathersneeded[4] = 0
--etc
--number of items in your list (above)
local maxitems = 4
function weapon_crafting_table1_init(e)
end
function weapon_crafting_table1_main(e)
--check player is near shop
if GetPlayerDistance(e) < 80 then
--check player presses a number key and it corresponds to our items above
if g_Scancode > 1 and g_Scancode <= maxitems+1 then -- to maxitems because scancodes start at 2 for number 1
itemtomake = g_Scancode-1
end
--show shop text
TextCenterOnX(50,59,1,"Press 1 ~ "..maxitems.." to select an item to craft")
TextCenterOnX(50,62,1,"Press E to Craft a "..itemname[itemtomake])
--show how much player has in inventory
TextCenterOnX(50,65,1,"No of Wood Items = " .. g_woodcollected .. " No of Flint = " .. g_flintcollected .. " No of Fibers = " .. g_fiberscollected .. " No of Feathers = " .. g_featherscollected)
--find out if player has enough of each material seperately
if g_flintcollected >= flintneeded[itemtomake] then
haveflint = 1
else
haveflint = 0
end
if g_woodcollected >= woodneeded[itemtomake] then
havewood = 1
else
havewood = 0
end
if g_fiberscollected >= fiberneeded[itemtomake] then
havefiber = 1
else
havefiber = 0
end
if g_featherscollected >= feathersneeded[itemtomake] then
havefeathers = 1
else
havefeathers = 0
end
--now we will show number in red if player doesn't have enough
if haveflint == 1 then
TextCenterOnX(50,68,1,flintneeded[itemtomake])
else
TextCenterOnXColor(50,68,1,flintneeded[itemtomake],255,0,0)
end
TextCenterOnX(50,71,1,"Flint required")
if havewood == 1 then
TextCenterOnX(50,74,1,woodneeded[itemtomake])
else
TextCenterOnXColor(50,74,1,woodneeded[itemtomake],255,0,0)
end
TextCenterOnX(50,77,1,"Wood required")
if havefiber == 1 then
TextCenterOnX(50,80,1,fiberneeded[itemtomake])
else
TextCenterOnXColor(50,80,1,fiberneeded[itemtomake],255,0,0)
end
TextCenterOnX(50,83,1,"Fiber required")
if havefeathers == 1 then
TextCenterOnX(50,86,1,feathersneeded[itemtomake])
else
TextCenterOnXColor(50,86,1,feathersneeded[itemtomake],255,0,0)
end
TextCenterOnX(50,89,1,"Feathers required")
--if player presses E to craft
if g_KeyPressE == 1 and pressed == 0 then
pressed = 1
--crafting is successful
if haveflint == 1 and havewood == 1 and havefiber == 1 and havefeathers == 1 then
PlaySound(e,1)
g_flintcollected = g_flintcollected-flintneeded[itemtomake]
g_woodcollected = g_woodcollected-woodneeded[itemtomake]
g_fiberscollected = g_fiberscollected-fiberneeded[itemtomake]
g_featherscollected = g_featherscollected-feathersneeded[itemtomake]
PromptDuration("You Crafted a "..itemname[itemtomake],2000)
if itemname[itemtomake] == itemname[1] then AddPlayerWeapon (1512)
g_craftexp = g_craftexp +25
g_weight = g_weight - 19
end
if itemname[itemtomake] == itemname[2] then AddPlayerWeapon (1514)
g_craftexp = g_craftexp +25
g_weight = g_weight - 20
end
if itemname[itemtomake] == itemname[3] then AddPlayerAmmo (1515)
g_craftexp = g_craftexp +25
g_weight = g_weight - 22
end
if itemname[itemtomake] == itemname[4] then AddPlayerWeapon (1513)
g_craftexp = g_craftexp +25
g_fhammer = g_fhammer + 1
g_weight = g_weight - 20
end
--not enough materials
else
PromptDuration("You do not have enough materials to craft a "..itemname[itemtomake],2000)
end
end
if g_KeyPressE == 0 then
pressed = 0
end
end
end
Intel i5 4950 Quad core 3.3ghz AMD FX 6300 x6 cores 3.5ghz(unclocked)
8gb Ram 8gb Ram
XFX R5 2gb AMD Radeon HD 6670 2gb
and a well fed mouse on a wheel
I only smile because i have absolutely no idea whats going on