Salut à tous, donc c'est court, je compile un FS que je modifie, et j'ai sa :
C:\Documents and Settings\Secours\Bureau\SAMP SERVER\filterscripts\administration.pwn(418) : warning 204: symbol is assigned a value that is never used: "String"
Voici les lignes 414 à 430 :
if (!strcmp(Cmd, "/destroyspawncar", true))
{
if (Levels[playerid] >= 4)
{
new JNom[256], String[256];
GetPlayerName(playerid, JNom, sizeof(JNom));
SendClientMessage(playerid, ROUGE, "Vous avez détruit toutes les voitures spawn par le staff.");
for(new i = 0; i < MAX_VEHICLES; i++)
{
if (SpawnCar == 1)
{
DestroyVehicle(i);
}
}
}
return 1;
}
J'ai rien touché à part les SendClientMessage si je ne me trompe pas, merci de m'aider.