Project1
标题:
求人制作类似夜想曲改的血条
[打印本页]
作者:
某E要做Arpg
时间:
2009-8-4 20:15
提示:
作者被禁止或删除 内容自动屏蔽
作者:
kaveil
时间:
2009-8-4 20:15
本帖最后由 kaveil 于 2009-8-5 20:18 编辑
236088435
真是~不会PM我嘛~明知道人家滴QQ不外泄滴
嫁我的时候注明6R哦~我不加无聊的人的
未命名.jpg
(6.28 KB, 下载次数: 30)
下载附件
保存到相册
2009-8-5 20:18 上传
介个样子滴条要不要捏?
作者:
wangxinblood
时间:
2009-8-4 20:17
套用工程的血条脚本不就完了
作者:
某E要做Arpg
时间:
2009-8-4 20:19
提示:
作者被禁止或删除 内容自动屏蔽
作者:
kaveil
时间:
2009-8-4 20:32
如果不需要写脚本的话
把规格给我
还有要几个条
作者:
wangxinblood
时间:
2009-8-4 21:00
要是只要这个游戏血条的图片的画游戏文件里吗不是有么
作者:
某E要做Arpg
时间:
2009-8-4 22:03
提示:
作者被禁止或删除 内容自动屏蔽
作者:
v2sam
时间:
2009-8-5 08:57
喂喂,解决了就结贴吧。
作者:
某E要做Arpg
时间:
2009-8-5 15:55
提示:
作者被禁止或删除 内容自动屏蔽
作者:
fxwd
时间:
2010-7-27 13:56
是脚本吧:
#==============================================================================
#==============================================================================
# ■ Window_Help
#------------------------------------------------------------------------------
# 可以显示敌人的HP\MP百分比
#==============================================================================
class Window_Help < Window_Base
def set_enemy(actor)
self.contents.clear
draw_actor_name(actor, 4, 0)
draw_actor_state(actor, 140, 0)
carol3_draw_hp_bar(actor, 284, 0)
carol3_draw_sp_bar(actor, 460, 0)
@text = nil
self.visible = true
end
def carol3_draw_hp_bar(actor, x, y, width = 128) #宽度可调
self.contents.font.color = system_color
self.contents.fill_rect(x-1, y+17, width+2,6, Color.new(0, 0, 0, 255))
w = width * actor.hp / actor.maxhp
self.contents.fill_rect(x, y+18, w,1, Color.new(255, 96, 96, 255))
self.contents.fill_rect(x, y+19, w,1, Color.new(255, 0, 0, 255))
self.contents.fill_rect(x, y+20, w,1, Color.new(128, 0, 0, 255))
self.contents.fill_rect(x, y+21, w,1, Color.new(0, 0, 0, 255))
self.contents.draw_text(x,y,128,32,$data_system.words.hp,1)
self.contents.font.color = normal_color
end
def carol3_draw_sp_bar(actor, x, y, width = 128)
self.contents.font.color = system_color
self.contents.fill_rect(x-1, y+17, width+2,6, Color.new(0, 0, 0, 255))
w = width * actor.sp / actor.maxsp
self.contents.fill_rect(x, y+18, w,1, Color.new(128, 255, 255, 255))
self.contents.fill_rect(x, y+19, w,1, Color.new(0, 255, 255, 255))
self.contents.fill_rect(x, y+20, w,1, Color.new(0, 192, 192, 255))
self.contents.fill_rect(x, y+21, w,1, Color.new(0, 128, 128, 255))
self.contents.draw_text(x,y,128,32,$data_system.words.sp,1)
self.contents.font.color = normal_color
end
end
欢迎光临 Project1 (https://rpg.blue/)
Powered by Discuz! X3.1