View Single Post
nonick
BANNED
Join Date: Jul 2008
Old 02-10-2010 , 10:09   Re: SourceMod 1.3.1 Released! Also, Six Years.
#7

Is:
Code:
    new clients[maxClients];
    new total = 0;
    
    for (new i=1; i<=MaxClients; i++)
Need change to
Code:
    new clients[MaxClients];
    new total = 0;
    
    for (new i=1; i<=MaxClients; i++)
nonick is offline