I'm still in intro to programming class so that is far as I can get now
Code:
#include <amxmodx>
#include <amxmisc>
#include <fun>
#include <engine>
public plugin_init()
{
register_plugin("ObejectMoverObjectGlow", "1.0", "ArtemusOD")
register_cvar("sv_OMOGlow","1")
}
public LightMovable()
{
new ent[32];
while(ent = find_ent_by_class(ent,"func_door_rotating", "func_pushable"))
{
set_entity_visibility(kRenderFxGlowShell, 255, 0, 255, kRenderNormal, 25);
}
}
__________________