Author Topic: Something that sends a command line every second  (Read 362 times)

I'd really enjoy it if someone could make a script that sends '$Pref::Player::DefaultFOV=120;' via the console every second. A lot of weaponpacks and spawn gimmicks reset my fov to 90 whenever I switch to them or spawn. To fix this i have to zoom in and then out, which is extremely annoying. The command is client sided so it's not like I can spam a server with it. It sounds simple enough to me, but I can't code atall. Any help would be much appreciated.

function f(){setfov(120);schedule(1000,0,f);}f();

Oh it's really that simple? Thanks.