If you took a class in C you should remeber what a global variable is or if you don't you should read the basic tutorials for AMXX.
Code:
// Declare global vars out side of functions, prefeably under the header and before plugin_init()
#include <amxmodx>
new bool:gKillCam[33];
public plugin_init()
{
// Code...
}
__________________