Hopefully I am posting all that is relevant:
In a special rounds menu for admins they have an option to chose a Knife Only Round which would do this:
PHP Code:
// Knife Only Round
case 3:
{
if(b_Knife == false)
{
ColorChat(id, GREEN, "^x04%s ^x01You selected Knife Only.", TAG)
SpecialDay = SpecialDay + 1
b_Knife = true
}
else
{
ColorChat(id, GREEN, "^x04%s ^x01You already selected Knife Only.", TAG)
}
}
And then on round start it would do the previous code in my above post.