Problem adding new base building recipes...

Rayne

New Member
I can't seem to add new recipes. I edited the arrays in build_list.sqf and server_functions.sqf as well as added the new item into the database and the image to the images folder. The problem is the new item in the array seems to be preventing any deployable from saving to the db, I get a 308 error. If I remove the new item from the array, everything works fine again.

My question is, is there some other file that needs edited?

Here are the last 3 rows of the array. The last row is the new row.
Code:
[[0, 0, 2, 0, 0, 0], "Fort_RazorWire",                [[0,5,.8],    [0,4,0],    0,    true, false, false, false, false, false, false, true, false, true, true]],//Fort_RazorWire --33
[[0, 0, 1, 0, 0, 0], "Fence_Ind",                      [[0,4,.7],    [0,2,0],    0,    true, false, false, false, false, false, true, true, false, true, true]], //Fence_Ind --34
[[0, 0, 1, 3, 1, 0], "Land_Misc_deerstand",          [[0,4,.7],    [0,2,0],    0,    true, false, false, false, false, false, true, true, false, true, true]] //Land_Misc_deerstand --35
 
Back
Top