O TEMA DO FÓRUM ESTÁ EM MANUTENÇÃO. FEEDBACKS AQUI: ACESSAR

[Fênix] Edit & Play

Iniciado por Raizen, 13/12/2012 às 19:25


Edit & Play
.:Fênix:.






Resumo



Remove a janela de "Teste de Jogo"  que não deixa você editar seu jogo enquanto joga. Então você não recisa abrir seu jogo toda vez que fizer alguma modificação, somente apertar uma tecla.




RPG Maker VX Ace

Spoiler
#===============================================================================
# ** Edit & Play ACE
#-------------------------------------------------------------------------------
#   @author  .:Fênix:.
#   @version 2012.01.14
#   @brief   Removes the "Game Test" window what blocks you to edit your game
#            while you are playing. So, you do not need to open your game every
#            change you make, you just need to press a key.
#===============================================================================

module Edit_and_Play
  # Enable script? (true / false)
  Enabled = true
  # Button what updates the game
  Button  = Input::ALT
end

if (Edit_and_Play::Enabled)
  
  if ($TEST)
    File.rename("Data/BT_Actors.rvdata2", "Data/BT_Actors.old") if ($BTEST)
    Thread.new {system("Game.exe")}
    sleep(0)
    exit
  else
    $TEST = true
    if (File.exist?("Data/BT_Actors.old"))
      File.rename("Data/BT_Actors.old", "Data/BT_Actors.rvdata2")
      $BTEST = true
    end
  end
  
  module Input
    
    class << self
      
      alias :editAndPlay :update
      
      def update
        if (trigger?(Edit_and_Play::Button))
          DataManager.load_database
          $game_map.setup($game_map.map_id) unless (($game_map == nil) || ($game_map.map_id == 0))
          SceneManager.goto(SceneManager.scene.class)
        end
        editAndPlay
      end
      
    end
  
  end
  
end
[close]


Creative Commons Atribuição-Uso Não-Comercial-Compartilhamento pela mesma Licença 2.5 Brasil License.

Nossa, e quanto mais em mapeamento. O Melhor Maker ainda para se fazer edição e o RM XP
O VX Você faz se der errado apaga tudo rs :hm:
JS > ALLs

Também tem o de VX, até eu uso...
Mas sobre esse, é muito bom, se tiver um errinho, é só ir e mudar na hora... XD