Hallo Community,
Ich habe da auf meinem Selfmade Deathmath Register gescriptet nun kommt nur ein warning
Zeile:
public OnPlayerRegister(playerid, password[])
{
if(IsPlayerConnected(playerid))
{
new string3[32];
new playername3[MAX_PLAYER_NAME];
GetPlayerName(playerid, playername3, sizeof(playername3));
format(string3, sizeof(string3), "Accounts/%s.ini", playername3);
new File: hFile = fopen(string3, io_write);
if (hFile)
{
strmid(PlayerInfo[playerid][pKey], password, 0, strlen(password), 255);
new var[32];
format(var, 32, "Registered=%d\n",PlayerInfo[playerid][pReg]);fwrite(hFile, var);
fclose(hFile);
ShowPlayerDialog(playerid,DIALOG_REG,DIALOG_STYLE_MSGBOX,"Account","Dein Account wurde erfolgreich registriert.\r\nDu kannst dich, wenn du auf \"OK\" klickst, einloggen.","OK","Schliessen");
}
}
return 1;
}
Warning:
C:\Dokumente und Einstellungen\nick\Desktop\lowi\gamemodes\Untitled.pwn(3267) : warning 219: local variable "var" shadows a variable at a preceding levelPawn compiler 3.2.3664 Copyright (c) 1997-2006, ITB CompuPhase
1 Warning.