Page 1 of 1

How do i make my mod work online?

Posted: Sun Oct 24, 2010 2:06 pm
by skelltor
ok so i went to make an online server for BFSM but the eras don't show up how do i get BFSM to work online?

Re: How do i make my mod work online?

Posted: Sun Oct 24, 2010 4:47 pm
by fasty

Re: How do i make my mod work online?

Posted: Sun Oct 24, 2010 5:44 pm
by skelltor
no i mean not in a dedicated server in a temporay server

Re: How do i make my mod work online?

Posted: Thu Oct 28, 2010 6:54 pm
by CressAlbane
Pretty sure you have to add it to the addme under the MP server select list but....
no idea how to do it.

Re: How do i make my mod work online?

Posted: Fri Oct 29, 2010 2:15 am
by [TFA]Padawan_Fighter
Why do you need a server manager for the temporary servers anyway? Why can't you just run them yourself with BF2?

Re: How do i make my mod work online?

Posted: Fri Oct 29, 2010 2:22 am
by Twilight_Warrior
He's saying NOT a dedicated server. His eras don't show up in the map selection list when he's making an ingame server.

Re: How do i make my mod work online?

Posted: Fri Oct 29, 2010 8:55 am
by skelltor
Twilight_Warrior wrote:He's saying NOT a dedicated server. His eras don't show up in the map selection list when he's making an ingame server.
yea thats what my problem is
CressAlbane wrote:Pretty sure you have to add it to the addme under the MP server select list but....
no idea how to do it.
does anyone know how to do this?

Re: How do i make my mod work online?

Posted: Fri Oct 29, 2010 5:25 pm
by fasty
In your addme.lua make sure it looks something like this

Code: Select all

sp_n = table.getn(sp_missionselect_listbox_contents)

[code]sp_missionselect_listbox_contents[sp_n+1] = { isModLevel = 1, mapluafile = "ABC%s_%s", era_g = 1, era_c = 1, mode_con_g = 1, mode_con_c  = 1,}
mp_n = table.getn(mp_missionselect_listbox_contents)
mp_missionselect_listbox_contents[mp_n+1] = sp_missionselect_listbox_contents[sp_n+1]
With the line at the bottom that adds it to the MP instant action list.

Re: How do i make my mod work online?

Posted: Fri Oct 29, 2010 6:43 pm
by skelltor
ok thx i will try that :)