Problems with adding options to Himawari Title Screen

● ARCHIVED · READ-ONLY
Started by Gothic Lolita 5 posts View original ↗
  1. Not sure, if that goes to the scipt help or script request, sorry if I posted it wrong. :'( (\s/)

    First of all, I use this script:
    http://www.atelier-rgss.com/RGSS/Menu/ACE_Menu21.html

    And the new game+ script from here:
    http://www.rpgmakervxace.net/topic/3161-new-game-option/

    And I allready edited these parts here:

    Spoiler
    From

    91    @com_index_max = 2

    to

    91    @com_index_max = 3
    Then added these lines:
    Spoiler
    932   when 1; command_new_game_plus
    943     if !@continue_enabled and @com_index == 2

    944    @com_index = 3 if value == 1              #2

     

    970    #--------------------------------------------------------------------------

    971    # ● Command New Game Plus

    972    #--------------------------------------------------------------------------            

    973    def command_new_game_plus

    974        DataManager.setup_new_game_plus

    975        close_command_window

    976        fadeout_all

    977        $game_map.autoplay

    978        SceneManager.goto(Scene_Map)

    979    end
    Everything shows up and new game+ is blocked, until I activate switch 1.
    But if I activated the switch, even in a normal new game the switch is active.
    Or is there a easier way to make it compatible with this Title screen?
    I could simply delete the new method lines, but then it wouldn't use the graphics anymore.
    And instead of that, the old menu in the middle of the screen will show up in Title.
    In basic what I want, is to add an option, if $game.switch[1] is on, the "new game+" will be available or appear.
    Tried allready a lot, but allways failed, will continue on it, but not sure if it will turn out well. :/
    Would be super happy, if anyone could help me, thank you in advance. :) /)
  2. this not the way you have to edit hiwari title screen  they

    for adding a condition is 

    new_game+ enable if Game_Switch[1] == true

    (if I remember this look like that)
  3. Thank you for the quick response, but it doesn't seem to work. :/
    The "New Game+" option doesn't appear after all, not even the switch is pressed.
     

    My problem is, that there is actually no position for custom commands in it, so I guess there are some lines I need to edit for it. :/  (\s/)
  4. If you have a script you need help with, it goes into Script Support. The Learning Ruby forum is more for when you're starting scripting yourself.
  5. I'm really sorry for posting it wrong, but I'm pretty new here and wasn't sure where it goes. :(
    Because in basic, I need to learn edit this script, what I also tried and failed. :/
    But now I know and will never do this mistake again. :'( /)

    I still need help with the problem, may I stay with a quick fix for the first and deactivate the problem causing parts. ;) (\s/)