J:\spiele\gta-sa\gamemodes\blanko.pwn(526) : error 006: must be assigned to an array
J:\spiele\gta-sa\gamemodes\blanko.pwn(527) : error 035: argument type mismatch (argument 1)
J:\spiele\gta-sa\gamemodes\blanko.pwn(534) : error 012: invalid function call, not a valid address
J:\spiele\gta-sa\gamemodes\blanko.pwn(534) : warning 215: expression has no effect
J:\spiele\gta-sa\gamemodes\blanko.pwn(534) : error 001: expected token: ";", but found ")"
J:\spiele\gta-sa\gamemodes\blanko.pwn(534) : error 029: invalid expression, assumed zero
J:\spiele\gta-sa\gamemodes\blanko.pwn(534) : fatal error 107: too many error messages on one line
Compilation aborted.Pawn compiler 3.2.3664 Copyright (c) 1997-2006, ITB CompuPhase
6 Errors.
if(strcmp(cmd, "/sethp", true) == 0)
{
if(IsPlayerConnected(playerid))
{
tmp = strtok(cmdtext, idx); //zeile 526
if(!strlen(tmp)) //zeile 527
{
SendClientMessage(playerid, rot, "Benutze /sethp id hp");
return 1;
}
new playa;
new health;
playa = ReturnUser(tmp); //zeile 534
tmp = strtok(cmdtext, idx);
health = strval(tmp);
if (PlayerInfo[playerid][padmlvl] >= 4)
{
if(IsPlayerConnected(playa))
{
if(playa != INVALID_PLAYER_ID)
{
SetPlayerHealth(playa, health);
}
}
}
else
{
SendClientMessage(playerid, COLOR_GRAD1, "Dir ist es nicht erlaubt, diesen Befehl zu benutzen!");
}
}
return 1;
}
Was habe ich hier falsch gemacht ich hoffe ihr könnt mir helfen