[Ajuda] Ligar Carro
#1

Bom ja tenho os comandos tudo funcionando, porйm tem um problema que eu gostaria de solucionar ja tentei mais nгo consegui atй no search nгo tem :S.
O problema й o seguinte eu entro no carro digito /v ligar ele liga porem se eu sair dele e entrar em outro carro eu tenho que dar /v d e depois /v l ou seja preciso saber como vou zerar este valor para quando ele sair do carro eu poder entrar em outro e ja ligar!

Code:
Код:
    if (strcmp("/v ligar", cmdtext, true, 10) == 0 || strcmp("/v l", cmdtext, true, 10) == 0)
    {
        if(IsPlayerInAnyVehicle(playerid))
        {
       		new pname[MAX_PLAYER_NAME];
       		new string[70];
        	new mot, lu, alar, por, cap, porma, ob;
        	new carro = GetPlayerVehicleID(playerid);
        	if(carro != INVALID_VEHICLE_ID)
        	{
    			if(alarme[playerid] == 0)
				{
    				if(motor[playerid] == 0)
        			{
           				GetVehicleParamsEx(carro, mot, lu, alar, por, cap, porma, ob);
                	    SetVehicleParamsEx(carro, VEHICLE_PARAMS_ON, lu, alar, por, cap, porma, ob);
	                    motor[playerid] = 1;
 				      	SendClientMessage(playerid, 0xFFFFFFAA, "Veiculo {2F991A}Ligado!");
   	                 	GetPlayerName(playerid, pname, MAX_PLAYER_NAME);
      	              	format(string, sizeof(string), "%s girou a chave e ligou o veiculo.", pname);
          	 			ProxDetector(30.0, playerid, string, COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE);
        	            return 1;
       	             	}
					}
 				else
				{
		    		SendClientMessage(playerid, 0xAFAFAFAA, "Vocк nгo pode ligar o carro com o alarme disparado!");
			 	 	return 1;
			 	}
			}
		}
	}
    if (strcmp("/v desligar", cmdtext, true, 10) == 0 || strcmp("/v d", cmdtext, true, 10) == 0)
    {
		if(IsPlayerInAnyVehicle(playerid))
		{
			new pname[MAX_PLAYER_NAME];
			new string[70];
			new mot, lu, alar, por, cap, porma, ob;
        	new carro = GetPlayerVehicleID(playerid);
        	if(carro != INVALID_VEHICLE_ID)
            {
                if(motor[playerid] == 1)
                {
                    GetVehicleParamsEx(carro, mot, lu, alar, por, cap, porma, ob);
                    SetVehicleParamsEx(carro, VEHICLE_PARAMS_OFF, lu, alar, por, cap, porma, ob);
                    motor[playerid] = 0;
                    SendClientMessage(playerid, 0xFFFFFFAA, "Veiculo {E31919}Desligado!");
					GetPlayerName(playerid, pname, MAX_PLAYER_NAME);
					format(string, sizeof(string), "%s girou a chave e desligou o veiculo.", pname);
         			ProxDetector(30.0, playerid, string, COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE);
					return 1;
					}
				}
			}
		else
		{
		    SendClientMessage(playerid, 0xAFAFAFAA, "Vocк nгo estб em um veiculo");
		    return 1;
		}
	}
Reply


Messages In This Thread
Ligar Carro - by ViniKuliveguisky - 06.06.2013, 01:48
Respuesta: Ligar Carro - by ViniKuliveguisky - 06.06.2013, 22:07
Re: Ligar Carro - by JackStenzel - 06.06.2013, 22:48
Re: Ligar Carro - by ProKillerpa - 06.06.2013, 22:53
Respuesta: Re: Ligar Carro - by ViniKuliveguisky - 07.06.2013, 00:38
Respuesta: Ligar Carro - by ViniKuliveguisky - 07.06.2013, 21:39
Re: Ligar Carro - by MonFiTy - 07.06.2013, 21:42
Respuesta: Ligar Carro - by ViniKuliveguisky - 08.06.2013, 00:56
Respuesta: Ligar Carro - by ViniKuliveguisky - 18.06.2013, 23:24
Respuesta: Ligar Carro - by ViniKuliveguisky - 19.06.2013, 21:54

Forum Jump:


Users browsing this thread: 2 Guest(s)