When using the $game_temp.qupdate = true command to grey out objectives once they've been completed it doesn't grey it out.
if $game_temp.qupdate[switch] == true
self.contents.font.color = disabled_color
self.contents.draw_text(0, 0, 435, 210 + (easy * 35), $qdata.objs[script])
else
self.contents.font.color = normal_color
self.contents.draw_text(0, 0, 435, 210 + (easy * 35), $qdata.objs[script])
end
I've narrowed it down to this code but i can't figure out what's wrong, if i delete the second = sign on the first line, it turns all objectives to grey.
Any advice? Any more information needed?
if $game_temp.qupdate[switch] == true
self.contents.font.color = disabled_color
self.contents.draw_text(0, 0, 435, 210 + (easy * 35), $qdata.objs[script])
else
self.contents.font.color = normal_color
self.contents.draw_text(0, 0, 435, 210 + (easy * 35), $qdata.objs[script])
end
I've narrowed it down to this code but i can't figure out what's wrong, if i delete the second = sign on the first line, it turns all objectives to grey.
Any advice? Any more information needed?