Correr Automaticamente
Permite que o herói corra sem precisar ficar com a tecla SHIFT pressionada, fazendo com que ele corra sem precisar está segurando-a. Baseado em jogos como Diablo, Skyrim e etc.
Ruby:
#===============================================================================
# * [VXACE] Correr Automaticamente
#-------------------------------------------------------------------------------
# * Por Takkun
# * Versão: 1.0 BR
# * Lançada em: 06/06/2014
#===============================================================================
($imported ||= {})[:correr_auto] = true
#===============================================================================
# ■ Game_Player
#===============================================================================
class Game_Player < Game_Character
alias takkun_neo123_initialize initialize
def initialize
$correr = false
takkun_neo123_initialize
end
def dash?
return false if @move_route_forcing
return false if $game_map.disable_dash?
return false if vehicle
return Input.press?(:A) if $correr == false
return if Input.press?(:A) and $correr == true
return $correr
end
end
#===============================================================================
# ■ Scene_Map
#===============================================================================
class Scene_Map
alias takkun_neo123_update update
def update
if Input.trigger?(Input::A)
if $correr == false
$correr = true
else
$correr = false
end
end
takkun_neo123_update
end
end