Back to "b" tags

Bapeth's Invis + Detect Degeneracy by barryroser

Description: Don't use this unless you are a bad person

1# Bapeths Invis + Detect Degeneracy
2#
3# Create a cooldown in your UO options called "Detect Hidden" and create 3 Sys Message Triggers 10 seconds each
4# "You search the home and find no one hiding within -- Cooldown : 10"
5# "You search the area but find nothing hidden -------- Cooldown : 10"
6# "You reveal what was hidden ------------------------- Cooldown : 10" 
7# Do not include quotations
8#
9# "In Warmode" :
10# Play the script to enable auto invis
11# You have 1.5 seconds to target the detect before the script drops invis on self
12# If you fail to target detect in this time, the script will target your center before invis
13#
14# "In Peacemode" :
15# The script will act as a normal detect hidden skill use
16
17if not cooldown "Detect Hidden" and warmode and skill "Magery" >= 60 and mana >= 20 
18    hotkey "Cancel Current Target"
19    overhead "Arcane tricks..." 2843
20    skill 'detectinghidden'
21    cooldown "Detect Hidden" 10000
22    cast "Invisibility"
23    wft 500
24    overhead "Target Detect Quickly!" 88
25    pause 1550
26    target self
27    wft 2500
28    target self
29    hotkey "Cancel Current Target"
30else
31    skill 'detectinghidden'
32    cooldown "Detect Hidden" 10000
33endif