int weapon;
if (weapon = GetPlayerWeaponSlot(player, slot) == 3)
{
.....
}
сори не работа с оружием всегда вызвала у меня затруднение... как пройти по всему 3 слоту и как поставить альфу 0 ?
Добавлено (05.07.2018, 19:28:00)
---------------------------------------------
Код
int weapon = GivePlayerItem(client, "weapon_c4");
if (weapon > 0)
{
SetEntityRenderMode(weapon, RENDER_TRANSCOLOR);
SetEntityRenderColor(weapon, 0, 0, 0, 0);
}
int index = GetPlayerWeaponSlot(client, 4);
if (index > 0)
{
SetEntityRenderMode(index, RENDER_TRANSCOLOR);
SetEntityRenderColor(index, 0, 0, 0, 0);
}
Так бомба становится невидимой только когда ее выкидываешь.. а нужно чтоб ее небыло видно на скине
Вот на примере бомбы... не работает
Добавлено (05.07.2018, 19:46:16)
---------------------------------------------
Код
new index = -1;
for (new i = 0; i < 5; i++)
if ((index = GetPlayerWeaponSlot(client, i)) != -1)
SetEntityRenderMode(index, bInvWeapon[client] ? RENDER_NORMAL : RENDER_NONE);
bInvWeapon[client] = bInvWeapon[client] ? false : true;
return Plugin_Handled;
Пытался скрыть все оружие - не получилось..(