Release EDDI - Windows app for immersion and more

Status
Thread Closed: Not open for further replies.
There's nothing obvious in the log, although verbose logging didn't appear to be enabled. My best guess is that there is a database corruption due to running EDDI twice at the same time. Please could you shut down EDDI, remove the %APPDATA%\EDDI directory, and then restart EDDI and see if that fixes it?

I did all that. I even uninstalled it completely several times now.
 
This is awesome! Really nice work Commander! I tried it the last night and it is a great tool to enhance the immersion of ED :) thank you for that! [up]

If you need some help with the sound modulation write me a PM. I have no Idea how do you modulate the Speech in the program but maybe I can help you with some of my song and audio editing skills ;)

Is it possible to get another Language than "Anna" on Windows 7?

Fly Safe Commander!

Is the star scan already in eddy? Mine don't do that yet lol... Eddi is incredible!
 
Ok, simple issue not sure how to fix it...

I was mass-deleting a bunch of "UNABLE TO EXECUTE..." and I accidentally killed a EDDI command and no save as this was a clean instal... should I just find the EDDI .VAP and just import whatever isn't a conflict?

EDIT: Ok, I answered my own stupid question.
 
Last edited:
jgm,

Painful question... can EDDI's name be set to another name in voice recog? I ask because EDDI as a name conflicts with Eden, and I slur the "E" badly on both of those....
 
jgm,

Painful question... can EDDI's name be set to another name in voice recog? I ask because EDDI as a name conflicts with Eden, and I slur the "E" badly on both of those....

I don't believe that any of the VoiceAttack scripts in the default profile use EDDI's name.
 
configure EDDI is the only one

Good point. @foxpur if that's the one that you struggle with you can just create a new command with the same features; it's unlikely to change in future so not something you have to worry about updating with each new release of EDDI.
 
Is there any way I can get the Message received event to read NPC messages? It's not reading npc messages even though I have the event set to the following

Code:
Message received from {event.from}. {event.message}.

And NPC messages do show up in the journal.
 
Is there any way I can get the Message received event to read NPC messages? It's not reading npc messages even though I have the event set to the following

Code:
Message received from {event.from}. {event.message}.

And NPC messages do show up in the journal.

this get asked a lot and I would like to have it too but...

I had this running in beta but in busy CZs and RES it flooded the journal, so I dialled it back. Also, most messages from stations are accompanied by enough in terms of alarms that any attempt at speaking over them just didn't work. Instead, there are specific events that pick up the interesting messages and trigger off them, such as when a pirate scans you for cargo or someone opens fire.

Also I find it very nice that player MSG get read out, it special and would lose something when mixed with NPC
 
Was wondering , if there's a way for EDDI , to know when Fuel scooping has Started / Ends , so VA can turn ON /OFF ( toggle) Orbital Lines ?

Also along the same 'lines', are Orbital lines able to be turned ON when selecting a station to dock at, via navigation panel, is there any event for this ?
 
Was wondering , if there's a way for EDDI , to know when Fuel scooping has Started / Ends , so VA can turn ON /OFF ( toggle) Orbital Lines ?

Also along the same 'lines', are Orbital lines able to be turned ON when selecting a station to dock at, via navigation panel, is there any event for this ?

As far as I know there is no journal event for orbit lines on or off. But EDDI does have an event for refueling be it scooping or by buying fuel. You can set something in voice attack in the eddi refueling event to check if the source is scooping, and if it is then send the keystroke to turn off orbit lines. Like wise you can set orbit lines on when the undocked event happens.

Here is my voice attack EDDI ship refuelled script. I like to track how much fuel I have between fillups so I write refueled amount to the EDDI Ship refuelled total variable. This way I can use my fuel status VA script to tell me how much fuel I have left.

EDDI ship refuelled:
Code:
Begin Text Compare : [EDDI ship refuelled source] Equals 'Market'
    Set decimal [EDDI ship refuelled total] value to the value of [Ship total fuel tank capacity] (round to 0 decimal places)
