I always feel so lost:
what data the
My goal is to get warned about the destination star being scoopable while i still can abort the jump.
In the
How could i get the stellarclass(es) of the nextsystem in the
what data the
Ship FSD
event contains?My goal is to get warned about the destination star being scoopable while i still can abort the jump.
In the
FSD Engaged
event, i have this part of code which gives me "special advises":
Code:
{if reportSystem.name = homesystem.name:
Coming Home!.
|else:
{set scoopables to ['O', 'B', 'A', 'F', 'G', 'K', 'M']}
{if slice(event.stellarclass, 0, 1) = 'D':
White Dwarf.
|elif event.stellarclass = 'N':
Neutron Star.
|elif event.stellarclass = 'H':
Black Hole.
|elif find(scoopables, event.stellarclass) = -1:
Non scoopable star.
}
}
How could i get the stellarclass(es) of the nextsystem in the
Ship FSD
script?