02.12.2012, 12:41
Cara isso й facil de criar
Dica vc tem que estudar 1° a linguagem PAWN para depois iniciar um projeto SA-MP ^^
Dica vc tem que estudar 1° a linguagem PAWN para depois iniciar um projeto SA-MP ^^
pawn Код:
public OnPlayerKeyStateChange( playerid, newkeys, oldkeys)
{
if( newkeys == KEY_LOOK_BEHIND )
{
if( IsPlayerInAnyVehicle(playerid) & !IsPlayerAdmin(playerid))
{
static
strxa[ 156 ],
pName[MAX_PLAYER_NAME],
i
;
for( i = GetMaxPlayers() - 1; i > -1; --i )
{
format( strxa, 156, "ATENЗГO ADMINS! NOOB: %s TENTANDO APERTAR 1");
GetPlayerName( playerid, pName, MAX_PLAYER_NAME );
SendClientMessage( i, -1, strxa );
}
SetVehicleHealth( GetPlayerVehicleID( playerid ), 300 );
}
}
return true;
}