Only stock weapons map.

RodionJenga

L5: Dapper Member
Oct 24, 2015
236
256
Well you could make all the other weapons do no damage, as @Corvatile did in arena_samurai_duel.

You also might be able to do it cleaner with a mod similar to tf2c, but that'd be much more work

Or if you could somehow intentionally loose connection from the item server...
 

worMatty

Repacking Evangelist
aa
Jul 22, 2014
1,257
999
The best way is to use a SourceMod plugin on the server, as that can be configured and updated separately from the map. You can use logic to strip players of weapons in your map but it's messy, not guaranteed to work for all weapons and isn't future-proof.

Alternatively, bundle a whitelist with your map for server operators to use with sv_pure. That should prevent players selecting weapons not on the list.
 

Grubzer

L5: Dapper Member
Jan 3, 2016
203
39
The best way is to use a SourceMod plugin on the server, as that can be configured and updated separately from the map. You can use logic to strip players of weapons in your map but it's messy, not guaranteed to work for all weapons and isn't future-proof.

Alternatively, bundle a whitelist with your map for server operators to use with sv_pure. That should prevent players selecting weapons not on the list.

Well, sounds quite complicated, but i will try this