Teleport bug though Code is right ??
#1

Hey guys,

i made teleport pickups from LSPD garage to LSPD interior 6 ( where the jail is ) . I was searching here and found many topics with the same problem. I fixed all faults in the code and compile, but though it compiled successfully, the teleports aren't working. I don't know what i make wrong, here is my code, i hope you can show me a solution

Код:
new lspdenter;
new lspdexit;
Код:
public OnGameModeInit()
{
    new string[MAX_PLAYER_NAME];
    new string1[MAX_PLAYER_NAME];
	for(new c=0;c<CAR_AMOUNT;c++)
	{
	    lspdexit = CreatePickup(1239, 1, 257.8357,82.7456,1002.4453);
		lspdenter = CreatePickup(1239, 1, 1568.2990,-1691.2732,5.8906);
		Gas[c] = GasMax;
	}                 // the code is here not ending...
Код:
public OnPlayerPickUpPickup(playerid, pickupid)
{
		if (pickupid == lspdenter)
		{
 			SetPlayerInterior(playerid, 0);
			SetPlayerPos(playerid, 1568.4508,-1697.0718,5.8906);
			SetPlayerFacingAngle(playerid, 175.2836);
			DestroyPickup(lspdenter);
			SendClientMessage(playerid, COLOR_WHITE, "Du bist runter in die PD-Garage gegangen!");
			lspdenter = AddStaticPickup(1239, 1, 1568.2990,-1691.2732,5.8906);
		}
		if (pickupid == lspdexit)
 		{
		 	SetPlayerInterior(playerid, 6);
			SetPlayerPos(playerid, 254.4400,86.5069,1002.4453);
			SetPlayerFacingAngle(playerid, 24.4550);
			DestroyPickup(lspdexit);
			SendClientMessage(playerid, COLOR_WHITE, "Du bist hoch ins Police Department gegangen!");
			lspdexit = AddStaticPickup(1239, 1, 257.8357,82.7456,1002.4453);
		}
		return 1;
}
-Stylerboy-
Reply


Messages In This Thread
Teleport bug though Code is right ?? - by Stylerboy - 14.05.2009, 21:19
Re: Teleport bug though Code is right ?? - by Stylerboy - 14.05.2009, 21:21
Re: Teleport bug though Code is right ?? - by Joe Staff - 14.05.2009, 21:34
Re: Teleport bug though Code is right ?? - by Stylerboy - 15.05.2009, 11:32
Re: Teleport bug though Code is right ?? - by Stylerboy - 15.05.2009, 12:05
Re: Teleport bug though Code is right ?? - by Nero_3D - 15.05.2009, 12:22
Re: Teleport bug though Code is right ?? - by Stylerboy - 15.05.2009, 13:27
Re: Teleport bug though Code is right ?? - by Ignas1337 - 15.05.2009, 13:32
Re: Teleport bug though Code is right ?? - by Stylerboy - 15.05.2009, 13:45
Re: Teleport bug though Code is right ?? - by Ignas1337 - 15.05.2009, 13:54

Forum Jump:


Users browsing this thread: 1 Guest(s)