Everyone on my server is using the dupes to get bombs and ammo/health. Is there any way to ban the dupes menu all together?
[QUOTE=Samg381;38503857]Everyone on my server is using the dupes to get bombs and ammo/health. Is there any way to ban the dupes menu all together?[/QUOTE]
Anyone, anyone?
Remove the Duplicator.
Let me share my knowledge, run this code serverside
[lua]function removeWepsAmmo()
weaps = ents.FindByClass("weapon*")
for _, weap in pairs(weaps) do
if (!string.match(weap:GetClass(),"^weapon_phys.*")) then
SafeRemoveEntity(weap)
end
end
items = ents.FindByClass("item*")
for _, item in pairs(items) do
SafeRemoveEntity(item)
end
end
hook.Add("Think", "removeWepsAmmo", removeWepsAmmo)[/lua]
Or you could just use FPP to restrict the dupe tool from that group
The last time I used FPP in GMod 12 it wouldn't save my settings for the server. I will try that, but if not I'll find the direcory for the duplicator tool and just remove it. Ive done this before with the dynamite tool.
[QUOTE=Samg381;38525050]The last time I used FPP in GMod 12 it wouldn't save my settings for the server. I will try that, but if not I'll find the direcory for the duplicator tool and just remove it. Ive done this before with the dynamite tool.[/QUOTE] It isn't the settings just go to the group and unclick able to use every tool. FPP already has preset tools for each group.
Sorry, you need to Log In to post a reply to this thread.