Re: Fire Teams Rule Adjustments
Posted: Sat Aug 06, 2011 2:49 am
[PX]IronFist wrote:I like how this is code, lol[PX]Kal Bob wrote:I actually really like this idea lol.Code: Select all
Here's an idea: Since the marshall is usually armed with the pistol we could add a rule that after two minutes the marshall can shoot anyone they see camping unless they get up and start hustling. Shooting back at the marshall is an instant out. Basically after two minutes the marshall becomes Judge Dredd.
Bob's been programming a little too much.
Code: Select all
@go_time = 2.minutes.from_now
@players.each do |player|
unless player.moving?
@marshall.shoot(player) if Time.now > @go_time
end
end