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 'More Choices'.



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: More Choices Versione: 1.0 Autore/i: Fomar0153 Informazioni: Questo script permette di superare i quattro limiti di scelta imposti di default dal tool, impostando una variabile per eguagliare la scelta che fa il player... Screenshots: Istruzioni: Inserite lo script sotto Material. Di seguito lascio anche un'immagine che lo stesso autore ha rilasciato per fare un esempio del suo funzionamento: Altre istruzioni all'interno dello script. Script: =begin More Choices by Fomar0153 Version 1.0 ---------------------- Notes ---------------------- No requirements Allows you to have more than four choices ---------------------- Instructions ---------------------- Edit the method more_choice and then use the call in a choice option. ---------------------- Known bugs ---------------------- None =end class Game_Interpreter #-------------------------------------------------------------------------- # ● Edit Here # when handle # $game_message.choices.push("a choice") #-------------------------------------------------------------------------- def more_choice(p) case p when "Pizza Topping" $game_message.choices.push("Ham & Pineapple") $game_message.choices.push("Meat Feast") $game_message.choices.push("Chocolate") $game_message.choices.push("BBQ") $game_message.choices.push("Diamonds") $game_message.choices.push("Spicy Chicken") $game_message.choices.push("Garlic") else $game_message.choices.push(p) end end #-------------------------------------------------------------------------- # ● Long Choices - Don't edit this bit #-------------------------------------------------------------------------- def setup_choices(params) for s in params[0] more_choice(s) end $game_message.choice_cancel_type = params[1] $game_message.choice_proc = Proc.new {|n| @branch[@indent] = n } end end class Window_ChoiceList < Window_Command #-------------------------------------------------------------------------- # ● Feel free to change the 1 to another variable that you'd prefer #-------------------------------------------------------------------------- alias mc_call_ok_handler call_ok_handler def call_ok_handler $game_variables[1] = index mc_call_ok_handler end end
×