View Single Post
zezad
New Member
Join Date: Sep 2022
Old 09-29-2022 , 10:06   Re: [CS:GO] Server crashes when terrorist dies
Reply With Quote #5

Quote:
Originally Posted by Cruze View Post
Are you precaching the models?
PHP Code:
public void OnMapStart()
{
    
load_dust_models();
}

void load_dust_models()
{
    
int i;
    for (
0sizeof(dust_models); i++)
    {
        if(
IsModelPrecached(dust_models[i]))
        {
            continue;
        }
        
PrecacheModel(dust_models[i]);
    }

zezad is offline