diff --git a/README.md b/README.md index f0bfe08e..dc9ce6ac 100644 --- a/README.md +++ b/README.md @@ -829,6 +829,7 @@ * Decreased active time from 90 seconds to 60 seconds * Decreased cooldown time from 60 seconds to 30 seconds * Added hint strings for purchased, can only be one, and cooling down +* Added HUD message for how to activate * Buildable table model sits on top of the stand * Rotated buildable table model 90 degrees * Switches back to correct weapon after deploying diff --git a/english/localizedstrings/reimagined.str b/english/localizedstrings/reimagined.str index 8d902f34..cde2703e 100644 --- a/english/localizedstrings/reimagined.str +++ b/english/localizedstrings/reimagined.str @@ -1254,6 +1254,9 @@ LANG_ENGLISH "Hold ^3[{+activate}]^7 to craft Maxis Drone" REFERENCE ZM_TOMB_TQ LANG_ENGLISH "Hold ^3[{+activate}]^7 to take Maxis Drone [Cost: &&1]" +REFERENCE ZM_TOMB_DIHO +LANG_ENGLISH "Press ^3[{+actionslot 2}]^7 to use Maxis Drone" + REFERENCE ZM_TOMB_BOUGHT_MAXISDRONE LANG_ENGLISH "Took Maxis Drone" diff --git a/scripts/zm/replaced/zm_tomb_craftables.gsc b/scripts/zm/replaced/zm_tomb_craftables.gsc index dde42a8f..a3a90db2 100644 --- a/scripts/zm/replaced/zm_tomb_craftables.gsc +++ b/scripts/zm/replaced/zm_tomb_craftables.gsc @@ -341,6 +341,8 @@ setup_quadrotor_purchase(player) self.stub.hint_string = &"ZM_TOMB_BOUGHT_MAXISDRONE"; self sethintstring(self.stub.hint_string); + player thread show_equipment_hint(self.stub.weaponname); + return true; }