PlayerGangZoneFlash
هشدار
This function was added in omp v1.1.0.2612 and will not work in earlier versions!
توضیحات
چشمک زدن player gangzone را شروع میکند.
نام | توضیحات |
---|---|
playerid | ID بازیکنی که player gangzone به آن متصل است. |
zoneid | ID player gangzone برای شروع چشمک زدن. |
flashColour | رنگی که player gangzone با آن چشمک خواهد زد. |
مقدار بازگشتی
1: تابع با موفقیت اجرا شد. موفقیت حتی اگر player gangzone از قبل چشمک میزد گزارش میشود.
0: اجرای تابع ناموفق بود. gangzone مشخص شده وجود ندارد.
مثالها
// This variable is used to store the id of the gangzone
// so that we can use it throught the script
new gGangZoneID[MAX_PLAYERS] = {INVALID_GANG_ZONE, ...};
public OnPlayerConnect(playerid)
{
// Create the gangzone
gGangZoneID[playerid] = CreatePlayerGangZone(playerid, 2236.1475, 2424.7266, 2319.1636, 2502.4348);
// Show the gangzone player
PlayerGangZoneShow(playerid, gGangZoneID[playerid]);
// Start player gangzone flash
PlayerGangZoneFlash(playerid, gGangZoneID[playerid], 0xFF00FFFF);
}
توابع مرتبط
- CreatePlayerGangZone: player gangzone بساز.
- PlayerGangZoneDestroy: player gangzone را نابود کن.
- PlayerGangZoneShow: player gangzone نمایش بده.
- PlayerGangZoneHide: player gangzone را مخفی کن.
- PlayerGangZoneStopFlash: چشمک زدن player gangzone را متوقف کن.
- PlayerGangZoneGetColour: رنگ player gangzone را بگیر.
- PlayerGangZoneGetFlashColour: رنگ چشمک زدن player gangzone را بگیر.
- PlayerGangZoneGetPos: موقعیت gangzone را بگیر، نمایش داده شده توسط مختصات minX, minY, maxX, maxY.
- IsValidPlayerGangZone: بررسی کن که آیا player gangzone معتبر است.
- IsPlayerInPlayerGangZone: بررسی کن که آیا بازیکن در player gangzone است.
- IsPlayerGangZoneVisible: بررسی کن که آیا player gangzone قابل مشاهده است.
- IsPlayerGangZoneFlashing: بررسی کن که آیا player gangzone چشمک میزند.
- UsePlayerGangZoneCheck: callback را فعال کن وقتی بازیکن وارد/خارج این zone میشود.