Also a tip, if you post code on the forum you can use  to make it look right. then you get:
	
	
	
	
Code:
[shcode=lua] Code here [/shcode]PLUGIN = {}
--Commands
function Initialize( Plugin )
    PLUGIN = Plugin
    Plugin:SetName( "SeaCustom" )
    Plugin:SetVersion( 0.1 )
    PluginManager = cRoot:Get():GetPluginManager()
    PluginManager:BindCommand("/heal",            "SeaCustom.heal",            HandleHealCommand,            " ~ Heal yourself!")
    PluginManager:BindCommand("/killstats",       "SeaCustom.killstats",       HandleKillStatsCommand,       " - Lose the game!")
    return true
end
	
 

 
