View Single Post
Darkness_
Veteran Member
Join Date: Nov 2014
Old 02-23-2015 , 18:33   Re: Using slowmotion without sv_cheat 1
Reply With Quote #9

This could work

PHP Code:
public slowMo() {
    for (new 
1<= MaxClientsi++) {
        if (!
IsClientInGame(i)) 
            continue;
        
SendConVarValue(iFindConVar("host_timescale"), "0.5");
    }
    
SetConVarInt(FindConVar("host_timescale"), "0.5");

Maybe run the SendConVarValue on a timer to make sure client dont change the value somehow

Last edited by Darkness_; 02-23-2015 at 18:34.
Darkness_ is offline