Folgendes Problem:
Ich möchte das eine bestimmt person bei einer bestimmt position rauskommt
So sieht das aus
public befreien(playerid)
{
for(new i=0; i<MAX_PLAYERS; i++)
{
if(PlayerInfo[i][pJailed] == 1)
{
new playa;
playa = ReturnUser();
SetPlayerInterior(playa, 6);
SetPlayerPos(playa, 267.3019,77.5407,1001.0391);
SendClientMessage(playerid, COLOR_GREY, " Du wurdest befreit! ");
}
}
return 1;
}
Dan kommt folgender Error
C:\Dokumente und Einstellungen\murat aktas\Desktop\RL.pwn(29040) : warning 202: number of arguments does not match definition
Pawn compiler 3.2.3664 Copyright (c) 1997-2006, ITB CompuPhase
Wen ichs damit mache
new playa;
playa = ReturnUser(tmp);
tmp = strtok(cmdtext, idx);
Kommt undefinied cmdtext undefinied tmp ...
Ich hoffe ihr habt eine Lösung für mich