Pawn Errors
#2

pawn Код:
CMD:c20(playerid,params[])
{
     switch(pTrack[playerid]);
     {
          case INVALID_PLAYER_ID:
          {
         
           new id;
           if(sscanf(params,"u",id)) return SendClientMessage(playerid,-1,"/c20 [playerid]");
           if(!IsPlayerConnected(id)) return SendClientMessage(playerid,-1,"Invalid playerid");
           pTrack[playerid] = id;
           pTrackTimer[playerid] = SetTimerEx("TrackTimer",1000,1,"i",playerid);
     }
}

default
{
      pTrack[playerid] = INVALID_PLAYER_ID;
      KillTimer(pTrackTimer[playerid]);
      DisablePlayerCheckpoint(playerid);
    }
}
return 1;
}

public TrackTimer(playerid)
{
     new Float:pos[3];
     GetPlayerPos(pTrack[playerid], pos[0], pos[1], pos[2]);
     SetPlayerCheckpoint(playerid, pos[0], pos[1],pos [2], 4.0);
     return 1;
  }
}
Reply


Messages In This Thread
Pawn Errors - by Lunixx - 14.10.2013, 04:48
Re: Pawn Errors - by Jankingston - 14.10.2013, 04:57
Re: Pawn Errors - by newbie scripter - 14.10.2013, 05:11
Re: Pawn Errors - by Lunixx - 14.10.2013, 06:13
Re: Pawn Errors - by Jankingston - 14.10.2013, 06:43
Re: Pawn Errors - by Lunixx - 14.10.2013, 06:49
Re: Pawn Errors - by Konstantinos - 14.10.2013, 07:39

Forum Jump:


Users browsing this thread: 1 Guest(s)