Page 2 of 2
Re: Bunch 'O' Questions
Posted: Fri Aug 31, 2007 5:53 pm
by EGG_GUTS
I really have no Idea how I did it but I got it working. So My local problem is over.

YAY
EDIT
Sorry For X2 Post. But would I switch this? (It's at the top of the LUA
Switch This:
Code: Select all
--
-- load the gametype script
ScriptCB_DoFile("ObjectiveConquest")
ScriptCB_DoFile("setup_teams")
With This:
Code: Select all
--
-- Mos Eisley Hero Deathmatch (uses Space Assault rules)
-- First team to reach 100 kills wins
--
ScriptCB_DoFile("setup_teams")
ScriptCB_DoFile("ObjectiveTDM")
Thanks
Re: Can You spot the fault with the locals?
Posted: Fri Aug 31, 2007 6:11 pm
by Teancum
I know what I forgot to tell you. AddAIGoal(3, "Deathmatch", 100) should go in the scriptPostLoad section (up top)
Re: Bunch 'O' Questions
Posted: Fri Aug 31, 2007 6:22 pm
by Teancum
Topics merged. It's way to hard to follow the same problem in two topics.
Re: Can You spot the fault with the locals?
Posted: Sat Sep 01, 2007 10:29 am
by EGG_GUTS
But that topic this one
Sorry For X2 Post. But would I switch this? (It's at the top of the LUA
Switch This:
--
-- load the gametype script
ScriptCB_DoFile("ObjectiveConquest")
ScriptCB_DoFile("setup_teams")
With This:
--
-- Mos Eisley Hero Deathmatch (uses Space Assault rules)
-- First team to reach 100 kills wins
--
ScriptCB_DoFile("setup_teams")
ScriptCB_DoFile("ObjectiveTDM")
Thanks
Was about giving the conquest sides a death match goal
Re: Bunch 'O' Questions
Posted: Sat Sep 01, 2007 7:06 pm
by Teancum
If you're only wanting team 3 not to capture CPs then all you have to do is move your AddAIGoal(3, "Deathmatch", 100) from where you have up to the ScriptPostLoad() section. That's where it should be anyhow. Teams 1 and 2 will play Conquest, and team 3 will just play team deathmatch. No need to change anything else.
Re: Bunch 'O' Questions
Posted: Sat Sep 01, 2007 9:56 pm
by EGG_GUTS
But I wish For team 1 and 2 to play death match as well.
Re: Bunch 'O' Questions
Posted: Sun Sep 02, 2007 1:28 am
by Teancum
Then yeah, change it like you had it above, but make sure you do the AddAIGoal for teams 1 and 2 as well as 3 in the ScriptPostLoad() section. Then remove any capture regions.