Still need help

● ARCHIVED · READ-ONLY
Started by BCj 4 posts View original ↗
  1. Decided to make a new topic since my old one isn't getting any response and I'd really like to fix this :p

    I have two problems:
    a) Yami's Message System is conflicting with the "Default Status Luna" script that is used in the master demo. If I do not use this script my characters will have no descriptions at all. If I do use it, Yami's codes for the colors\icons won't show up as colors\icons but instead will show up as text. See the picture:

    post-40410-0-62082100-1412879984.png

    B) my second problem: how can I add the two knifes and the bandana in the box on the right side and the casual clothes and the war god's belt in the boxes on the right side? I just cannot get it to work.

    Please help :D it's the only thing I'm still struggling with.
  2. For number 2, Luna displays the equipment slots in a single block. There's currently no default way to split them up like that. Other than by creating an alternative setup with Lunatic Mode. I know because I ran into that same problem myself. In the end, I just designed around it rather than trying to wrestle with it. 
  3. Well, I just finally managed to find a way around it so I got it to work :) but I did use the "Extra Edits (Status)" snippet for it that was in the Etrian demo.
  4. Hey there, here's an alternative version thanks to Neonblack.

    Just put this in Lunatic Status at the very bottom (before the 3 "ends") and set the positions with "item_locations_array"

    Code:
          item_locations_array = [[2, 0], [2, 24], [2, 48], [2, 72], [2, 96]]      actor.equips.each_with_index do |e,i|        next unless e        result.push(["$icon[#{e.icon_index}]", item_locations_array[i], 255])        xp, yp = item_locations_array[i][0] + 24, item_locations_array[i][1]        result.push([e.name, [xp,yp], [contents.width, 0], [255, 255, 255],          [contents.font.name, contents.font.size, contents.font.bold,          contents.font.italic], [0, 0, 0]])      end            result