doomanchu 11 Posted July 26, 2009 Is there a way to delay a hint message in the "On Act" of a trigger? Trying to get a hint to show up 60 seconds after the trigger has fired. Share this post Link to post Share on other sites
kylania 568 Posted July 26, 2009 Set it to Timeout then set the Min, Mid and Max to 60. Share this post Link to post Share on other sites
doomanchu 11 Posted July 26, 2009 Won't that effect everything else in the trigger? Just want to delay the hint itself. Share this post Link to post Share on other sites
NeoArmageddon 958 Posted July 26, 2009 Write in the first trigger: delayhint=true; and place a second trigger with your hint massage write to the condition instead of "this" -> "delayhint". Change the timeout in the second trigger to your desired delay. Share this post Link to post Share on other sites
Deadfast 43 Posted July 26, 2009 null = [] spawn { sleep 10; hint "Something here" }; Sleep value is in seconds, change it to whatever suits you :) Share this post Link to post Share on other sites
NeoArmageddon 958 Posted July 26, 2009 Ok, thats a better way @ deadfast.... my way is a relic from OFP times^^ Share this post Link to post Share on other sites
doomanchu 11 Posted July 26, 2009 Thanks Deadfast, that worked perfect! Share this post Link to post Share on other sites