View Single Post
Glite
Senior Member
Join Date: Sep 2011
Location: Ukraine
Old 08-22-2013 , 08:29   Re: [CS:GO] KZMod
Reply With Quote #9

PHP Code:
public OnTouch(clientother)
{
    for (new 
05i++)
    {
        if ((
<= client <= MaxClients) && !(GetEntityFlags(client) & FL_ONGROUND))
        {
            
g_bCheckSurf[client] = true;
        }
        if ((
<= other <= MaxClients) && !(GetEntityFlags(other) & FL_ONGROUND))
        {
            
g_bCheckSurf[other] = true;
        }
    }

Why do you do this?
for (new i = 0; i < 5; i++)
Glite is offline