Else If Text Compare : [EDDI ship refuelled source] Equals 'Scoop'
End Condition - Exit when condition met
Set decimal [EDDI Ship refuelled total] value to the value of [EDDI jumped fuelremaining] (round to 2 decimal places)

Fuel Status:
Code:
Begin Decimal Compare : [EDDI ship refuelled total] Is Greater Than Or Equals [Ship total fuel tank capacity]
    Set Text [script] to '{TXT:ship name}'s fuel tank is at capacity with {DEC:Ship fuel tank capacity} tons.'
Else
    Set Text [script] to '{TXT:ship name} has {DEC:EDDI ship refuelled total} tons of fuel, with a total capacity of {DEC:Ship fuel tank capacity} tons.'
End Condition
Execute external plugin, 'EDDI 2.1.0' and wait for return

Voice attack EDDI undocked event:
Code:
Begin Small Integer Compare : [dockingmessage] Equals 1
End Condition - Exit when condition met
Set Windows clipboard to '{TXT:Ship callsign}; {TXT:Ship model}, the {TXT:Ship name} leaving {TXT:EDDI undocked station}.'
Pause 0.1 seconds
Press Enter key and hold for 0.1 seconds and release
Pause 0.1 seconds
Press / ? key and hold for 0.1 seconds and release
Press L key and hold for 0.1 seconds and release
Press Space key and hold for 0.1 seconds and release
Press down Left Ctrl key
Pause 0.1 seconds
Press V key and hold for 0.1 seconds and release
Release Left Ctrl key
Press Enter key and hold for 0.1 seconds and release
Pause 0.1 seconds
Pause 0.1 seconds
 
JGM, I see that bounty and bond redeemed is written to the journal (or at least I think I do). Is it possible to create a simple event when these two things happen? I set an increasing variable when ever I get a bounty or a bond to remind me to turn them in when I dock. Right now I have VA read a reminder script, then ask if I want to clear the bounty/bond numbers. If I say yes or bounty redeemed they are cleared.

I would love to have an event when bounties/bonds are turned in to automatically clear the reminder on the event.
 
Was wondering , if there's a way for EDDI , to know when Fuel scooping has Started / Ends , so VA can turn ON /OFF ( toggle) Orbital Lines ?

Also along the same 'lines', are Orbital lines able to be turned ON when selecting a station to dock at, via navigation panel, is there any event for this ?

There is an event when fuel scooping finishes but not when it starts.

There is no event when items are selected; the closest there is to that is an event when docking is requested.

All events are listed at https://github.com/cmdrmcdonald/EliteDangerousDataProvider/blob/master/VoiceAttack.md#events
 
JGM, I see that bounty and bond redeemed is written to the journal (or at least I think I do). Is it possible to create a simple event when these two things happen? I set an increasing variable when ever I get a bounty or a bond to remind me to turn them in when I dock. Right now I have VA read a reminder script, then ask if I want to clear the bounty/bond numbers. If I say yes or bounty redeemed they are cleared.

I would love to have an event when bounties/bonds are turned in to automatically clear the reminder on the event.

The journal has a RedeemVoucher event, but at the moment it doesn't provide any information about the faction for which the redemption occurs so it's no use as a bounty tracker. FD have this on their list to look at, so perhaps come 2.3 it will be useful.
 
Wanna bring to your attention that after ysing the srv, and re docking onto the ship, VA keeps referring to my ship as "test buggy" ... any way to fix this? I have to close and open va to fix as it is! Thank you!
 
Hi JGM,

is there a possibility to get an event when entering the drop zone of a station in supercruise. I would like to trigger an automatic leaving supercruise script via VA when entering the dropzone.

regards and thanks for your efforts.

jimi
 
Hi JGM,

is there a possibility to get an event when entering the drop zone of a station in supercruise. I would like to trigger an automatic leaving supercruise script via VA when entering the dropzone.

regards and thanks for your efforts.

jimi

I'm not sure what you mean by 'drop zone'. There is an event when you leave supercruise, and there is an event when you enter a station's no-fire zone. Are you after something different?
 
Status
Thread Closed: Not open for further replies.
Back
Top Bottom