09.11.2017, 16:03
Para remover de um slot especifico:
https://sampwiki.blast.hk/wiki/RemovePlayerAttachedObject
Para remover todos use a funзгo:
https://sampwiki.blast.hk/wiki/RemovePlayerAttachedObject
Para remover todos use a funзгo:
PHP Code:
stock RemovePlayerAttachedObjects(playerid)
{
for(new i = 0; i < 10; i++)
{
RemovePlayerAttachedObject(playerid, i);
}
return 1;
}