Is it possible to make an item/swep or whatever non-admin by changing something in the LUA?
If you mean the spawning of the weapon then yes.
Find a couple line something like this:
[lua]
SWEP.Spawnable = false
SWEP.AdminSpawnable = true
[/lua]
And change it to:
[lua]
SWEP.Spawnable = true
SWEP.AdminSpawnable = false
[/lua]
This will make it so that normal players can spawn the weapon.
If the two lines do not exist then make them somewhere in the weapon's lua file.
Thanks :)
Sorry, you need to Log In to post a reply to this thread.