GangZoneHideForPlayer FR

From SA-MP Wiki

Jump to: navigation, search


Description:

Cache une zone de gang pour un joueur.


Paramètres:
(playerid, zone)
playeridL'ID du joueur à qui on va cacher la zone de gang.
zoneL'ID de la zone de gang à cacher.


RetourneCette fonction ne retourne pas de valeur spécifique.


new gangzone;
 
public OnGameModeInit()
{
    gangzone = GangZoneCreate(1248.011, 2072.804, 1439.348, 2204.319);
    return 1;
}
 
public OnPlayerSpawn(playerid)
{
    GangZoneShowForPlayer(playerid, gangzone, 0xFF0000FF);
    return 1;
}
 
public OnPlayerDeath(playerid, killerid, reason)
{
    GangZoneHideForPlayer(playerid,gangzone);
    return 1;
}

Fonctions Relatives

Les fonctions suivantes peuvent être utiles car elles sont indirectement ou directement liées a cette fonction.

Personal tools
Navigation
Toolbox
In other languages