View Single Post
Blowst
Senior Member
Join Date: Feb 2011
Location: Korea, Republic of
Old 06-05-2016 , 00:54   Re: [CSGO] Getting info from advanced votes
Reply With Quote #2

get info from client_info array.

PHP Code:
public void H_VoteForceRTVCallback(Menu menuint num_votesint num_clients, const int[][] client_infoint num_items, const int[][] item_info)
{
    for (
int i 0num_clientsi++)
    {
        
int client client_info[i][CLIENTINFO_CLIENT_INDEX/*or something, idk about this plugin.*/]
        
char name[64];
        
GetClientName(clientname64);
        
LogToFileEx(g_sLogPath"%s voted for %i"nameclient_info[i][VOTEINFO_CLIENT_ITEM]);
    }

__________________
Sorry about my poor English

Blowst is offline