Skip to main content

IsPlayerAttachedObjectSlotUsed

คำอธิบาย

Check if a player has an object attached in the specified index (slot).

NameDescription
playeridThe ID of the player to check.
indexThe index (slot) to check.

ส่งคืน

1: The specified slot is used for an attached object.

0: The specified slot is not in use for an attached object.

ตัวอย่าง

stock CountAttachedObjects(playerid)
{
new count;
for(new i = 0; i < MAX_PLAYER_ATTACHED_OBJECTS; i++)
{
if (IsPlayerAttachedObjectSlotUsed(playerid, i))
{
count++;
}
}
return count;
}

ฟังก์ชั่นที่เกี่ยวข้องกัน