Disable Wall Buys

Disable Wall Buys

//place this inside you main function of your mapname.gsc

level.func_override_wallbuy_prompt = &NoWallGuns;

//place this at the end of your mapname.gsc

function NoWallGuns(player) 
{
  self.stub.hint_string = "";
  self.stub.cursor_hint = "HINT_NOICON";
  return false;
}