Bunch 'O' Questions
Moderator: Moderators
-
EGG_GUTS
- Master Bounty Hunter

- Posts: 1626
- Joined: Thu Dec 07, 2006 7:38 pm
- Projects :: No Mod project currently.
- xbox live or psn: No gamertag set
- Location: CANADA!
Bunch 'O' Questions
1. How Do I make spears damage droids?
2. How do I make it so units don't take the CP? ( I tried CTF CP but it decreased the # of units)
Thanks
2. How do I make it so units don't take the CP? ( I tried CTF CP but it decreased the # of units)
Thanks
Last edited by EGG_GUTS on Sat Sep 01, 2007 10:31 am, edited 1 time in total.
-
Penguin
- Jedi Admin

- Posts: 2541
- Joined: Sun Mar 05, 2006 12:00 am
- Location: Australia
RE: Bunch
edit the spears .odf and change the damageline for droids to 1
theres an odf line for #2, forgot what it was called though, look in the side .odfs for the 'other' sides (ewoks, tuskans/jawas, etc) you'll know it when you see it.
theres an odf line for #2, forgot what it was called though, look in the side .odfs for the 'other' sides (ewoks, tuskans/jawas, etc) you'll know it when you see it.
-
Ace_Azzameen_5
- Jedi

- Posts: 1119
- Joined: Sat Apr 23, 2005 8:52 pm
- Projects :: No Mod project currently.
- xbox live or psn: No gamertag set
RE: Bunch
Is it
CapturePosts = 0
?
CapturePosts = 0
?
-
EGG_GUTS
- Master Bounty Hunter

- Posts: 1626
- Joined: Thu Dec 07, 2006 7:38 pm
- Projects :: No Mod project currently.
- xbox live or psn: No gamertag set
- Location: CANADA!
- Maveritchell
- Jedi Admin

- Posts: 7366
- Joined: Mon Aug 21, 2006 11:03 pm
-
Commander_Cody771
- Vader's Apprentice
- Posts: 1069
- Joined: Thu Jun 07, 2007 5:02 pm
- Projects :: No Mod project currently.
- xbox live or psn: No gamertag set
- Location: Looking for a new CPU
- Contact:
-
BountyHunterV
-
EGG_GUTS
- Master Bounty Hunter

- Posts: 1626
- Joined: Thu Dec 07, 2006 7:38 pm
- Projects :: No Mod project currently.
- xbox live or psn: No gamertag set
- Location: CANADA!
-
t551
- General

- Posts: 791
- Joined: Sat Jul 16, 2005 3:23 pm
- Projects :: No Mod project currently.
- xbox live or psn: No gamertag set
-
EGG_GUTS
- Master Bounty Hunter

- Posts: 1626
- Joined: Thu Dec 07, 2006 7:38 pm
- Projects :: No Mod project currently.
- xbox live or psn: No gamertag set
- Location: CANADA!
Re: Bunch 'O' Questions
What would I add to the odf or LUA so that they would have that goal?
- Teancum
- Jedi Admin

- Posts: 11080
- Joined: Wed Sep 07, 2005 11:42 pm
- Projects :: No Mod project currently.
- xbox live or psn: No gamertag set
- Location: Indiana
Re: Bunch 'O' Questions
In your lua. Look for AddAIGoal -- change it from Conquest to Deathmatch to change a team's preference. If it's deathmatch they'll just go for other teams.
-
EGG_GUTS
- Master Bounty Hunter

- Posts: 1626
- Joined: Thu Dec 07, 2006 7:38 pm
- Projects :: No Mod project currently.
- xbox live or psn: No gamertag set
- Location: CANADA!
Can You spot the fault with the locals?
Ok thanks. 
EDIT
I'm trying to add locals to my map but there not showing up can anybody spot the fault?
Munge Log Says there's a bracket missing but I don't see it.
Lua
Thanks
EDIT
I'm trying to add locals to my map but there not showing up can anybody spot the fault?
Munge Log Says there's a bracket missing but I don't see it.
Hidden/Spoiler:
Hidden/Spoiler:
-
GolfBulb
Re: Can You spot the fault with the locals?
QAs we talked about on Xfire i still say you have to dd the CP 3 inthe lua, even if its non captuable, maybe.... jsut dont get it a control region adn you should be okay,
-
EGG_GUTS
- Master Bounty Hunter

