OnPlayerCommandText wo den sonst?
Aber ich hab di raus beommn hab noch nch 4 errors/warnings:
D:\GTA San andreas\SA.MP 0.3\samp03asvr_win32\gamemodes\CaR.pwn(415) : warning 225: unreachable code
D:\GTA San andreas\SA.MP 0.3\samp03asvr_win32\gamemodes\CaR.pwn(416) : error 047: array sizes do not match, or destination array is too small
D:\GTA San andreas\SA.MP 0.3\samp03asvr_win32\gamemodes\CaR.pwn(420) : error 047: array sizes do not match, or destination array is too small
D:\GTA San andreas\SA.MP 0.3\samp03asvr_win32\gamemodes\CaR.pwn(597) : warning 203: symbol is never used: "pInfo"
Pawn compiler 3.2.3664 Copyright (c) 1997-2006, ITB CompuPhase
2 Errors.
Das ist zeile 415-445
new index,cmd[30]; //zeile 368
cmd = strtok(cmdtext, index);
if (strcmp(cmd, "/killhim", true) == 0)
{
new tmp[30],id;
tmp = strtok(cmdtext, index);
if (strlen(tmp))
{
id = strval(tmp);
if (IsPlayerConnected(id))
if(gTeam[playerid] == TEAM_medic)
{
SetPlayerHealth(id,100.0);
GivePlayerMoney(id, -100);
SendClientMessage(id, 0x00FF00AA, "Du wurdest geheilt!");
SendClientMessage(playerid, 0x00FF00AA, "Du hast eine Person geheilt!");
}
else
{
SendClientMessage(playerid, 0xFF0000AA, "Spieler nicht gefunden!");
}
}
else
{
SendClientMessage(playerid, 0xFF0000AA, "Hinweis: \"/killhim <playerid>\"");
}
return 1;
}
}
return 0;
}
und das ist 581-596(ich weis im error steht ein warning in zeil 597 aber die existiert net)
stock strget(strx[], pos, search = ' ') {
new arg, ret[128], idxx;
for (new i = 0; i < strlen(strx); i++) {
if(strx[i] == search || i == strlen(strx) || strx[i + 1] == 10) {
arg++;
if (arg == pos + 1){
ret[i-idxx] = EOS;
return ret;
} else if (arg == pos)
idxx= i+1;
}
else if (arg == pos)
ret[i - idxx] = strx[i];
}
return ret;
}