15.06.2017, 07:28
You can try this....
On the top of the script
On the top of the script
PHP Code:
new Team;
#define Team_VIP 1 //making team
#define Team_Something
PHP Code:
public OnPlayerSpawn(playerid)
{
if(GetPlayerSkin(playerid) == 230)
{
//GivePlayerWeapon(playerid,weaponid,ammo);
GivePlayerWeapon(playerid,34,1000); //Sniper with 1000 ammos
GivePlayerWeapon(playerid,24,1000); //Desert with 1000 ammos
GivePlayerWeapon(playerid,18,50); //50 moltoves
}
return 1;
}