That's actually where I get a bit lost, cause whats the deal with that upgrade requirement? will it take up a space in the upgrade menu of the unit?
OK, I will try to explain the best I can step by step.
1. create 2 new abilities,
something_on and
something_off
2. create 1 new upgrade, call it
something_on_off and make sure that
owner_type is se to
self
3. in your new ability
something_on in
action_list to
start_self_actions add
upgrade_add(add your new upgrade)
4. in the same ability
something_on in
requirements add
required_not(set reason to "usage_and_display) and add
required_player_upgrade(add your new upgrade)
5. now in your ability
something_off in
action_list to
start_self_actions add
upgrade_remove(add your new upgrade)
6. again in
something_off in
requirements add and add
required_player_upgrade(add your new upgrade) and again the reason set to "usage_and_display"
7. now your menu is set up so all you need to do now is that the abilitys in the second menu will have in
requirements >
required_player_upgrade(your upgrade, the reason set to "usage_and_display") and the abilitys that will be in the first menu will be the same but will
required_not(reason set to "usage_and_display") and
required_player_upgrade(your upgrade)
I hope all of this makes sense to you

, if not ask again.