Back to "detecthidden" tags

Cooldown Triggers for Detective Lens by Jaseowns

1# Cooldown Triggers for Detective Lens by Jaseowns
2# UO Outlands
3# Requirements:
4# Setup the following cooldowns:
5#   - use a default cooldown of 10 seconds
6#   - checkmark hide when inactive
7#   - make sure to select Overhead Message as type
8#########
9#   name: redhand   message: They appear to be a Red Hand
10#   name: greyhand  message: They appear to be a Grey Hand
11#   name: notathief message: You do not notice anything unique about them
12#########    
13if cooldown "redhand"
14    say "Stop RedHand thief!" 34
15    cooldown "redhand" 0
16elseif cooldown "greyhand"
17    say "You are a greyhand thief, proceed." 76
18    cooldown "greyhand" 0
19elseif cooldown "notathief"
20    say "You are not a thief, thanks!" 88
21    cooldown "notathief" 0
22endif
23wait 200
24loop