View Single Post
iNFiNiTeX
Senior Member
Join Date: Dec 2009
Old 01-30-2010 , 16:39   Re: [L4D & L4D2] Custom Player Stats v1.4B61
Reply With Quote #125

Quote:
Originally Posted by muukis View Post
When using the original version of the plugin, what do you have in the steamid field on the bot rows?
Code:
IsClientBot(client)
{
    if (client == 0 || !IsClientConnected(client))
        return true;

    decl String:SteamID[MAX_LINE_WIDTH];
    GetClientRankAuthString(client, SteamID, sizeof(SteamID));

    if (StrEqual(SteamID, "BOT", false))
        return true;

    return false;
}
This? I didn't change it.

By original, do you mean the previously posted version which was modified to use names?
iNFiNiTeX is offline