Hello,
I'd like to be able to lock the menu keys after someone has voted (so the menu wouldnt react at all).
Any ideas? I'm using galileo btw.
Code:
for (new choiceIdx = 0; choiceIdx < g_choiceCnt; ++choiceIdx)
{
voteCnt = g_mapVote[choiceIdx];
vote_getTallyStr(voteTally, sizeof(voteTally)-1, voteCnt);
if(g_vote[0] == 0)
charCnt += formatex(voteStatus[charCnt], sizeof(voteStatus)-1-charCnt, "^n%s%i. \w%s%s", CLR_RED, choiceIdx+1, g_mapChoice[choiceIdx], voteTally);
else
charCnt += formatex(voteStatus[charCnt], sizeof(voteStatus)-1-charCnt, "^n%s%i. \d%s%s", CLR_RED, choiceIdx+1, g_mapChoice[choiceIdx], voteTally);
keys |= (1<<choiceIdx);
}