Hola amigos hoy lestraigo esta modificacion que le ise al maus para el Window Help item
Este escrip corrije el bug de las cordenadas para la Window help item y Window Skill, mire
Script :
Busque este Script [SIS] No Miss Click Remplasarlo para que funcione
Obrigado por olhear mi tutorial
Creditos :
Jonny - Modificador
Este escrip corrije el bug de las cordenadas para la Window help item y Window Skill, mire
Script :
- Spoiler:
- Código:
#==============================================================================
# ** Evitar Miss Click do Mouse na Window_Item
#------------------------------------------------------------------------------
# By Marlos Gama
# By Jonny/Kakashy/
#==============================================================================
class Scene_Map
alias miss_click_map_main_draw main_draw
alias miss_click_update update
def main_draw
@tempo = 0
@tiempo = 0
@gm_msg = 0
@memo = 0
@memo_skill = 0
@ballon_chat = 0
@fechando_ativar = 0
miss_click_map_main_draw
end
def update
if Graphics.frame_count / Graphics.frame_rate != @total_sec
@tempo += 1
@tiempo += 1
end
if $chat_text != ""
if Graphics.frame_count / Graphics.frame_rate != @total_sec
@ballon_chat += 1
end
end
if $fechando_ativar == true
if Graphics.frame_count / Graphics.frame_rate != @total_sec
@fechando_ativar += 1
end
end
if $memorizando == true
if Graphics.frame_count / Graphics.frame_rate != @total_sec
@memo += 1
end
end
if $memorizando_skill == true
if Graphics.frame_count / Graphics.frame_rate != @total_sec
@memo_skill += 1
end
end
if $adm_w_text != ""
if Graphics.frame_count / Graphics.frame_rate != @total_sec
@gm_msg += 1
end
end
if $chat_text != ""
if @ballon_chat == 2 * 10
$chat_text = ""
@ballon_chat = 0
end
end
if $fechando_ativar == true
if @fechando_ativar == 1 * 10
$fechando_ativar = false
@fechando_ativar = 0
end
end
#=================================================================
#
# Linea modificada [img]http://r18.imgfast.net/users/1813/22/04/00/smiles/3912376022.gif[/img]!
#
# Para la Window Help Item
#
#=================================================================
if $memorizando == true
if @memo == 4 * 1
if $Memorizar_x == $Mouse.x and $Memorizar_y == $Mouse.y
if $pegando_item != true and $pegando_item_loja != true and $pegando_item_trade != true
$help_w.refresh
$help_w.x = $equip_w.x - 180
$help_w.y = $equip_w.y - 0
$help_w.visible = true
$help_w.active = true
$help_w_2.visible = false
$help_w_2.active = false
end
$memorizando = false
end
@memo = 0
end
if $Memorizar_x != $Mouse.x and $Memorizar_y != $Mouse.y
$help_w.visible = false
$help_w.active = false
end
end
#=================================================================
#
# Linea modificada [img]http://r18.imgfast.net/users/1813/22/04/00/smiles/3912376022.gif[/img]!
#
# Para la Window Help Skill
#
#=================================================================
if $memorizando_skill == true
if @memo_skill == 4 * 1
if $Memorizar_x == $Mouse.x and $Memorizar_y == $Mouse.y
if $pegando_skill != true
$help_w_2.refresh
$help_w_2.x = $skill.x - 180
$help_w_2.y = $skill.y - 0
$help_w_2.visible = true
$help_w_2.active = true
$help_w.visible = false
$help_w.active = false
end
$memorizando_skill = false
end
@memo_skill = 0
end
if $Memorizar_x != $Mouse.x and $Memorizar_y != $Mouse.y
$help_w_2.visible = false
$help_w_2.active = false
end
end
#=====================================================================
if $adm_w_text != ""
if @gm_msg == 30 * 10
$adm_w.visible = false
$adm_w_text = ""
@gm_msg = 0
end
end
if @tempo == 3 * 10
$mouse_active = false
$mouse_right_w = false
@tempo = 0
@tiempo = 0
end
miss_click_update
end
end
Busque este Script [SIS] No Miss Click Remplasarlo para que funcione
Obrigado por olhear mi tutorial
Creditos :
Jonny - Modificador