Yanfly Victory Aftermath Arrow QuickFix

● ARCHIVED · READ-ONLY
Started by Alarkus 3 posts View original ↗
  1. Hey all.
    I noticed a few threads about this before, with people coming up with fixes that seem really unnecessary, when I got it myself through messing around in the scripts. I didn't want to necro any of those.

    Many people have had issues with the Yanfly Victory Aftermath not displaying arrows correctly when using a different or custom font.
    I found that simply replacing the arrow in the script still resulted in a broken box appearing, but changing the values slightly fixed it.
    Just replace...

    Code:
    draw_text(dx, dy, 24, line_height, "¨", 1)

    With this

    Code:
    draw_text(dx, dy, 22, line_height, "->", 1)
  2. This is not a script, simply a fix to a problem with one. And since I cannot find a thread for that particular script to merge this into, I'm going to keep it as it's own thread, but move it to Script Support, as I think that is where people will look first when they have this issue.
  3. Alternatively, why not use icon?
    Code:
    class Window_VictoryLevelUp
      IconIndex = 140
     
      def draw_arrows
       dx = contents.width / 2 - 12
       dy = 0
       for i in 0..8
         draw_icon(IconIndex, dx, dy)
         dy += line_height
       end
      end
     
    end