Selection cursor now moves to second pokemon after operation

Scyrous 2024-09-02 17:16:31 +02:00
parent e7da795663
commit 16429963dd
1 changed files with 9 additions and 4 deletions

@ -2,7 +2,11 @@
Adds a MOVE option to the ITEM menu which allows you to move held items directly between Pokémon in your party, instead of having to use the bag as a middle man. Originally posted by Zeturic in [this](https://www.pokecommunity.com/threads/simple-modifications-directory.416647/page-3#post-10120157) pokecommunity post. This guide also includes the mail fix by Deokishisu in [this post](https://www.pokecommunity.com/threads/simple-modifications-directory.416647/post-10517557) and the pokeemerald code is much more recent. Adds a MOVE option to the ITEM menu which allows you to move held items directly between Pokémon in your party, instead of having to use the bag as a middle man. Originally posted by Zeturic in [this](https://www.pokecommunity.com/threads/simple-modifications-directory.416647/page-3#post-10120157) pokecommunity post. This guide also includes the mail fix by Deokishisu in [this post](https://www.pokecommunity.com/threads/simple-modifications-directory.416647/post-10517557) and the pokeemerald code is much more recent.
Lastly, when two items are swapped, the dialogue box will now display all four buffered strings (two Pokémon, two items) in just two lines of dialogue, rather than four lines. This has been tested with max length Pokémon/item names in mind. Lastly, some changes have been made compared to the code in the pokecommunity posts:
- When two items are swapped, the dialogue box will now display all four buffered strings (two Pokémon, two items) in just two lines of dialogue, rather than four lines. This has been tested with max length Pokémon/item names in mind.
- After moving/swapping items, the selection cursor will now stay on the second Pokémon instead of returning to the first. This matches the behavior seen when switching Pokémon or using Softboiled in the party menu.
*** ***
## 1. In `include/strings.h`, end of the file: ## 1. In `include/strings.h`, end of the file:
@ -125,9 +129,10 @@ void CursorCb_MoveItemCallback(u8 taskId)
// display the string // display the string
DisplayPartyMenuMessage(gStringVar4, TRUE); DisplayPartyMenuMessage(gStringVar4, TRUE);
// update colors of selected boxes // update colors of selected boxes, move selection cursor to second mon
AnimatePartySlot(gPartyMenu.slotId2, 0); AnimatePartySlot(gPartyMenu.slotId, 0);
AnimatePartySlot(gPartyMenu.slotId, 1); gPartyMenu.slotId = gPartyMenu.slotId2;
AnimatePartySlot(gPartyMenu.slotId2, 1);
// return to the main party menu // return to the main party menu
ScheduleBgCopyTilemapToVram(2); ScheduleBgCopyTilemapToVram(2);