Issue 303: Prop Core Evolve plugin
Status:  New
Owner: ----
Reported by Tshep81@gmail.com, Feb 13, 2011
when using 

#################################################
/*-------------------------------------------------------------------------------------------------------------------------
	Evolve Propcore Privileges
-------------------------------------------------------------------------------------------------------------------------*/
 
local PLUGIN = {}
PLUGIN.Title = "Noclip"
PLUGIN.Description = "Propcore settings."
PLUGIN.Author = "MechWipf"
PLUGIN.Privileges = { "Prop spawn","Prop delete","Prop pos","Prop ang","Prop Tdelete","Prop freeze","Prop gravity","Prop manipulate","Prop break","Prop solid","Prop parent","Prop deparent" }
 
local sbox_E2_PropCore = GetConVar("sbox_E2_PropCore")
local dump = PropCore.ValidAction()
 
local function OverwitePropCore()
	if ( PropCore ) then
		PropCore.ValidAction=function (self, entity, cmd)
		if (not self.player:EV_HasPrivilege( "Prop "..cmd )) then return false end
                dump
                end
	end
end
 
if ( !(PropCore) ) then
	timer.Simple( 1, OverwitePropCore);
else
	OverwitePropCore();
end
 
evolve:RegisterPlugin( PLUGIN )

#################################################

I get a server error 
[addons\evolve\lua\ev_propcore.lua:19] '=' expected near 'end'