View Single Post
foxhound27
AlliedModders Donor
Join Date: Sep 2019
Location: Argentina
Old 02-22-2020 , 10:08   Re: [L4D2]Glow Menu Modification / Help Requests
Reply With Quote #3

and i think this is wrong

PHP Code:
        char buffer[2056];
        
char SteamID[64];
        
GetClientAuthId(clientAuthId_Steam3SteamIDsizeof(SteamID));
        
Format(buffersizeof(buffer), "INSERT INTO glow(SteamID, color) VALUES ('%s', -1)"SteamID[client]);
        
SQL_TQuery(dbSQL_NothingCallbackbuffer); 
must be

PHP Code:
Format(buffersizeof(buffer), "INSERT INTO glow(SteamID, color) VALUES ('%s', -1)"SteamID); 
foxhound27 is offline