sourcemod-nativevotes
sourcemod-nativevotes copied to clipboard
CSGO unsupported anymore
By using your base plugin as example i did the following plugin(code below) and vote doesn't start.
`RegAdminCmd("DebugVote", GS, ADMFLAG_ROOT); public Action GS(client,args) {
new Handle:vote = NativeVotes_Create(YesNoHandler, NativeVotesType_Kick);
NativeVotes_SetInitiator(vote, client);
NativeVotes_SetDetails(vote, "Test Yes/No Vote");
NativeVotes_DisplayToAll(vote, 30);
} `