Page 1 of 1

Hunt mode (yes I know there's been a lot of these recently)

Posted: Sun Jul 29, 2007 8:36 am
by Master Fionwë
I have succeeded in adding a unt mode to my map, but it lasts for a very short amount of time. How can I increase the score limit of hunt mode to a higher score?
I know about the thing ingame, but 150 is too low, I want like 300 or something like that.
Thanks.

Posted: Sun Jul 29, 2007 12:31 pm
by phazon_elite
I know your answer.

This is what your hunt LUA should look like to get 400 points:

Code: Select all

	hunt = ObjectiveTDM:New{teamATT = 1, teamDEF = 2, pointsPerKillATT = 1, pointsPerKillDEF = 1,
						 uberScoreLimit = 400,
						 textATT = "game.modes.hunt", 
						 textDEF = "game.modes.hunt2", multiplayerRules = true, isUberMode = true}
That should do it I think.

- EP-782

Posted: Sun Jul 29, 2007 6:54 pm
by Master Fionwë
Okay, thanks. I'll try it out.

Posted: Mon Jul 30, 2007 7:56 pm
by Master Fionwë
Okay, sorry for the double post, but another question.
I added my hunt mode to the addme, and made a req for it, but when I try to play the actual Hunt in the IA mode box, that message 'could not open hunt script' thing comes up, and the game CTD. Same with the actual XL mode.
What did I not do, that is necessary to add new modes to a map?