Pour les armes et les voitures je ne sais pas.
Mais pour quand le joueur se connecte ou déconnecte :
Quand il se connecte:
new PlayerName[MAX_PLAYER_NAME], string[128];
GetPlayerName(playerid, PlayerName, MAX_PLAYER_NAME);
format(string,sizeof(string),"*** %s (%d) a rejoint le serveur", PlayerName, playerid);
SendClientMessageToAll(COLOR_YELLOW,string);
Quand il se déconnecte:
new PlayerName[MAX_PLAYER_NAME], string[128];
GetPlayerName(playerid, PlayerName, MAX_PLAYER_NAME);
format(string,sizeof(string),"*** %s (%d) a quitté le serveur", PlayerName, playerid);
SendClientMessageToAll(COLOR_YELLOW,string);
Sinon utilise la fonction recherche. ;)
++