arttoy   06-14-2015, 08:00 PM
#1
[Image: 150614083301.PNG]
คือในจุดอื่นผมแก้หมดแร้ว แต่ในจุดนี้หาสคริปท์ไม่เจอจริงๆครับ
ขอบคุณครับ
This post was last modified: 06-14-2015, 08:27 PM by arttoy.
hengmana   06-14-2015, 10:54 PM
#2
ตรงช่อง Window_Base อยู่บรรทัดล่างสุด

Code:
def draw_item_name(item, x, y)
   if item == nil
     return
   end
   bitmap = RPG::Cache.icon(item.icon_name)
   self.contents.blt(x, y + 4, bitmap, Rect.new(0, 0, 24, 24))
   self.contents.font.color = normal_color
   self.contents.draw_text(x + 28, y, 212, 32, item.name)
 end

แก้เป็น

Code:
def draw_item_name(item, x, y)
   if item == nil
     return
   end
   bitmap = RPG::Cache.icon(item.icon_name)
   self.contents.blt(x, y + 4, bitmap, Rect.new(0, 0, 24, 24)) if bitmap.height == 24
   self.contents.blt(x, y , bitmap, Rect.new(0, 0, 32, 32)) if bitmap.height == 32
   self.contents.font.color = normal_color
   self.contents.draw_text(x + 28 + 4, y, 212, 32, item.name)
 end
This post was last modified: 05-28-2018, 10:42 PM by hengmana.
arttoy   06-14-2015, 11:07 PM
#3
ขอบคุณมากครับ กดรีเฟรตทุก10นาทีเรย ฮาๆ
  
Users browsing this thread: 1 Guest(s)
Powered By MyBB, © 2002-2024 MyBB Group.
Made with by Curves UI.