- Posts: 1626
- Joined: Thu Dec 07, 2006 7:38 pm
- Projects :: No Mod project currently.
- xbox live or psn: No gamertag set
- Location: CANADA!
Bunch 'O' Questions
I've done this before you don't need a capture region. But I did add a control region....Could that be causing it?
Which leads to another question..
Can I give locals vehicles? And If I can do I but it in localdef spot on the vehicle spawn?
Which leads to another question..
Can I give locals vehicles? And If I can do I but it in localdef spot on the vehicle spawn?
Last edited by EGG_GUTS on Sat Sep 01, 2007 10:30 am, edited 1 time in total.
- Teancum
- Jedi Admin

- Posts: 11080
- Joined: Wed Sep 07, 2005 11:42 pm
- Projects :: No Mod project currently.
- xbox live or psn: No gamertag set
- Location: Indiana
Re: Can You spot the fault with the locals?
Whenever you see the first error (about common\scripts\BON\BONc_con.lua:133) it means you messed up somewhere in your lua. (The two errors below it are just saying it couldn't munge the lua correctly) The number is the line number where the error occured. So open it in Notepad, then hit CTRL + G (GoTo) and type 133. This is where you'll end up:C:\BF2_ModTools\ToolsFL\Bin\luac.exe: ..\..\common\scripts\BON\BONc_con.lua:133: unexpected symbol near ` '
ERROR[scriptmunge scripts\BON\BONc_con.lua]:Could not read input file.ERROR[scriptmunge scripts\BON\BONc_con.lua]:Could not read input file. [continuing]
2 Errors 0 Warnings
ERROR[levelpack mission\BONc_con.req]:Expecting bracket, but none was found.
File : munged\pc\bonc_con.script.req(1)...
ucft <--
ERROR[levelpack mission\BONc_con.req]:Expecting bracket, but none was found.
File : munged\pc\bonc_con.script.req(1)...
ucft <--
2 Errors 0 Warnings
SetTeamName (3, "locals")
AddUnitClass (3, "cis_inf_pilot", 6,10)
SetUnitCount (3, 10)
Those three lines have a space before (3, so they're causing an error. They should be:
SetTeamName(3, "locals")
AddUnitClass(3, "cis_inf_pilot", 6,10)
SetUnitCount(3, 10)
Any time you see an Expecting Bracket error, see if there's an error above it, usually that's the problem.
-
EGG_GUTS
- Master Bounty Hunter

- Posts: 1626
- Joined: Thu Dec 07, 2006 7:38 pm
- Projects :: No Mod project currently.
- xbox live or psn: No gamertag set
- Location: CANADA!
Re: Can You spot the fault with the locals?
Thanks, Tean second time you helped me today 
- Teancum
- Jedi Admin

- Posts: 11080
- Joined: Wed Sep 07, 2005 11:42 pm
- Projects :: No Mod project currently.
- xbox live or psn: No gamertag set
- Location: Indiana
Re: Can You spot the fault with the locals?
Anytime bro.EGG_GUTS wrote:Thanks, Tean second time you helped me today
-
EGG_GUTS
- Master Bounty Hunter

- Posts: 1626
- Joined: Thu Dec 07, 2006 7:38 pm
- Projects :: No Mod project currently.
- xbox live or psn: No gamertag set
- Location: CANADA!
Re: Can You spot the fault with the locals?
Dam, I don't get it they are still not spawning and I still get that munge log problem and I literally see nothing wrong.
-
Hebes24
- Sith Master

- Posts: 2594
- Joined: Sat Jun 03, 2006 5:15 pm
- Projects :: No Mod project currently.
- xbox live or psn: No gamertag set
- Location: In An Epic Space Battle!
- Contact:
Re: Can You spot the fault with the locals?
Is it the same problem or a different one? Post the mungelog again.
