0 of 0

File information

Last updated

Original upload

Created by

Yonatan Rivera

Uploaded by

riayi

Virus scan

Safe to use

Tags for this mod

3 comments

  1. dannyboy0101
    dannyboy0101
    • member
    • 2 kudos
    Could you make this work with PRC content? I think that's really where it would shine
    1. dannyboy0101
      dannyboy0101
      • member
      • 2 kudos
      Ok, I think I figured out why it sometimes doesn't work(seriously, I have no idea why it's erratic).

      Your script only handles the X2_ITEM_EVENT_ACTIVATE case. However, X2_ITEM_EVENT_ONHITCAST is also used. I fixed it on mine by moving the ONHITCAST case up to the ACTIVATE, so they use the same call:


         case X2_ITEM_EVENT_ACTIVATE:
         case X2_ITEM_EVENT_ONHITCAST:
      ExecuteScript("ac_"+GetTag(GetItemActivated()),
      OBJECT_SELF); break;
    2. riayi
      riayi
      • supporter
      • 5 kudos
      Would you believe I only read this over a year after your post? Thanks for sending that anyway, I'll try it