I'm getting the Ship Refuelled speech event triggered twice after scooping. Anyone else?
Edit: I've not made any changes, but it has now stopped doing this!
This is the script I use for the 'ship refuelled' event. As you can see, it will ignore all events in which the 'amount' is equal to 5 tons.
Code:
{Pause(2000)}
{if event.source = "Scoop":
{if event.amount < 5:
{ShipName()} {if ship.fueltanktotalcapacity = event.total: fully} refuelled.
{set fuel_level to round((event.total/ship.fueltanktotalcapacity) * 100,0)}
{if state.verbose && (fuel_level) < 100:
{Pause(500)}
Fuel level now at {Humanise(fuel_level)} percent.
}
}
|else:
{ShipName()} {if ship.fueltanktotalcapacity = event.total: fully} refuelled.
}