I would like to know, how do you change the era's icon? In the instant action mneu, your playable eras icon/name. The problem is, because I am making a sides era for stock maps, the addme is causing problems. For example: I will get the icon/name working, but it will show on my munged world, not mygeeto (mygeeto is my test map). Or the era wont show at all, or SWBF2 crashes before I even get to the profile select screen.
I was talking with Marth8880 on x-fire, but we still couldnt seem to get it working. Yes, I read the 1.3 docs, but it still didnt help (unless I really did something wrong...)
Changing era icon/name? ***SOLVED***
Moderator: Moderators
- Tears2Roses
- Chief Warrant Officer

- Posts: 336
- Joined: Thu Jul 07, 2011 9:20 am
- Projects :: Oh some random stuff who knows
- xbox live or psn: PC beats xbox.
Changing era icon/name? ***SOLVED***
Last edited by Tears2Roses on Wed Nov 23, 2011 10:05 pm, edited 1 time in total.
- Unlucky13
- Sergeant Major

- Posts: 239
- Joined: Mon Jan 24, 2011 11:11 am
- Projects :: Models models models
Re: Chaning era icon/name
What does your addme look like?
- Tears2Roses
- Chief Warrant Officer

- Posts: 336
- Joined: Thu Jul 07, 2011 9:20 am
- Projects :: Oh some random stuff who knows
- xbox live or psn: PC beats xbox.
Re: Chaning era icon/name
addme.lua:
Currently, this makes my sides playable on mygeeto. However, it has the BFX icon. This is without attempting to change it to show a different icon using shell/code. I am experimenting with it, so for no good. If someone would know what I should put in my addme to change just the era icon/name and still be playable on mygeeto (without adding an orange mygeeto to the instant action menu) that'd be great. I will experiment with 1.3 docs and what not some more.
Hidden/Spoiler:
-
Marth8880
- Resistance Leader
- Posts: 5042
- Joined: Tue Feb 09, 2010 8:43 pm
- Projects :: DI2 + Psychosis
- xbox live or psn: Marth8880
- Location: Edinburgh, UK
- Contact:
Re: Chaning era icon/name
Yes, most excellent my dear child.......post your addme's LUA and your shell's REQ, so we may [pauses]...address your situation as we need. In due time, my dear child, in due time will everything come together as the Night Mother has forseen... After you have done this, proceed to Cheydinhal. There you will find...toast...lots and lots of toast...inside games...inside an excellent, inconspicuous, well-achieved forum where you will finally meet your new family.
Hidden/Spoiler:
-
THEWULFMAN
- Space Ranger
- Posts: 5557
- Joined: Tue Aug 17, 2010 3:30 pm
- Projects :: Evolved 2
- Location: Columbus, Ohio
- Contact:
Re: Chaning era icon/name
Marth8880 wrote:Yes, most excellent my dear child.......post your addme's LUA and your shell's REQ, so we may [pauses]...address your situation as we need. In due time, my dear child, in due time will everything come together as the Night Mother has forseen... After you have done this, proceed to Cheydinhal. There you will find...toast...lots and lots of toast...inside games...inside an excellent, inconspicuous, well-achieved forum where you will finally meet your new family.Hidden/Spoiler:
Oblivion references.
Check the 1.3 patch documentation for how to change an era's name and icon. You just need the icon munged in a shell, then load it in your addme. We'll be happy to explain further.
- Tears2Roses
- Chief Warrant Officer

- Posts: 336
- Joined: Thu Jul 07, 2011 9:20 am
- Projects :: Oh some random stuff who knows
- xbox live or psn: PC beats xbox.
Re: Changing era icon/name?
You know how in HvB 2, you play on stock utapau as zombies. You need to click HvB 2 - utapau in order to play it. Stock utapau is fine, without the sides. Now, in the dark times 2, you can play as the dark times sides and there isnt a second death star map. I want my sides to be like DT2 and not like HvB2. Hopefully this helps.
-
AQT
- Gametoast Staff

- Posts: 4910
- Joined: Sat Nov 03, 2007 4:55 pm
- Location: SoCal, USA
Re: Changing era icon/name?
Please do what WULF suggested, then. Don't just read it; actively read it.
And also:
And also:
That's for your DT2/HvB2 comparison.[b][color=#FF8000]The FAQ / Everything You Need Thread Version 2.0[/color][/b] wrote:...
Miscellaneous
... ...
- [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: Changing era icon/name?
Put in the change table just as if you weren't using AddNewGameModes():
AddNewGameModes( sp_missionselect_listbox_contents, "myg1%s_%s", {era_a = 1, mode_con_a = 1, change = {...},} )
or easier to read:You and everyone else also needs to create MergeTables() replace AddNewGameModes() using the code here (click here). If you don't, you will wipe out any other changes done to that map from other maps. Also, if other maps didn't make that change, they will wipe out your changes (so you might have had it working, but some other map screwed you). I'm trying to fix this with v1.4, which is one reason I need to rewrite the map selection screens.
AddNewGameModes( sp_missionselect_listbox_contents, "myg1%s_%s", {era_a = 1, mode_con_a = 1, change = {...},} )
or easier to read:
Code: Select all
AddNewGameModes(
sp_missionselect_listbox_contents,
"myg1%s_%s",
{
era_a = 1,
mode_con_a = 1,
change = {
--TODO make your era and icon changes here as the v1.3 docs say
},
}
)- Tears2Roses
- Chief Warrant Officer

- Posts: 336
- Joined: Thu Jul 07, 2011 9:20 am
- Projects :: Oh some random stuff who knows
- xbox live or psn: PC beats xbox.
Re: Changing era icon/name?
Thanks everyone, I will try everything suggested, hopefully something works 
EDIT: Thanks, I got it working. Know, how to add it to more than one map properly....
EDIT2: Solved. I coppied over the change table and replaced mygeeto with death star, works like a charm.
EDIT: Thanks, I got it working. Know, how to add it to more than one map properly....
EDIT2: Solved. I coppied over the change table and replaced mygeeto with death star, works like a charm.
