Created: 3 months ago on 03/11/2025, 07:44:59 PM
FileType: Razor Script (Community Edition)
Size: 504
Hotkey: P
Description: A simple script that looks for a weapon (kryss), puts it in your hand if it needs to, and then applies a poison to it.
if findtype 'kryss' backpack as ting
@setvar myWeapon ting
endif
if lhandempty
lift myWeapon
drop 'self' RightHand
endif
if findtype 'Green Potion' backpack as psn
useskill 'Poisoning'
wft 500
target psn
wft 500
target myWeapon
wait 3000
if insysmsg 'You fail'
loop
elseif insysmsg 'You apply'
break
endif
endif