Artifact splash screen

In EC when you get an artifact you get a blue slaph screen with a little sound.

Do you think it is possible to add this feature to items from Treasure of ... and such events?

@Bleak

Thanks

Comments

  • please don't! The constant message would be so annoying with the current drop rate of those
  • ForeverFunForeverFun Posts: 795
    edited March 2021
    Sherry the mouse found this in her copy of TextParsing.lua for the EC.  See default.zip.

    It still doesn't catch any artifact drop from cora, as there appears to be no notification for that event.  @Bleak

    function TextParsing.CenterScreenText()
    local senderText = wstring.trim(SystemData.Text)
    local find = wstring.find

    if ( SystemData.TextID == 1112362 ) then -- virtuebane burn to pile of ashes. 
    CenterScreenText.SendCenterScreenTexture("panic")
    end

    -- catch other artifact drop variations.
    if ( SystemData.TextID == 1156322 ) then -- 
    CenterScreenText.SendCenterScreenTexture("artifact")
    end

    if ( SystemData.TextID == 1152339 ) then -- 
    CenterScreenText.SendCenterScreenTexture("artifact")
    end

    if ( SystemData.TextID == 1152340 ) then -- 
    CenterScreenText.SendCenterScreenTexture("artifact")
    end

    if ( SystemData.TextID == 1153440 ) then -- 
    CenterScreenText.SendCenterScreenTexture("artifact")
    end

    ...
Sign In or Register to comment.