(1414) : error 006: must be assigned to an array
case DIALOG_EMAIL: { if(response) { new email[64], message[64]; { ShowPlayerDialog(playerid, DIALOG_EMAIL, DIALOG_STYLE_INPUT,""COL_ORANGE"EMAIL","Unesite vas email","Uredu",""); } { ClearText(playerid); PlayerInfo[playerid][pEmail] = email ; format(message, sizeof(message), ""COL_ORANGE"SERVER: "COL_WHITE"U redu,vas email: %s.", email); SendClientMessage(playerid, 0xFFFFFFFF, message); ShowPlayerDialog(playerid, DIALOG_AGE, DIALOG_STYLE_INPUT,""COL_ORANGE"GODINE","Koliko imate godina?","Dalje",""); } } }
PlayerInfo[playerid][pEmail] = email;
if(dialogid == DIALOG_EMAIL)//1503 LINE
{
if(response)
{
new email[64], message[64];
{
ShowPlayerDialog(playerid, DIALOG_EMAIL, DIALOG_STYLE_INPUT,""COL_ORANGE"EMAIL","Unesite vas email","Uredu","");
}
else
{
ClearText(playerid);
PlayerInfo[playerid][pEmail] = email;
format(message, sizeof(message), ""COL_ORANGE"SERVER: "COL_WHITE"U redu,vas email: %s.", email);
SendClientMessage(playerid, 0xFFFFFFFF, message);
}
}
}
new pEmail[/*sizeof(email)*/]; //pEmail must be an array to store an string on it
PlayerInfo[playerid][pEmail[/*sizeof(email)*/]={1,2,3,.....}//email={1,2,3,....}
hello good morning you and posting the same here!
https://sampforum.blast.hk/showthread.php?tid=540675 PD: pawn Код:
|
C:\Users\Antonio\Desktop\SA_MP\SERVER\gamemodes\gmbeta.pwn(1423) : error 002: only a single statement (or expression) can follow each "case" C:\Users\Antonio\Desktop\SA_MP\SERVER\gamemodes\gmbeta.pwn(1423 -- 1424) : error 029: invalid expression, assumed zero C:\Users\Antonio\Desktop\SA_MP\SERVER\gamemodes\gmbeta.pwn(1424) : warning 217: loose indentation C:\Users\Antonio\Desktop\SA_MP\SERVER\gamemodes\gmbeta.pwn(1431) : error 029: invalid expression, assumed zero C:\Users\Antonio\Desktop\SA_MP\SERVER\gamemodes\gmbeta.pwn(1434) : error 006: must be assigned to an array C:\Users\Antonio\Desktop\SA_MP\SERVER\gamemodes\gmbeta.pwn(1441) : error 014: invalid statement; not in switch C:\Users\Antonio\Desktop\SA_MP\SERVER\gamemodes\gmbeta.pwn(1441) : warning 215: expression has no effect C:\Users\Antonio\Desktop\SA_MP\SERVER\gamemodes\gmbeta.pwn(1441) : error 001: expected token: ";", but found ":" C:\Users\Antonio\Desktop\SA_MP\SERVER\gamemodes\gmbeta.pwn(1441) : error 029: invalid expression, assumed zero C:\Users\Antonio\Desktop\SA_MP\SERVER\gamemodes\gmbeta.pwn(1441) : fatal error 107: too many error messages on one line Compilation aborted.Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase 8 Errors.
email is a string...must be assigned to array Ex: Ex[]="hello"....NOTE: string is a special kind of array
pawn Код:
|