Hey Leute,
ich habe hier 2 Warnings die ich fixxen möchte aber ich nicht weis wie.
PHP
		
			C:\Users\Dani\Desktop\GTA SAMP\German South Reallife Roleplay\gamemodes\GSRR.pwn(5271) : warning 202: number of arguments does not match definition
C:\Users\Dani\Desktop\GTA SAMP\German South Reallife Roleplay\gamemodes\GSRR.pwn(23044) : warning 202: number of arguments does not match definition
	
	
Zeile 5271:
zeile 23044:
PHP
		
					
			if(strcmp(cmd, "/saveallu", true) == 0)
	{
		if(IsPlayerConnected(playerid))
		{
			if(PlayerInfo[playerid][pAdmin] >= 3)
			{
				for(new i = 0; i < MAX_PLAYERS; i++)
				{
					if(IsPlayerConnected(i) && gPlayerLogged[i])
					{
						PlayerUpdate(i);
						OnPlayerCarUpdate(i); //Zeile 23044
					}
				}
				SendClientMessage(playerid, COLOR_GREEN, "Alle Daten wurden gespeichert.");
				return 1;
			}
		}
		return 1;
	}
	
			Alles anzeigen
	Bitte um Hilfe
Danke im Vorraus
MfG