Thanks so much, I learned a lot from that!
Unfortunately, I think I didn't frame the question properly to get the answer I needed.
Let's back up a second, I'll give you more details about what I'm trying to do.
This is a MechWarrior Online profile using the IVONA voice, Brian.
When The profile loads, I set the following variables.
CameraMode - Integer (not small) - 0
VisionMode - Integer (not small) - 0
WeaponDoorStatus - Boolean - False
UAV - Boolean - True
When I say, "External Camera" I want the following logic to fire.
If CameraMode is not equal to 1 then
press F3
say "External Camera Online"
set CameraMode to 1
exit
If CameraMode is equal to 1 then say "External Camera is already deployed"
When I say, "Cockpit View" I want the following logic to fire.
If CameraMode is not equal to 0 then
press F3
say "Returning to Cockpit View"
set CameraMode to 0
exit
If CameraMode is equal to 1 then say "Cockpit View is the current view"
When I say, "Night Vision" I want the following logic to fire.
If VisionMode is not equal to 1 then
press N
say "Night Vision Engaged"
set VisionMode to 1
exit
If VisionMode is equal to 1 then say "Night Vision is already active"
When I say, "Heat Vision" I want the following logic to fire.
If VisionMode is not equal to 2 then
press H
say "Thermal Vision Engaged"
set VisionMode to 2
exit
If VisionMode is equal to 2 then say "Thermal Vision is already active"
When I say, "Normal Vision" I want the following logic to fire.
If VisionMode is equal to 1 then
press N
say "Vision Mode Normal"
set VisionMode to 0
exit
If VisionMode is equal to 2 then
press H
say "Vision Mode Normal"
set VisionMode to 0
exit
If VisionMode is equal to 0 then say "Normal Vision is already active"
When I say, "Open Weapon Doors" I want the following logic to fire.
If WeaponDoorStatus is False then
press ?
say "Weapons are Hot"
set WeaponDoorStatus to True
exit
If WeaponDoorStatus is equal to True then say "Weapon doors are already open"
When I say, "Close Weapon Doors" I want the following logic to fire.
If WeaponDoorStatus is True then
press ?
say "Weapon Doors Closed"
set WeaponDoorStatus to False
exit
If WeaponDoorStatus is equal to False then say "Weapon doors are already closed"
When I say, "Launch Drone" I want the following logic to fire.
If UAV is True then
press F8
say "Drone deployed"
set UAV to False
exit
If UAV is equal to False then say "Drone Bay Empty"
I hope that helps you understand what I'm looking for.
I tried doing the UAV one myself but when I hit the execute command to test it, nothing happens.
Here are some screenshots from my Google Drive
https://drive.google.com/open?id=0B0LdH-fKpAKeVUk1QjNaSXpyUWMhttps://drive.google.com/open?id=0B0LdH-fKpAKeNDdWWFgydWxKcDgBy the way,
What are the new features in the current Beta?
I'd like to help test it but I'm not sure what is different than the stable version.