What's wrong with this line?
#9

pawn Код:
if(strcmp(cmd, "/carlock", true) ==0)
    {
     if(GetClosestVehicle(playerid, 5))
     {
      for(new p = 0; p < MAX_PLAYERS; p++)
      {
        if(!strcmp(CarSystem[GetClosestVehicle(playerid,5)][Carowner], pName(playerid), true))
        {
       
        if(CarLock[GetClosestVehicle(playerid,5)] == 0)
        {
        CarLock[GetClosestVehicle(playerid,5)] = 1;
        SetVehicleParamsForPlayer(GetClosestVehicle(playerid,5),p,0,1);
        new str[128];
        format(str, sizeof(str), "*%s presses a key which locks the doors of the vehicle", pName(playerid));
        ProxDetector(30.0,playerid,str,MECHAT,MECHAT,MECHAT,MECHAT,MECHAT);
        return 1;
        }
        else if(CarLock[GetClosestVehicle(playerid,5)] == 1)
        {
        CarLock[GetClosestVehicle(playerid,5)] = 0;
        SetVehicleParamsForPlayer(GetClosestVehicle(playerid,5),p,0,0);
        new str[128];
        format(str, sizeof(str), "*%s presses a key which unlocks the doors of the vehicle", pName(playerid));
        ProxDetector(30.0,playerid,str,MECHAT,MECHAT,MECHAT,MECHAT,MECHAT);
        return 1;
        }
        }

       }


     }
     return 1;
     }
Reply


Messages In This Thread
What's wrong with this line? - by Mystique - 22.11.2010, 13:02
Re: What's wrong with this line? - by Flyfishes - 22.11.2010, 13:06
Re: What's wrong with this line? - by Mystique - 22.11.2010, 13:13
Re: What's wrong with this line? - by Lenny the Cup - 22.11.2010, 14:02
Re: What's wrong with this line? - by Scenario - 22.11.2010, 14:04
Re: What's wrong with this line? - by Mystique - 22.11.2010, 16:44
Re: What's wrong with this line? - by Scenario - 22.11.2010, 16:49
Re: What's wrong with this line? - by XePloiT - 22.11.2010, 17:16
Re: What's wrong with this line? - by Mystique - 22.11.2010, 19:18
Re: What's wrong with this line? - by Scenario - 22.11.2010, 19:28
Re: What's wrong with this line? - by armyoftwo - 22.11.2010, 19:30
Re: What's wrong with this line? - by Mystique - 22.11.2010, 19:41
Re: What's wrong with this line? - by Scenario - 22.11.2010, 19:54
Re: What's wrong with this line? - by Mystique - 22.11.2010, 20:00
Re: What's wrong with this line? - by XePloiT - 22.11.2010, 20:09
Re: What's wrong with this line? - by Mystique - 22.11.2010, 20:13

Forum Jump:


Users browsing this thread: 1 Guest(s)