Command v1.06 - The new features Part I

Take command of air and naval assets from post-WW2 to the near future in tactical and operational scale, complete with historical and hypothetical scenarios and an integrated scenario editor.

Moderator: MOD_Command

smudge56
Posts: 667
Joined: Sat Jan 17, 2009 8:31 am
Location: UK

RE: Command v1.06 - The new features Part I

Post by smudge56 »

ORIGINAL: mikmyk

Thats one path of several we are pursuing. Obviously we want to make a fair return on all this. In general we are very satisfied with sales and feel good about with where we are going in the future. Our publishers, partners and the player community have been great .

Mike
I say pimp out baloogan I'm sure we can get a good return for mpre updates [;)][:D]
AKA - Smudge
RoryAndersonCDT
Posts: 1828
Joined: Mon Jun 15, 2009 11:45 pm

RE: Command v1.06 - The new features Part I

Post by RoryAndersonCDT »

Haha Smudge you ol' pirate! [:D]

ORIGINAL: Gunner98

Excellent, just saw this!

Couple quick questions:

1:  With the 'Quick turn around' feature, what can the AC do in the '6 hrs downtime', are they in Maintenance or Reserve mode or can they be readying for another load-out? I presume they are completely unavailable, and once the 6 hrs is over they can start another loadout or another quick turn around cycle, if they are allowed to simply arm for another mission it wouldn't be much of a penalty.

2:   For the unit proficiency values, will that apply to ships and other units or just AC?

3:  In the screenshots, the photo of the unit appears in the side-bar - another new feature? [:D]

Thanks a lot guys this is fantastic.

Bart

I can answer a few of these if I might be so bold [:D]

1. With Quick turn around the AC during downtime are just the same as they are in Command now; they can have their loadouts changed and that is about it. One neat thing about the quick turnaround is that when an aircraft is being quickly turned around you can change its loadout and it retains its quick turn around status. Eg first sortie is with Mavericks, second sortie could be with LGBs.

2. The unit proficiency values do apply to ships, land units, submarines, and of course aircraft.

3. Yes indeed! If you have a database image for the currently selected unit that image is displayed on the right hand side bar. This can be turned off in the game options if so desired. I'd highly recommend downloading the database images from http://www.warfaresims.com/?page_id=1876. I've also mirrored the current database image pack here: https://www.dropbox.com/s/p6okfjp9q0utl ... s.zip?dl=0.
Command Dev Team
Technical Lead
User avatar
cf_dallas
Posts: 303
Joined: Thu Apr 13, 2006 3:35 pm
Location: Grapevine, TX

RE: Command v1.06 - The new features Part I

Post by cf_dallas »

Lua question: I think we're getting ahead of a press release, but it looks suspiciously like a scripting capability is being built in for event editing. That sounds incredibly powerful. I suck at programming, but I'm willing to learn for a good cause. :-)

A couple questions:
1) Will the existing event editor be retained for relatively simple events/triggers?
2) Will scenarios built with the legacy event editor have to be rebuilt?
Formerly cwemyss
User avatar
comsubpac
Posts: 115
Joined: Tue Sep 02, 2014 4:53 pm

RE: Command v1.06 - The new features Part I

Post by comsubpac »

From the Video i watched it looked like:

1) the event editor remains the same but it can load scripts now

2) since the old events are still possible they should run fine

Dimitris
Posts: 15517
Joined: Sun Jul 31, 2005 10:29 am
Contact:

RE: Command v1.06 - The new features Part I

Post by Dimitris »

1) Yes. You don't need to touch the Lua stuff if you don't want to.

2) No, they can continue functioning as they are.
Stacker1010
Posts: 32
Joined: Sun Dec 07, 2014 9:29 pm

RE: Command v1.06 - The new features Part I

Post by Stacker1010 »

Hi, can LUA script be executed and run in the background or is it only tied (currently) to events/triggers etc..

I'm really looking forward to this feature of Command, I'm already thinking about the potential this can give us! Can't wait to give it a go!
Tomcat84
Posts: 1952
Joined: Wed Jul 10, 2013 5:13 pm

RE: Command v1.06 - The new features Part I

Post by Tomcat84 »

ORIGINAL: cf_dallas
A couple questions:
1) Will the existing event editor be retained for relatively simple events/triggers?
2) Will scenarios built with the legacy event editor have to be rebuilt?

Questions have already been answered in text, but if you want a sneak preview of how it actually works you can already check out this video tutorial I made in closed beta. It should show you exactly how Lua is integrated in the Event editor:

http://www.youtube.com/watch?v=B4aUjddDHok


ORIGINAL: Stacker1010

Hi, can LUA script be executed and run in the background or is it only tied (currently) to events/triggers etc..

It is mostly used as part of the event editor, but, if running a scenario in the ScenEdit mode (e.g. the editor), you can also open the Script Console and just execute any script you type in at any time.

My Scenarios and Tutorials for Command

(Scenarios focus on air-warfare :) )
RoryAndersonCDT
Posts: 1828
Joined: Mon Jun 15, 2009 11:45 pm

RE: Command v1.06 - The new features Part I

Post by RoryAndersonCDT »

ORIGINAL: Stacker1010

Hi, can LUA script be executed and run in the background or is it only tied (currently) to events/triggers etc..

I'm really looking forward to this feature of Command, I'm already thinking about the potential this can give us! Can't wait to give it a go!

