[Ayuda]Necesito ayuda para implementar mi codigo.
#1

Код:
	if (strcmp("/repartidor de pizza", cmdtext, true, 10) == 0)
	{
        if(GetVehicleModel(GetPlayerVehicleID(playerid)) == 448)
      	{
      	    PizzaJob[playerid] = 1;
            new name[MAX_PLAYER_NAME];
        	GetPlayerName(playerid, name, sizeof(name));
            format(string, sizeof(string), "* %s Es Un Repartidor de Pizas.", name );
			SendClientMessageToAll(COLOR_YELLOW, string);
            SetPlayerCheckpoint(playerid,-2508.4971,-109.0806,25.2135,10);
			SendClientMessage(playerid,COLOR_YELLOW,"* Reparte las pizzas a las siguientes casas y resiviras tu Paga!");
			return 1;
	 }
		SendClientMessage(playerid, COLOR_RED,"Nesesitas una moto de repartidor de pizzas para comenzar el trabajo y tener puesto el uniforme!");
		return 1;
	}
Quiero que si la persona que pone el comando no tiene el skin "155" para trabajar no pueda seguir con el trabajo, como lo que hise con el vehiculo pero con la skin, gracias de antemano y espero sus respuestas saludos!
Reply
#2

pawn Код:
if (strcmp("/repartidor de pizza", cmdtext, true, 10) == 0)
    {
        if(GetVehicleModel(GetPlayerVehicleID(playerid)) == 448)
        {
            if(GetPlayerSkin(playerid) != 155) return SendClientMessage(playerid, -1, "No tienes el skin del pizza man.");
            PizzaJob[playerid] = 1;
            new name[MAX_PLAYER_NAME];
            GetPlayerName(playerid, name, sizeof(name));
            format(string, sizeof(string), "* %s Es Un Repartidor de Pizas.", name );
            SendClientMessageToAll(COLOR_YELLOW, string);
            SetPlayerCheckpoint(playerid,-2508.4971,-109.0806,25.2135,10);
            SendClientMessage(playerid,COLOR_YELLOW,"* Reparte las pizzas a las siguientes casas y resiviras tu Paga!");
            return 1;
     }
        else return SendClientMessage(playerid, COLOR_RED,"Nesesitas una moto de repartidor de pizzas para comenzar el trabajo y tener puesto el uniforme!");
        return 1;
    }
Reply
#3

Muchas gracias
Reply
#4

EDIT: Me ganaste Strier
Reply


Forum Jump:


Users browsing this thread: 2 Guest(s)