SA-MP Forums Archive
Help with my server - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+--- Thread: Help with my server (/showthread.php?tid=568605)



Help with my server - KiM0Ro - 23.03.2015

Hi everyone,why my server say me when i want to enter in anyone faction car this


Re: Help with my server - MrCallum - 23.03.2015

Show us your code for LSPD cruiser(s) or CTRL+F and search for:
You do not have permission to drive this car. Rent a room at the owner's house first!


Re: Help with my server - KiM0Ro - 23.03.2015

Here are the codes
Код:
  incar[playerid] = true;
    TeleportTime[playerid] = 10;
	GetVehiclePos(vehicleid, ReadPlayerPosition[playerid][ReadX], ReadPlayerPosition[playerid][ReadY], ReadPlayerPosition[playerid][ReadZ]);
	if(vehicleid >=1 && vehicleid <68)
	{
	    if(vehicleid ==PlayerInfo[playerid][Housekey] || (ispassenger == 1)){}
	    else
	    {
	        TogglePlayerControllable(playerid,0);
			SetTimerEx("UnfreezeTime", 10, false, "d", playerid);
	        SendClientMessage(playerid,-1,"  You have no permission to drive this car. Rent a room at the owner's house first!");
	    }
	}



Re: Help with my server - CalvinC - 23.03.2015

Is PlayerInfo[playerid][Housekey] set to the vehicle's ID that you're trying to enter?


Re: Help with my server - Fantje - 23.03.2015

Quote:
Originally Posted by KiM0Ro
Посмотреть сообщение
Here are the codes
Код:
  incar[playerid] = true;
    TeleportTime[playerid] = 10;
	GetVehiclePos(vehicleid, ReadPlayerPosition[playerid][ReadX], ReadPlayerPosition[playerid][ReadY], ReadPlayerPosition[playerid][ReadZ]);
	if(vehicleid >=1 && vehicleid <68)
	{
	    if(vehicleid ==PlayerInfo[playerid][Housekey] || (ispassenger == 1)){}
	    else
	    {
	        TogglePlayerControllable(playerid,0);
			SetTimerEx("UnfreezeTime", 10, false, "d", playerid);
	        SendClientMessage(playerid,-1,"  You have no permission to drive this car. Rent a room at the owner's house first!");
	    }
	}
Is this your script?