It's a 2 second change in the python but all it does is make it show up in the rumble game mode... you need to gif edit in 2 new start points for bots 3 and 4..
I managed to solve that one myself in the python, just fiddling with the start points to see if it can be done. Don't think its worth it though as there are hazards in the area where the two new start points would go. Unless I make all bots start in the corners.
I'm sorry I meant the heckraizer fix. I'm still confused on that.
This is how I did it:
Change two values: ("heckzone1", n) n changed to zero for both heckzone1 and heckzone2.
#Hellraiser stuff
hinge = self.GetHinge("Hinge01")
self.RegisterZone("heckzone1", 0)
self.Hell1 = Hazards2.HellRaiser(hinge, (3.034, 0.0, -6.926))
self.AddHazard(self.Hell1)
hinge = self.GetHinge("Hinge02")
self.RegisterZone("heckzone2", 0)
self.Hell2 = Hazards2.HellRaiser(hinge, (-3.049, 0.0, -6.926))
self.AddHazard(self.Hell2)
This isn't the best way to do it though.