Bapeth's Dungeon Rope + Tele by barryroser
Description: This script is meant to be used with Bapeth's Modern Dungeon Picker
https://outlands.uorazorscripts.com/script/d6b286a7-bebf-470b-a1ba-7d3a80114a79
1# Bapeth's Dungeon Rope + Tele
2#
3# This is a simple Rope + Tele script that calls Bapeths Modern Dungeon Picker script
4# Make sure line #26 matches the name you saved the lockpicker script as
5#
6# To use the Rope + Tele, bind this script to a hotkey and play,
7# You must target the rope before the teleport casting time completes in order to preform the move
8# If you do not target the rope in time the script will transform into a simple teleport spell
9
10if mana >= 9
11 cast "Teleport"
12else
13 overhead "Not enough mana..." 38
14endif
15
16if findtype "rope" backpack 2799 as rope
17 while queued
18 //donothing
19 endwhile
20 dclick rope
21else
22 overhead "I am out of rope..." 34
23endif
24
25if skill "Lockpicking" >= 80
26 script "Bapeths Modern Dungeon Picker"
27endif