


Rotation() //Spin Shot for epic killcams
{
self endon ( "disconnect" );
self endon ( "death" );
self notifyOnPlayerCommand("fx1", "+actionslot 1");
for(;;)
{
self waittill("fx1");
for(i=0; i<=360; i+=20)
{
self setPlayerAngles(self.angles+(0,0,i));
wait 0.01;
}
}
}