Error Code C:\Users\masi\Desktop\LoR-Reallife\gamemodes\LoR.pwn(1518) : error 010: invalid function or declaration
definierung : #define DIALOG_123 38
new LoginCode[MAX_PLAYERS];
1518 LoginCode[playerid] = random(8999)+1000;
format(string, sizeof string, "Gib bitte die Zahl ein %d", LoginCode[playerid]);
ShowPlayerDialog(playerid, DIALOG_123, DIALOG_STYLE_MSGBOX, "Code", string, "Ok", "Abbrechen");
DialogResponse
if(dialogid == DIALOG_123)
{
if(response)
{
new code = strval(inputtext);
if(LoginCode[playerid] == code)
{
//Code richtig
}
else
{
//Code Falsch
}
}
}
Bitte Helfen mfg