Back to "legenis_assassin" tags

Legenis's Hide to Stealth by Legenis

Description: Part of Legenis's Assassin Toolkit

1###########################################################################
2# Legenis Hide to Stealth script, part of Legenis's Assassin Toolkit
3# Created by Legenis
4
5# Recomend creating an overhead message to inform when Stealth starts!
6# The line, overhead Go Go Go, can be a milisecond off at times.
7###########################################################################
8
9###########################################################################
10# Omit this section as needed, this works with Legenis assassin backstab scripts
11# to prevent you from range attacking while hidden.
12
13if not lhandempty
14    hotkey 'arm/disarm left hand'
15endif
16if not rhandempty
17    hotkey 'arm/disarm right hand'
18endif
19
20
21
22/// Hiding to Stealth section
23skill 'Hiding'
24wait 300
25if hidden
26    wait 7000
27        if hidden
28            overhead '3'
29            wait 1000
30        else
31            overhead 'Not Hidden!!' 38
32            stop
33        endif
34        if hidden
35            overhead '2'
36            wait 1000
37        else
38            overhead 'Not Hidden!!' 38
39            stop
40        endif
41        if hidden
42            overhead '1'
43            wait 1000
44        else
45            overhead 'Not Hidden!!' 38
46            stop
47        endif
48        if hidden
49            skill 'Stealth'
50        overhead 'Go Go Go' 68
51        else
52            overhead 'Not Hidden!!' 38
53            stop
54        endif
55else
56    overhead 'Not Hidden!!' 38
57endif