[Help] PlayerToPoint
#7

This are the current problem I have, I tested all other stuff as well same problem.
When I type /Siren roof, the message appears that I have put the siren on the roof but no siren appears only them message :S

Код:
if(strcmp(cmd, "/siren", true) == 0)
	{
		if(IsPlayerConnected(playerid))
		{
		    if(PlayerInfo[playerid][pMember] == 1 || PlayerInfo[playerid][pLeader] == 1 || PlayerInfo[playerid][pMember] == 2 || PlayerInfo[playerid][pLeader] == 2)
			{
				new x_nr[256];
				x_nr = strtok(cmdtext, idx);
				if(!strlen(x_nr))
				{
	   				SendClientMessage(playerid, COLOR_GREY, "USAGE: /siren [inside, roof, nothing]");
	   				SendClientMessage(playerid, COLOR_GREY, "[INFO]: 'nothing' will remove the item from your vehicle!");
					return 1;
				}
				if(strcmp(x_nr,"inside",true) == 0)
				{
				    if( Siren[playerid] != INVALID_OBJECT_ID )
				    {
				        new VID;
						VID = GetPlayerVehicleID(playerid);
				        GetPlayerName(playerid, sendername, sizeof(sendername));
					    Siren[playerid] = CreateObject(18646, 10.0, 10.0, 10.0, 0, 0, 0);
						AttachObjectToVehicle(Siren[playerid], VID, 0.0, 0.75, 0.275, 0.0, 0.1, 0.0); // Inside - Premier
						format(string, sizeof(string), "* %s puts the siren on the dashboard.", sendername);
						ProxDetector(30.0, playerid, string, COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE);
					}
					else
					{
					    SendClientMessage(playerid, COLOR_GREY, "[INFO]: You do already have a siren...");
					}
				}
				else if(strcmp(x_nr,"roof",true) == 0)
				{
				    if( Siren[playerid] != INVALID_OBJECT_ID )
				    {
				        new VID;
						VID = GetPlayerVehicleID(playerid);
				        GetPlayerName(playerid, sendername, sizeof(sendername));
					    Siren[playerid] = CreateObject(18646, 10.0, 10.0, 10.0, 0, 0, 0);
						AttachObjectToVehicle(Siren[playerid], VID, -0.43, 0.0, 0.785, 0.0, 0.1, 0.0); // tak - Premier
						format(string, sizeof(string), "* %s puts the siren on the roof.", sendername);
						ProxDetector(30.0, playerid, string, COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE);
					}
					else
					{
					    SendClientMessage(playerid, COLOR_GREY, "[INFO]: You do already have a siren...");
					}
				}
	   			else if(strcmp(x_nr,"nothing",true) == 0)
				{
				    GetPlayerName(playerid, sendername, sizeof(sendername));
				    DestroyObject(Siren[playerid]);
					format(string, sizeof(string), "* %s takes down the siren.", sendername);
					ProxDetector(30.0, playerid, string, COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE);
				}
			}
			else
			{
			    SendClientMessage(playerid, COLOR_GREY, "[INFO]: Are you a cop?");
			}
		}
		return 1;
	}
Reply


Messages In This Thread
[Help] PlayerToPoint - by tony_fitto - 29.12.2010, 15:03
Re: [Help] PlayerToPoint - by xxmitsu - 29.12.2010, 15:31
Re: [Help] PlayerToPoint - by Steven82 - 29.12.2010, 17:04
Re: [Help] PlayerToPoint - by TheRob - 29.12.2010, 21:57
Re: [Help] PlayerToPoint - by tony_fitto - 30.12.2010, 02:50
Re: [Help] PlayerToPoint - by _rAped - 30.12.2010, 02:59
Re: [Help] PlayerToPoint - by tony_fitto - 30.12.2010, 13:56

Forum Jump:


Users browsing this thread: 2 Guest(s)