Jump to content

Hound hotfix


Recommended Posts

@Coraxes, Before (started at 1 hound, scaled to 1-2 hounds):


	intro={warnduration= function() return 120 end, numhounds = function() return 1 end},	light={warnduration= function() return 60 end, numhounds = function() return 1 end},	med={warnduration= function() return 45 end, numhounds = function() return 1 + math.floor(math.random()+0.5) end},	heavy={warnduration= function() return 30 end, numhounds = function() return 1 + math.floor(math.random()+0.5) end},	crazy={warnduration= function() return 30 end, numhounds = function() return 1 + math.floor(math.random()+0.5) end},

After (starts at 2 hounds, scales to 7-10 hounds):

	intro={warnduration= function() return 120 end, numhounds = function() return 2 end},	light={warnduration= function() return 60 end, numhounds = function() return 2 + math.random(2) end},	med={warnduration= function() return 45 end, numhounds = function() return 3 + math.random(3) end},	heavy={warnduration= function() return 30 end, numhounds = function() return 4 + math.random(3) end},	crazy={warnduration= function() return 30 end, numhounds = function() return 6 + math.random(4) end},

Edit: All of this is per-player

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

Please be aware that the content of this thread may be outdated and no longer applicable.

×
  • Create New...