| 格式:显示的cmd图片的命名格式为:cmd调用公共事件编号_名字
 cmd调用公共事件编号_名字_02 # 此为鼠标经过的图片
 
 即,带有cmd的为可以点击的图片,点击后执行相应的公共事件.....
 不带cmd的图片没任何影响。。。
 
 脚本:
 
    | class Game_Picture
 def name=(str)
 @name = str
 end
 
 end
 
 class Sprite_Picture
 
 alias update_old update
 def update
 update_old
 return if @picture_name == "" or @picture_name[/cmd/].nil?
 mx,my = Mouse.get_mouse_pos
 lx = self.x - self.ox
 rx = lx + self.bitmap.width
 ty = self.y - self.oy
 by = ty + self.bitmap.height
 if mx < lx or mx > rx or my < ty or my > by or
 self.bitmap.get_pixel(mx-lx,my-ty).alpha == 0
 @picture.name = @picture.name.split(/_/)[0]+"_"[email protected](/_/)[1]
 return
 end
 if @picture.name.split(/_/)[2].nil?
 @picture.name = @picture.name + "_02"
 end
 if Input.trigger?(13)
 @picture.name.split(/_/)[0].sub(/cmd([0-9]+)/,"")
 $game_temp.common_event_id = $1.to_i
 end
 end
 
 end
 |  |