kicks the player out of the vehicle when the owner /v bring it.

This commit is contained in:
Steven Howard 2018-09-18 20:40:38 +01:00
parent e82ab2e4f3
commit c13bfb4716

View File

@ -5536,7 +5536,6 @@ public OnPlayerTakePlayerDamage( playerid, issuerid, &Float: amount, weaponid, b
if ( p_Class[ issuerid ] == CLASS_POLICE && p_inFBI{ issuerid } && p_inCIA{ issuerid } && !p_inArmy{ issuerid } ) if ( p_Class[ issuerid ] == CLASS_POLICE && p_inFBI{ issuerid } && p_inCIA{ issuerid } && !p_inArmy{ issuerid } )
SetPlayerColor( issuerid, setAlpha( COLOR_CIA, 0xFF ) ), p_VisibleOnRadar[ issuerid ] = g_iTime + 2; SetPlayerColor( issuerid, setAlpha( COLOR_CIA, 0xFF ) ), p_VisibleOnRadar[ issuerid ] = g_iTime + 2;
// alert admins // alert admins
new new
attack_difference = GetTickCount( ) - p_PlayerAltBindTick[ playerid ]; attack_difference = GetTickCount( ) - p_PlayerAltBindTick[ playerid ];
@ -16114,6 +16113,15 @@ public OnDialogResponse(playerid, dialogid, response, listitem, inputtext[])
if ( GetPlayerCash( playerid ) < 10000 ) if ( GetPlayerCash( playerid ) < 10000 )
return SendError( playerid, "You need $10,000 to bring your vehicle to you." ); return SendError( playerid, "You need $10,000 to bring your vehicle to you." );
foreach( new i : Player )
{
if ( GetPlayerVehicleID( i ) == g_vehicleData[ playerid ] [ id ] [ E_VEHICLE_ID ] )
{
SetPlayerPos( i, X, Y, ( Z + 0.5 ) );
SendServerMessage( i, "You have been thrown out of the vehicle as the owner has teleported it away!" );
}
}
new new
Float: nodeX, Float: nodeY, Float: nodeZ, Float: nextX, Float: nextY, Float: nodeX, Float: nodeY, Float: nodeZ, Float: nextX, Float: nextY,
nodeid = NearestNodeFromPoint( X, Y, Z ), nodeid = NearestNodeFromPoint( X, Y, Z ),