Page 1 of 1
Who have some Campaign or Mission maps for cnc?
Posted: Thu Oct 27, 2011 1:25 pm
by ps3
I want to learn how to make own Campaign map.
I try to modify map.yaml,but there are too many bugs.
I have many questions:
1.How to write victoryconditions likes someone has been killed or one building has been captured.
2.How to let some units wait for rescue.(enemy would not attack them before rescued.)
3.How to let enemy units patrol between waypoints.
Please help me.
Posted: Sat Oct 29, 2011 1:37 pm
by riderr3
Same question

there is not many materials about creating sp missions in openra wiki
BTW I know sp missions editor for classic RA - it called C&C RAED, but its not compatible with openra stuff
Posted: Sat Oct 29, 2011 1:51 pm
by Harisson
I have 1 singleplayer map
Code: Select all
http://www.sleipnirstuff.com/forum/viewtopic.php?f=83&t=15352
If you want to create a map, you need to know C# and OpenRA source code
1.You can find example on GitHub
Code: Select all
if (badcount != lastBadCount){}
2.I have no Idea
3.From GitHub
Code: Select all
void Patrol()
{
var self = Actor;
var mobile = self.Trait<Mobile>();
self.QueueActivity(mobile.ScriptedMove(Destination));
self.QueueActivity(mobile.ScriptedMove(Destination));
self.QueueActivity(new CallFunc(() => Patrol()));
}
Posted: Thu Nov 03, 2011 8:31 am
by ps3
Thanks very much.
Where should I download your map,I can't open IRC webpage.
Hmm...I don't know C#,but I know some VB language. I just could read C# script,not write.
OK, I am going to learn C#, and more English.