In the last patch you changed the editor Home waypoint for TD to 28 , but the game is still using waypoint 26 as the Home
If you put a Home waypoint from the editor into a new TD Map you will get a black screen until you add a waypoint 26 to the map , at which time it will work ,
I mean why bother changing things for 2 extra waypoints, if you change the game to use the new home of way point 28 now , all of the maps for TD will have to be redone.
As it is now i have to use 2 waypoints to get things to work , the new Home(28) and waypoint 26
Personally i would just put the editor back to what it was.
@dcom67 Ah, interesting... I don't know much about RA scripting.
I've been working on my own fixed version, after noticing some severe caching issues with Rampa's version (every time you switch to the map tiles placement it adds all tiles an additional time), but I have to figure out all this messy git stuff to get a version published. And I would really like to get bibs placeable as Smudge types, but all of the smudge code is made so they're treated as one-cell items...
@Nyerguds Yeah i noticed it after i tried to get a spy to work. I ended up having to edit the mpr to add the house .
I only use the editor i fixed , no fancy map tiles layouts for me .
Yeah I totally agree Github can be messy . I think it can be made to publish from vs studio quite easily though by picking one of the actions. from a github project.
I haven't looked at the bibs code at all . Are you wanting to be able to place bibs separately?
There's more missing things; craters actually have a setting in the mission file for their size, so that should have a tool to change it. I made such a tool:
And in the Overlay section, a bunch of them are missing too, like the indestructible versions of the farmer's fields (only the Haystacks are listed), and the flag pedestal that's under the flag in CTF games. There's actually a couple more pavement types, too, like ROAD and CONC, but sadly the Remaster is lacking remastered graphics for those entirely.
Anyway, I managed to make clones of the bibs so I can have versions of them that are placeable on the map that are not treated like the bibs under buildings (because those are obviously not saved in the map), but when I place them down they just show as their upper left cell. It's just a visual thing, though; they still show up correctly in-game. But that's what I'm currently trying to fix.
i agree that the craters need the size adjustment , what is the upper limit on the size?
The stock editor has both the destructible (under structures) and indestructible ( under overlay ) fields available in both TD and RA maps
I don't think the editor loads any of the VFX files (flagFly.zip ) which is why the CTF flag isn't there
As for the Bibs I`m guessing you are placing those as a smudge type . , why not place them as map tiles . I would think all you need to do is to add them to the templates types .
Each crater has 5 stages, as shown in the image; frame 0 to 4.
I checked in the original editor (not Rampa's version), and, at least for TD, it only showed the haystacks, not the fields.
[edit]Okay, on a fresh install, it's the other way around. Bizarre. In Winter, the haystacks are missing.[/edit]
On the flag thing, I'm not talking about flagfly; I'm talking about the rings underneath it. Those are perfectly placeable as overlay in the game, just like tiberium, crates and walls, which are actually all the same type, no matter how the editor shows them. You can see it in action here, below the Communications Center: https://steamcommunity.com/sharedfiles/filedetails/?id=2561631021
If you open a map containing it, you can actually pick the Overlay when in Overlay mode, and even though you'll get an error at first because it's not actually in the list, if you click it again, you actually have it selected, and can place more of them without issues.
As for the bibs, umm, In the link I gave there, it's not the first item in the listing (that's the ancient beta bibs), it's the last one. Scroll down a little 🤨
They are smudge types, in the game. In the actual map file, they go in the [Smudge] ini section. You can't just choose where to put stuff; they don't exist in the game as map tiles. They overlay the map terrain, they don't replace them.
@Nyerguds I checked in the original editor (not Rampa's version), and, at least for TD, it only showed the haystacks, not the fields.
Humm why do they show up in mine and not yours ,In using the code from the CNC remastered site , and except for the two small fixes I've made it should be stock.
Re Flag oh i see now .. I thought it was a flag thing I've seen some place.. you can tell I've never played a multi player map LOL
Anyway i think you can show that flagf thing by simply changing a line in Model\OverlayType.cs
Line 61 to allow the OverlayType.Flag to also be displayed
It looks to me this line cuts out anything that is not a crate
But then again i really cant see with out my glasses. which im going to go see if they are ready right now !!
Doh your right about them being classed as a smudge. You could make them appear as a map tile in the editor but they wouldn't show up in the game. I guess you don't have much of a choice when placing them you have to use some code similar to the map tiles
Seems the overlay thing is a bug in the dropdown, which might be a Win7-specific problem on my old PC. Opening the dropdown doesn't show them, but they are selectable by going through it with the arrow keys.
As for the flags, yes, that's the line I edited to include other things, like the flag pedestal. I expanded it with a specific "decoration" type now to use as class for the civilian buildings and the "conc" and "road" types. Maybe I should just get rid of the flag-type and class it as decoration too; it's kind of useless to give it a separate class. My code looks like this:
The actual flag is not an overlay object in the game though, so there's no point in making the editor show it. Here's the full overlay types list in the code. The "FlagSpot" one is the circles thing; ini code "FPLS". (probably short for "Flag PLacement Spot")
As for the smudge, well, placing them as single tile works, and they'll show their full size in the game anyway, but I think if I want to show their full area in the editor I'm going to have to look at the other object types in the games that occupy multiple cells; the Terrain and Building types.
There are some other bugs I'd like to address, like the fact buildings in the editor completely mess up if they overlap a unit... even if that building is set to not be built from the start, which would make it completely legal to place units on that spot. Not to mention, several official missions in the game have such situations, like the Tech Center housing Dr Chan in Nod mission 10A, which has soldiers hiding 'inside' it.