13.12.2017, 11:41
I have a problem from the interior....
I have the Bar interior and when I go to the bar I will not show up.. WHy?
I have the Bar interior and when I go to the bar I will not show up.. WHy?
Bar[0] = CreateDynamicPickup(19606, 1,2309.5432,-1643.5651,14.8270, -1, -1, -1, 50.0);
Bar[1] = CreateDynamicPickup(19606, 1,502.0413,-68.1444,998.7578, -1, -1, -1, 50.0);
public OnPlayerPickUpDynamicPickup(playerid, pickupid)
{
if(pickupid == Bar[0])
{
SetPlayerPos(playerid, 502.1282, -71.5187, 997.7511+1);
SetPlayerInterior(playerid, 1);
}
if(pickupid == Bar[1])
{
SetPlayerPos(playerid,2307.3132,-1643.8289,14.9570);
SetPlayerInterior(playerid, 0);
}
return 1;
}
|
Porting me only works....
Code: PHP код:
PHP код:
|
public OnPlayerPickUpDynamicPickup(playerid, pickupid)
{
if(pickupid == Bar[0])
{
SetPlayerPos(playerid, 502.1282, -71.5187, 997.7511+1);
SetPlayerInterior(playerid, 11);
}
if(pickupid == Bar[1])
{
SetPlayerPos(playerid,2307.3132,-1643.8289,14.9570);
SetPlayerInterior(playerid, 0);
}
return 1;
}
?