As Tomcat84 (check out his video tutorials #1 and #2!) mentioned there are two ways to invoke Lua scripts. One is via the Script Console, and the other is via the Event Editor.

The Script Console is primarily for testing scripts and for running scripts that help you make a scenario (eg a script that draws a circle of reference points for you).

In the Event Editor running an Lua script is like any other event action (like increasing or decreasing the player's score, or ending the scenario).
Command Dev Team
Technical Lead
Stacker1010
Posts: 32
Joined: Sun Dec 07, 2014 9:29 pm

RE: Command v1.06 - The new features Part I

Post by Stacker1010 »

Thanks guys for the links (Tomcat84/Baloogan)... watching as I write!
Tomcat84
Posts: 1952
Joined: Wed Jul 10, 2013 5:13 pm

RE: Command v1.06 - The new features Part I

Post by Tomcat84 »

No problem! Glad you like em. Just keep in mind that:
- The whole Lua thing has been/is/will be an evolving process
- I am not a programmer and some of the things I put in the video can be done in different (more efficient) ways too :)

One example is the dead unit thing, e.g. you scripted:

Code: Select all

ScenEdit_SetEMCON('Unit', 'Viper #1', 'Radar=Passive')
 ScenEdit_SetEMCON('Unit', 'Viper #2', 'Radar=Passive')
 ScenEdit_SetEMCON('Unit', 'Viper #3', 'Radar=Passive')
 ScenEdit_SetEMCON('Unit', 'Viper #4', 'Radar=Passive')

but Viper #3 already died, now it gives an error and Viper #4's EMCON is not changed. See here for a possible way to work around that:
http://forum.baloogancampaign.com/viewt ... ?f=10&t=87

Stuff like that happens, it's new and it's exciting but that means not always perfect yet [:)]
My Scenarios and Tutorials for Command

(Scenarios focus on air-warfare :) )
batek688
Posts: 92
Joined: Thu Oct 16, 2014 11:49 am

RE: Command v1.06 - The new features Part I

Post by batek688 »

ORIGINAL: mikmyk

Yes. Within the next couple weeks.

Mike

Ok...that cracked me up. Old IT joke about ETAs always == "2 weeks"

[:D]
thewood1
Posts: 10278
Joined: Sun Nov 27, 2005 6:24 pm
Location: Boston

RE: Command v1.06 - The new features Part I

Post by thewood1 »

Is the wait on you guys finishing coding or just on Matrix building the installer?
User avatar
comsubpac
Posts: 115
Joined: Tue Sep 02, 2014 4:53 pm

RE: Command v1.06 - The new features Part I

Post by comsubpac »

Why should matrix build the installer?
Wasn't it something about matrix unwilling to handle too many releases at the same time?
thewood1
Posts: 10278
Joined: Sun Nov 27, 2005 6:24 pm
Location: Boston

RE: Command v1.06 - The new features Part I

Post by thewood1 »

My understanding from other devs is that Matrix actually builds the installer so that the DRM and exe are consistent across products. I have had two products from Matrix where major updates were help up due to resource limitation on the Matrix side of things.

That is why we have always gotten such frequent updates from Command. They do their own public betas and don't bring Matrix into it until a full version is on deck.
User avatar
ClaudeJ
Posts: 776
Joined: Wed Mar 08, 2006 5:38 pm
Location: Bastogne

RE: Command v1.06 - The new features Part I

Post by ClaudeJ »

All that is sexy and it's great to see the team being reinforced by so dedicated person.

What will the consequences, if any, on Baloogan's online DB? Will it be more sophisticated (eg. an Android app with all and every details) or will it remain a personal project of Baloogan?
AMD Ryzen 3 1200 @ 3.1, NVIDIA GeForce GTX 1650 4 Go, Windows 10 64bits, 16 GB RAM, Regional settings = French, Belgium
(Previously known as JanMasters0n)
mikmykWS
Posts: 7185
Joined: Tue Mar 22, 2005 4:34 pm

RE: Command v1.06 - The new features Part I

Post by mikmykWS »

ORIGINAL: thewood1

Is the wait on you guys finishing coding or just on Matrix building the installer?

Installer is being built out now but we all own that process.

Mike
mikmykWS
Posts: 7185
Joined: Tue Mar 22, 2005 4:34 pm

RE: Command v1.06 - The new features Part I

Post by mikmykWS »

ORIGINAL: comsubpac

Why should matrix build the installer?
Wasn't it something about matrix unwilling to handle too many releases at the same time?

No. Wasn't that they were unwilling. They just have a lot of releases scheduled which is hard work.

The benefit of the matrix installer and the process is the copy protection etc. but also the ability to update with a couple of clicks on steam or via the matrix launcher.

Mike
User avatar
pvthudson01
Posts: 457
Joined: Tue Oct 07, 2003 8:33 pm
Location: Chicago
Contact:

RE: Command v1.06 - The new features Part I

Post by pvthudson01 »

How do we know what version we have right now? Mine says build 570?
Matrix Member since 2003!
RoryAndersonCDT
Posts: 1828
Joined: Mon Jun 15, 2009 11:45 pm

RE: Command v1.06 - The new features Part I

Post by RoryAndersonCDT »

ORIGINAL: Jan Masterson
What will the consequences, if any, on Baloogan's online DB? Will it be more sophisticated (eg. an Android app with all and every details) or will it remain a personal project of Baloogan?

Well, I aim to keep it up to date with the publicly released DB from Command, but aside from that there are no other plans regarding it. I don't think an android app for it is in the cards; but I could make the site more mobile friendly.

Command Dev Team
Technical Lead
RoryAndersonCDT
Posts: 1828
Joined: Mon Jun 15, 2009 11:45 pm

RE: Command v1.06 - The new features Part I

Post by RoryAndersonCDT »

ORIGINAL: pvthudson01

How do we know what version we have right now? Mine says build 570?

Sounds like you have Build 570 if I had to guess. [:D]
I maintain a list of all public patches here: http://baloogancampaign.com/command-doc ... n/patches/
Command Dev Team
Technical Lead
Post Reply

Return to “Command: Modern Operations series”