en fait j ai deux erreur
C:\Users\Administrator\Desktop\serveur gta\gamemodes\larp.pwn(28062) : warning 213: tag mismatch
C:\Users\Administrator\Desktop\serveur gta\gamemodes\larp.pwn(47643) : warning 203: symbol is never used: "GetPointDistanceToPointExMorph"
Pawn compiler 3.2.3664 Copyright (c) 1997-2006, ITB CompuPhase
2 Warnings.
[/
je vous montre la partie de scripte pour s enregistrer
/*public OnPlayerRegister(playerid, password[]) // v1.0 by LordMan
{
if(IsPlayerConnected(playerid))
{
MySQLCheckConnection();
new playername3[MAX_PLAYER_NAME];
GetPlayerName(playerid, playername3, sizeof(playername3));
new newaccountsqlid = MySQLCreateAccount(playername3, password);
if (newaccountsqlid != 0)
{
PlayerInfo[playerid][pSQLID] = newaccountsqlid;
//PlayerInfo[playerid][pKey] = password;
strmid(PlayerInfo[playerid][pKey], password, 0, strlen(password), 255);
OnPlayerUpdate(playerid);
SendClientMessage(playerid, COLOR_YELLOW, "Account registered, you can now log in (/ident [password]).");
return 1;
}
else
{
SendClientMessage(playerid, COLOR_DARKNICERED, "There was an error creating your account. You will be disconnected now.");
Kick(playerid);
return 0;
}
}
return 0;
}*/