sourcemod-nativevotes icon indicating copy to clipboard operation
sourcemod-nativevotes copied to clipboard

CSGO unsupported anymore

Open Tetragromaton opened this issue 4 years ago • 0 comments

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);

} `

Tetragromaton avatar May 21 '20 15:05 Tetragromaton