dcmd_vote(playerid, params[]) { if(IsPlayerConnected(playerid)) { if(ServerCFG[VoteInProgress]) return SCM(playerid, B_BILA, "[ 0 ] Voting is already in progress."); else if(!strlen(params)) return SCM(playerid, B_BILA, "[ 0 ] USAGE: /vote QUESTION"); else if(strlen(params) > 128) return SCM(playerid, B_BILA, "[ 0 ] Max. lenght of question is 128 chars."); new string[256]; format(string,sizeof(string),"[ VOTE ] Player %s started a vote, question: %s , vote is during 1 minute, use /yes /no.", Nick(playerid), params); SCMToAll(B_ZLUT,string); Timer[T_VoteEnd] = SetTimer("VoteEnd",60000,0); ServerCFG[VoteInProgress] = true; } return 1; }
C:\Documents and Settings\namai\Desktop\FeaR'ui\gamemodes\pcrp.pwn(15227) : error 017: undefined symbol "ServerCFG" C:\Documents and Settings\namai\Desktop\FeaR'ui\gamemodes\pcrp.pwn(15227) : error 017: undefined symbol "VoteInProgress" C:\Documents and Settings\namai\Desktop\FeaR'ui\gamemodes\pcrp.pwn(15227) : error 029: invalid expression, assumed zero C:\Documents and Settings\namai\Desktop\FeaR'ui\gamemodes\pcrp.pwn(15227) : fatal error 107: too many error messages on one line Compilation aborted.Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase 4 Errors.
Originally Posted by [_Ozas_
]
Of SA-MP Forum |
Originally Posted by [_Ozas_
]
I Do Not ![]() |
Command not working properly second and next times |
new ServerCFG;
new VoteInProgress;
C:\Documents and Settings\namai\Desktop\FeaR'ui\gamemodes\pcrp.pwn(15240) : error 028: invalid subscript (not an array or too many subscripts): "ServerCFG" C:\Documents and Settings\namai\Desktop\FeaR'ui\gamemodes\pcrp.pwn(15240) : warning 215: expression has no effect C:\Documents and Settings\namai\Desktop\FeaR'ui\gamemodes\pcrp.pwn(15240) : error 001: expected token: ";", but found "]" C:\Documents and Settings\namai\Desktop\FeaR'ui\gamemodes\pcrp.pwn(15240) : error 029: invalid expression, assumed zero C:\Documents and Settings\namai\Desktop\FeaR'ui\gamemodes\pcrp.pwn(15240) : fatal error 107: too many error messages on one line Compilation aborted.Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase 4 Errors.