Jump to content
  • 0

[GF/RP] eroare comanda /tow


Question

Posted

cum fac la aceasta comanda sa fie normala

nu tow ls sau sf

si nici macar numi remorcheaza masina :|

sa fie doar cand scriu /tow sa mio remorchezze

	if(strcmp(cmd, "/tow", true) == 0)
	{
	  	if(IsPlayerConnected(playerid))
	   	{
		    tmp = strtok(cmdtext, idx);
		    if(!strlen(tmp))
		    {
		     	SendClientMessage(playerid, COLOR_GRAD2, "USAGE: /tow [LS or SF]");
		     	return 1;
		    }
		    new newcar = GetPlayerVehicleID(playerid);
    		new x_nr[256];
		   	x_nr = strtok(cmdtext, idx);
		   	if(strcmp(x_nr,"ls",true) == 0)
		   	{
				if(PlayerInfo[playerid][pMember] == 16 || PlayerInfo[playerid][pLeader] == 16)
				{
					if(!IsATowcar(newcar))
					{
					    if(IsTrailerAttachedToVehicle(GetPlayerVehicleID(playerid)))
						{
						    if(PlayerInfo[playerid][pTow] >= 1)
						    {
						        PlayerInfo[playerid][pTow] -= 1;
						    	CP[playerid] = 111;
								SetPlayerCheckpoint(playerid, 2412.4646,-1426.3083,23.9848, 5.0);
								SendClientMessage(playerid, COLOR_YELLOW, "Drive to Warehouse to destroy the towed car.");
							}
							else
							{
							    SendClientMessage(playerid, COLOR_GRAD1, "	You cannot tow any car till PayDay.");
							}
						}
						else
						{
						    SendClientMessage(playerid, COLOR_GRAD1, "   You dont towed a car !");
						}
					}
					else
					{
						SendClientMessage(playerid, COLOR_GRAD1, "   You are not in a Tow Truck !");
					}
				}
			}
		}
		new x_nr[256];
		new newcar = GetPlayerVehicleID(playerid);
 		x_nr = strtok(cmdtext, idx);
  		if(strcmp(x_nr,"sf",true) == 0)
   		{
		    if(IsPlayerConnected(playerid))
		    {
				if(PlayerInfo[playerid][pMember] == 16 || PlayerInfo[playerid][pLeader] == 16)
				{
					if(!IsATowcar(newcar))
					{
					    if(IsTrailerAttachedToVehicle(GetPlayerVehicleID(playerid)))
						{
						    if(PlayerInfo[playerid][pTow] >= 1)
						    {
						        PlayerInfo[playerid][pTow] -= 1;
						    	CP[playerid] = 111;
								SetPlayerCheckpoint(playerid, 1617.2562,-2314.1616,13.5537, 5.0);
								SendClientMessage(playerid, COLOR_YELLOW, "Drive to Warehouse to destroy the towed car.");
							}
							else
							{
							    SendClientMessage(playerid, COLOR_GRAD1, "	You cannot tow any car till PayDay.");
							}
						}
						else
						{
						    SendClientMessage(playerid, COLOR_GRAD1, "   You dont towed a car !");
						}
					}
					else
					{
						SendClientMessage(playerid, COLOR_GRAD1, "   You are not in a Tow Truck !");
					}
				}
			}
			return 1;
		}
	}

0 answers to this question

Recommended Posts

There have been no answers to this question yet

Guest
This topic is now closed to further replies.
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. For more details you can also review our Terms of Use and Privacy Policy.