Player.BuffExist doesn't recognize Lightning Strike bufficon (RazorEnhaced ClassicUO)

Issue #1 new
Burak Senyuva created an issue

Player.BuffExist doesn't recognize Lightning Strike. It recognizes Momentum Strike bufficon successfully.

To reproduce activate Lightning Strike then run the code below.

if Player.BuffsExist('Lightning Strike'):
    Player.HeadMessage(0, 'LS')

Comments (3)

  1. Kolka

    you should use:

    if not Player.SpellIsEnabled('Lightning Strike')
        Player.HeadMessage(0, 'LS')
    

    its not buff its spell which can be enabled

  2. Log in to comment