(Sorry, had this posted in the VX forum by mistake. I'm using Ace)
I'm having an issue with the most recent quest I coded in. The "Rewards" line is appearing overlapping the last line of the objectives. None of the other few I have do this. Here is a side-by-side comparison:
http://imgur.com/zSbMvIihttp://imgur.com/cr1cOp1I have the screen set to 640 x 480 through Yanfly's Core Engine, and am using Taurus' Fullscreen++. I don't believe anything else I'm using should affect the screen layout.
Here is the script for the quest that shows up wrong:
when 1004 #Apartment Side Quest
q[:name] = "Laundry 'Adventure'"
q[:level] = 1
q[:icon_index] = 154
q[:description] = "Get the laundry from the dryer!"
q[:objectives][0] = "Get the laundry from the laundry room."
q[:objectives][1] = "Bring them to apartment 2B."
q[:prime_objectives] = [0,1]
q[:client] = "Man in apartment 2B"
q[:location] = "Your apartment building"
q[:rewards] = [
[:exp, 150],
[:gold, 60],
[:item, 8, 1] #tentative
]
q[:layout] = false
Edit: I think I know what's going on. When I changed the screen resolution, I neglected to change the column widths in the quest journal script. I think it's drawing the rewards line where it thinks it should be based on the resolution, rather than where the text actually would place it based on the column widths. I'll try this when I get home and post.
New Edit: I changed Basic_Data_Width by adding the difference between the default resolution width (544) and the one I was using (640) assuming this would make the right column bigger and hopefully fix this issue. It didn't; the words still wrap at the same places and the Rewards line still overlaps the text in that one quest. Someone please help, this is really bumming me out!