Welcome to PokéCommunity! Register now and join one of the best fan communities on the 'net to talk Pokémon and more! We are not affiliated with The Pokémon Company or Nintendo.
Increase Pokemart Max Purchase Amount from 99 to 255 (255 seems to be the max)
In the src\shop.c
Around (around line 986)
Change
ConvertIntToDecimalStringN(gStringVar1, quantityInBag, STR_CONV_MODE_RIGHT_ALIGN, 4);
to
ConvertIntToDecimalStringN(gStringVar1, quantityInBag...
Increase Item Stack Limit from 99 to 999
Increase stack to 999
In the src\item.c
Delete
if (pocket != BERRIES_POCKET)
slotCapacity = 99;
else
Fully see total # of items
In the src\item_menu.c
Change (around line 861)
ConvertIntToDecimalStringN(gStringVar1, itemQuantity...