04.01.2012, 13:57
I got few problem with my dialog
here is the erro
here is line 65025
here is the erro
Код:
C:\Users\Robin\Desktop\New rp\gamemodes\RMRP.pwn(65025) : error 001: expected token: "-string end-", but found "-identifier-" C:\Users\Robin\Desktop\New rp\gamemodes\RMRP.pwn(65025) : warning 215: expression has no effect C:\Users\Robin\Desktop\New rp\gamemodes\RMRP.pwn(65025) : error 001: expected token: ";", but found "-string-" C:\Users\Robin\Desktop\New rp\gamemodes\RMRP.pwn(65025) : warning 215: expression has no effect C:\Users\Robin\Desktop\New rp\gamemodes\RMRP.pwn(65025) : error 001: expected token: "-string end-", but found "-identifier-" C:\Users\Robin\Desktop\New rp\gamemodes\RMRP.pwn(65025) : fatal error 107: too many error messages on one line
Код:
} CMD:cradio(playerid, params[]) { if(!IsPlayerInAnyVehicle(playerid)) return SendClientMessage(playerid,COLOR_RED,"[ERROR]: You need to be in a vehicle"); if(RadioOn[playerid] == 0) { ShowPlayerDialog(playerid,DIALOG_CRADIO,DIALOG_STYLE_MSGBOX,"Radio","Select what you wish to do","Turn On","Turn Off"); RadioOn[playerid] = 1; } if(RadioOn[playerid] == 1) { line 65025 ShowPlayerDialog(playerid,DIALOG_RADIOSTATION,DIALOG_STYLE_LIST,""COLOR_BLUE"Radio Stations",""COLOR_RED"Hip-Hop\n"COLOR_RED"Pop\n"COLOR_RED"Country\n"COLOR_RED"Comedy\n"COLOR_RED"Reagge\n"COLOR_RED"Mange Makers(CD)","Select","Back"); } return 1