Author Topic: Need help with server add-on  (Read 2313 times)

I'm trying to make an addon where the player's speed is increased for some time and the FOV zooms out for that time.

A. How do I check time?
B. How do I cancel fov + speed after time?

1. Time - getSimTime();

2. Setting camera FOV, %client.setControlCameraFOV(fov);, and you would have to change their player's datablock over schedules.

and you would have to change their player's datablock over schedules.
How is this achieved?

How is this achieved?
%player.setDatablock(Datablock);
%player.schedule(1000,setDatablock,Datablock);

%player.setDatablock(Datablock);
%player.schedule(1000,setDatablock,Datablock);

Thanks