jcal147
Veteran
- Messages
- 63
- Reaction score
- 12
- Points
- 793
Try getting rid of the "thread" in FieldofView.I have been attempting to add a field of view option to my menu, however, whenever I chose an option, nothing happens. Can someone please tell me what problems are currently residing in this script. Your help is most appreciated.
ToggleFOV()
{
if(self.fov == true)
{
self iPrintln("FOV : ^2ON");
setDvar("cg_fov", "110");
self.fov = false;
}
else
{
self iPrintln("FOV : ^1OFF");
setDvar("cg_fov", "65");
self.fov = true;
}
}