GavinLiu 发表于 2013-5-19 14:50 ![]()
改脚本想保留HP但HP莫名消失了,不知道是怎么回事
只是稍微改动的话,在Window_Base第529行开始,把不需要显示的内容前面添加#号注释掉就可以了
draw_actor_name(actor, x, y) draw_actor_level(actor, x, y + line_height * 1)#显示等级 draw_actor_icons(actor, x, y + line_height * 2)#显示头像 draw_actor_class(actor, x + 120, y)#显示职业 draw_actor_hp(actor, x + 120, y + line_height * 1)#显示HP draw_actor_mp(actor, x + 120, y + line_height * 2)#显示MP
draw_actor_name(actor, x, y)
draw_actor_level(actor, x, y + line_height * 1)#显示等级
draw_actor_icons(actor, x, y + line_height * 2)#显示头像
draw_actor_class(actor, x + 120, y)#显示职业
draw_actor_hp(actor, x + 120, y + line_height * 1)#显示HP
draw_actor_mp(actor, x + 120, y + line_height * 2)#显示MP
|