View Single Post
Grafi_
Junior Member
Join Date: Apr 2022
Location: Poland
Old 07-22-2022 , 15:50   Re: cl_fullupdate on client
Reply With Quote #2

Quote:
Originally Posted by slava123 View Post
hi is there any plugin or a way to execute cl_fullupdate command on a client without using sv_cheats 1.
HTML Code:
#include <sourcemod>

public void OnPluginStart()
{
    RegConsoleCmd("sm_fullupdate", CMD_FullUpdate);
}

public Action CMD_FullUpdate(int client, int args)
{
    ClientCommand(client, "cl_fullupdate 1");
}
maybe this?

Last edited by Grafi_; 07-22-2022 at 15:52.
Grafi_ is offline