Skip to content

Commit

Permalink
remove unstable medal codes
Browse files Browse the repository at this point in the history
  • Loading branch information
rydoginator committed Jan 27, 2017
1 parent 26fc279 commit 9ca0520
Show file tree
Hide file tree
Showing 8 changed files with 22 additions and 24 deletions.
Binary file modified ACNL_MULTI.plg
Binary file not shown.
Binary file modified ACNL_MULTI.zip
Binary file not shown.
44 changes: 21 additions & 23 deletions Sources/create_menu.c
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ static inline void smenu(void)
new_radio_entry("Rover", changeRover);
new_radio_entry("Harvey", changeHarvey);
exit_spoiler();
new_spoiler("Money Codes(Beta)");
new_spoiler("Money Codes");
new_spoiler("Bank Values");
new_radio_entry("Bank Breaker", bank_999m);
new_radio_entry("Be a millionare!", bank_1m);
Expand All @@ -141,24 +141,22 @@ static inline void smenu(void)
new_radio_entry("Negative Bells", wallet_neg);
exit_spoiler();
new_spoiler("Medal Modifiers");
new_spoiler_with_note("Stable Modifier", med_note);
new_radio_entry("50K Medals", medal_50k);
new_radio_entry("10K Medals", medal_10k);
new_radio_entry("1K Medals", medal_1k);
new_radio_entry("0 Medals", medal_0);
exit_spoiler();
new_spoiler_with_note("Unstable Modifier", medun_note);
new_unselectable_entry("Read Unstable's Note!");
new_radio_entry("Medal Mod 1", medals_1s);
new_radio_entry("Medal Mod 10", medals_10s);
new_radio_entry("Medal Mod 100", medals_100s);
new_radio_entry("Medal Mod 1000", medals_1000s);
exit_spoiler();
new_spoiler_with_note("Meow Coupon Codes", meow_note);
new_radio_entry("Infinite Meow Coupons", meow_99k);
new_radio_entry("No Coupons Left", meow_0k);
new_radio_entry("Negative Copuons", meow_neg);
exit_spoiler();
//new_entry_with_note("---Stable Modifier---", med_note, keep_it_off);
new_radio_entry("50K Medals", medal_50k);
new_radio_entry("10K Medals", medal_10k);
new_radio_entry("1K Medals", medal_1k);
new_radio_entry("0 Medals", medal_0);
/*new_entry_with_note("---Unstable Modifier---", medun_note, keep_it_off);
new_radio_entry("Medal Mod 1", medals_1s);
new_radio_entry("Medal Mod 10", medals_10s);
new_radio_entry("Medal Mod 100", medals_100s);
new_radio_entry("Medal Mod 1000", medals_1000s);*/
exit_spoiler();
new_spoiler_with_note("Meow Coupon Codes", meow_note);
new_radio_entry("Infinite Meow Coupons", meow_99k);
new_radio_entry("No Coupons Left", meow_0k);
new_radio_entry("Negative Coupons", meow_neg);
exit_spoiler();
exit_spoiler();
new_spoiler_with_note("Movement Codes", trans_note);
new_entry_with_note("Anti Gravity and more", gr_note, antiGravity);
Expand Down Expand Up @@ -206,7 +204,7 @@ static inline void smenu(void)
new_entry_with_note("Time Machine", tm_note, timeMachine);
exit_spoiler();
new_spoiler("Misc. Codes");
new_entry_with_note("WIP Camera Mod", cam_note, cameraMod);
new_entry_with_note("Camera Mod", cam_note, cameraMod);
new_entry_with_note("Edible Items", eat_note, edibleItems);
//new_entry("Purchase 'Not for sale' Items From Catalog", canBuy);
new_entry("Nookling Items are Free", nookFree);
Expand Down Expand Up @@ -236,17 +234,17 @@ void my_menus(void)
if (tid == 0x86300)
{
assign_region(USA);
new_super_unselectable_entry("ACNL NTR Cheats Ver 3.2 Beta 4 USA", while_plugin_is_alive);
new_super_unselectable_entry("ACNL NTR Cheats Ver 3.2 USA", while_plugin_is_alive);
}
else if (tid == 0x86400)
{
assign_region(EUR);
new_super_unselectable_entry("ACNL NTR Cheats Ver 3.2 Beta 4 EUR", while_plugin_is_alive);
new_super_unselectable_entry("ACNL NTR Cheats Ver 3.2 EUR", while_plugin_is_alive);
}
else if (tid == 0x86200)
{
assign_region(JAP);
new_super_unselectable_entry("ACNL NTR Cheats Ver 3.2 Beta 4 JAP", while_plugin_is_alive);
new_super_unselectable_entry("ACNL NTR Cheats Ver 3.2 JAP", while_plugin_is_alive);
}
else
{
Expand Down
2 changes: 1 addition & 1 deletion build.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ def allFolderFile(pattern, ext):
#WA_USA_TID = "0004000000198E00"
NAME = "ACNL_MULTI"
FTP_FOLDER = "./plugin/" + USA_TID + "/"
HOST = "192.168.1.2"
HOST = "192.168.1.9"
PORT = "5000"
COPYTOPATH = NAME + ".plg"
CC = "arm-none-eabi-gcc"
Expand Down
Binary file modified obj/create_menu.o
Binary file not shown.
Binary file modified plugin/plugin/0004000000086200/ACNL_MULTI_JAP.plg
Binary file not shown.
Binary file modified plugin/plugin/0004000000086300/ACNL_MULTI_USA.plg
Binary file not shown.
Binary file modified plugin/plugin/0004000000086400/ACNL_MULTI_EUR.plg
Binary file not shown.

0 comments on commit 9ca0520

Please sign in to comment.