• Another darkrp error, config related
    1 replies, posted
I know this is my second time coming here in the last hour, sorry, but I'm having another problem all info on the error is at [URL="http://hastebin.com/hehojilova.vbs"]http://hastebin.com/hehojilova.vbs[/URL] , thanks
[lua]-- The list of weapons that players are not allowed to drop. Items set to true are not allowed to be dropped GM.Config.DisallowDrop = { ["arrest_stick"] = true, ["door_ram"] = true, ["gmod_camera"] = true, ["gmod_tool"] = true, ["keys"] = true, ["lockpick"] = true, ["med_kit"] = true, ["pocket"] = true, ["stunstick"] = true, ["unarrest_stick"] = true, ["weapon_keypadchecker"] = true, ["weapon_physcannon"] = true, ["weapon_physgun"] = true, ["weaponchecker"] = true ["necromancer_swep"] = true ["vip_swep_ninjarope_v2x2"] = true ["blink_swep"] = true }[/lua] You need to make sure you separate items in a table with a comma. [lua]-- The list of weapons that players are not allowed to drop. Items set to true are not allowed to be dropped GM.Config.DisallowDrop = { ["arrest_stick"] = true, ["door_ram"] = true, ["gmod_camera"] = true, ["gmod_tool"] = true, ["keys"] = true, ["lockpick"] = true, ["med_kit"] = true, ["pocket"] = true, ["stunstick"] = true, ["unarrest_stick"] = true, ["weapon_keypadchecker"] = true, ["weapon_physcannon"] = true, ["weapon_physgun"] = true, ["weaponchecker"] = true, ["necromancer_swep"] = true, ["vip_swep_ninjarope_v2x2"] = true, ["blink_swep"] = true }[/lua] Lines 275-294. I didn't check the rest of the file, so be sure to be careful when editing/making tables.
Sorry, you need to Log In to post a reply to this thread.