through looking in this forum I managed to bolt together a way to get my MP players to drop all their weapons at the start of a specific level of my map and each receieve a silenced pistol. But is there a way to script the removal of all the ammo from those pistols? (I want the level to be a bash only).
I saw one way which seemes to involve editing the TIKI, but on this score I am very unsure of myself. Is their a way to do it through scripting only?
Here is my script so far...
for(local.i=1;local.i <= $player.size ;local.i++)
{
$player[local.i] holster
$player[local.i] takeall
$player[local.i] item weapons/silencedpistol.tik
$player[local.i] useweaponclass pistol
$player[local.i] ammo silencedpistol 0 //this doesn't work
}
Thanks in advance for any help offered.

