[XP] 2 opcje w Blizz ABS - Wersja do druku
Ultima Forum
[XP] 2 opcje w Blizz ABS - Wersja do druku

+- Ultima Forum (https://forum.ultimateam.pl)
+-- Dział: RPG Maker (/Forum-RPG-Maker)
+--- Dział: Wsparcie (/Forum-Wsparcie)
+--- Wątek: [XP] 2 opcje w Blizz ABS (/Thread-XP-2-opcje-w-Blizz-ABS)



2 opcje w Blizz ABS - ziomsamsung - 18-08-14 09:15

Jak wywalić te dwie opcje z menu w Blizz ABS?
[Obrazek: cznf9oakwwej.png]
Scripts


RE: 2 opcje w Blizz ABS - Ayene - 19-08-14 09:33

Wejdź w skrypt 'Blizz2' i znajdź (ok. 436)
Kod:
CommandsPreMenu = ['Menu', 'Hotkeys', 'AI Behavior', 'AI Triggers', 'Cancel']
zamień na:
Kod:
CommandsPreMenu = ['Menu', 'Hotkeys', 'Cancel']

Następnie wejdź w skrypt 'Blizz3', znajdź i usuń (ok. 7294):
Kod:
@window.disable_item(3)

Następnie znajdź fragment (7400~7424):
Kod:
when 2
          # if not actors in the party
          if $game_party.actors.size == 0
            # play buzzer sound effect
            $game_system.se_play($data_system.buzzer_se)
            # exit method
            return
          end
          # play sound
          $game_system.se_play($data_system.decision_se)
          # create AI setup scene with the current screen tint
          $scene = Scene_AI_Behavior.new(@view.tone)
        when 3
          # if not actors in the party
          if $game_party.actors.size == 0
            # play buzzer sound effect
            $game_system.se_play($data_system.buzzer_se)
            # exit method
            return
          end
          # play sound
          $game_system.se_play($data_system.decision_se)
          # create AI setup scene with the current screen tint
          $scene = Scene_AI_Triggers.new(@view.tone)
        when 4
zamień go na:
Kod:
when 2



RE: 2 opcje w Blizz ABS - ziomsamsung - 19-08-14 09:38

Dzięki Ayene Ale dzisiaj dostanę już gotowy ten skrypt.