Vai al contenuto

Rilevato Ad-Blocker. Per favore disabilita il tuo adblocker quando navighi su makerando.com - Non c'è nessun annuncio invasivo.

Cerca nel Forum

Showing results for tags 'Debug velocità'.



More search options

  • Search By Tags

    Tag separati da virgole.
  • Search By Author

Tipo di contenuto


Forums

  • Comunità
    • Cancello di Ingresso
    • Bacheca
    • Colisseum
  • DevTeam
    • CyberTeam
  • Giochi e Progetti RPG Maker
    • Resa Grafica
    • Concept e Bozze
    • Progetti
    • Giochi RPG Maker Completi e Demo
    • Il Making Oltreoceano
  • Assistenza e Supporto RPG Maker
    • Biblioteca
    • BrainStorming
    • Chiedi Aiuto alla Comunity
    • RPG Maker Scripting
    • PlugIn e AddOn RPG Maker
    • Musica e Suoni
    • Risorse Grafiche RPG Maker
    • Mak - Resources
  • Beyond Making - Oltre RPG Maker
    • Altri Tool

Find results in...

Find results that contain...


Data di creazione

  • Start

    End


Ultimo Aggiornamento

  • Start

    End


Filter by number of...

Iscritto

  • Start

    End


Gruppo


AIM


Indirizzo Web


ICQ


Yahoo


Skype


Location


Interests

Trovato 1 risultato

  1. Nome Script: Debug velocità Versione: N/D Autore/i: Gammastar Informazioni: Velocizza la battaglia con il tasto F6. Istruzioni: Inserite lo script sotto Material Script: #By: Gammastar. #Debug speeder. Boosts the frame rate when you press the F6 key. #Press F6 again to return to normal. #This is much more effective if you dash while using it. #No need to give me credit, since this is only usable in debug mode. #Set variable to false. $using = false class Scene_Map #Alias the update method in Scene_Map. alias gammastar_speedupdate update #By aliasing, I add to the method instead of actually defining it. def update #Refer to alias (can't work without this) gammastar_speedupdate #Check to see if in debug and if F6 is pressed. if $TEST and Input.trigger?(Input::F6) #Check to see if you are using the speeder. if $using == false Graphics.frame_rate = 120 Sound.play_decision $using = true else Graphics.frame_rate = 60 Sound.play_cancel $using = false end end end end #Essentially the same as above. class Scene_Battle alias gammastar_speedupdate_b update def update gammastar_speedupdate_b if $TEST and Input.trigger?(Input::F6) if $using == false Graphics.frame_rate = 120 Sound.play_decision $using = true else Graphics.frame_rate = 60 Sound.play_cancel $using = false end end end end
×