Turorial para dar Colete para os jogadores no ZP 4.3
Primeiro Procure
#include < xs >
coloque abaixo do <xs >
#include < fun >
Depois Procure
public menu_extras(id, menuid, item)
// Give the new weapon and full ammo
fm_give_item(id, wname)
ExecuteHamB(Ham_GiveAmmo, id, MAXBPAMMO[weaponid], AMMOTYPE[weaponid], MAXBPAMMO[weaponid])
return PLUGIN_HANDLED;
}
// Extra Items Menu
public menu_extras(id, menuid, item)
{
Ai vamos editar assim :
// Give the new weapon and full ammo
fm_give_item(id, wname)
ExecuteHamB(Ham_GiveAmmo, id, MAXBPAMMO[weaponid], AMMOTYPE[weaponid], MAXBPAMMO[weaponid])
set_user_armor(id,50) // Quantidade de Colete aqui (por Padrão aqui Está 50)
return PLUGIN_HANDLED;
}
se quiser Dar Somente para o ADM
é só fazer isso :
// Give the new weapon and full ammo
fm_give_item(id, wname)
ExecuteHamB(Ham_GiveAmmo, id, MAXBPAMMO[weaponid], AMMOTYPE[weaponid], MAXBPAMMO[weaponid])
if(is_user_admin(id))
{
set_user_armor(id,50) // Quantidade de Colete aqui (por Padrão aqui Está 50)
}
return PLUGIN_HANDLED;
}
ou se quiser deixar uma Quantidade diferente para quem não é ADM
// Give the new weapon and full ammo
fm_give_item(id, wname)
ExecuteHamB(Ham_GiveAmmo, id, MAXBPAMMO[weaponid], AMMOTYPE[weaponid], MAXBPAMMO[weaponid])
if(is_user_admin(id))
{
set_user_armor(id,50) // Quantidade de Colete aqui (por Padrão aqui Está 50)
}
else
{
set_user_armor(id,20) // Quantidade de Colete aqui (por Padrão aqui Está 20) PAra Não ADMS
}
return PLUGIN_HANDLED;
}Pronto só isso !
0 comentários:
Postar um comentário