Multiplayer issues
Moderator: Moderators
-
JimmyAngler
- High General

- Posts: 837
- Joined: Mon Nov 04, 2013 10:37 am
- Projects :: Battlefront Halation
- xbox live or psn: none
- Location: Area 51
Multiplayer issues
So I'm trying to play online with some friends on my mod, but it will not allow it. The map Blood Gulch shows up twice in the multiplayer list, and both are selected when I click on one. My new era doesn't show up, or the game mode. It just displays the basic ones. I also can't find the added era on polis masa. I have no idea about online things, so what needs to be done?
-
Noobasaurus
- Droid Pilot Assassin

- Posts: 2006
- Joined: Tue Aug 17, 2010 5:56 pm
Re: Multiplayer issues
If you can't see it on the map list, it's most likely your addme that's causing problems. Post that please.
-
JimmyAngler
- High General

- Posts: 837
- Joined: Mon Nov 04, 2013 10:37 am
- Projects :: Battlefront Halation
- xbox live or psn: none
- Location: Area 51
Re: Multiplayer issues
The map is on the list, just not the modes and eras.
Hidden/Spoiler:
- [RDH]Zerted
- Gametoast Staff

- Posts: 2982
- Joined: Sun Feb 26, 2006 7:36 am
- Projects :: Bos Wars AI - a RTS game
- xbox live or psn: No gamertag set
- Location: USA
- Contact:
Re: Multiplayer issues
It shows up twice in MP because you have these lines twice:That code 'copies' the map entry in SP to MP. You copy it twice so it shows up twice.
Both of your AddNewGameModes calls add the game mode to sp_missionselect_listbox_contents, which is the singleplayer list. Perhaps you meant to use mp_missionselect_listbox_contents for one of them?
*SP = singleplayer
MP = multiplayer
Code: Select all
mp_n = table.getn(mp_missionselect_listbox_contents)
mp_missionselect_listbox_contents[mp_n+1] = sp_missionselect_listbox_contents[sp_n+1]Both of your AddNewGameModes calls add the game mode to sp_missionselect_listbox_contents, which is the singleplayer list. Perhaps you meant to use mp_missionselect_listbox_contents for one of them?
*SP = singleplayer
MP = multiplayer
