This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2356e.v.fwmrm.net | |
ads-pres.channel4.com | |
cdn.http.anno.channel4.com | |
cdn.ss.anno.channel4.com | |
p.videologygroup.com | |
securecdn.videologygroup.com | |
toots-a.akamaihd.net | |
trk-euwest.tidaltv.com | |
2a7e9.v.fwmrm.net |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
******************************** | |
Main Code and Research by Slattz | |
******************************** | |
*/ | |
#include <stdio.h> | |
#include <string.h> | |
#include <stdlib.h> | |
#include <stdint.h> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Season: End Day - End Month - Type (End days are inclusive i.e. next season starts day after) | |
Season00: 15 - 01 - Winter - Brown Trees; Snow | |
Season01: 18 - 02 - Winter - Transition from Brown->Green Trees; Brown more prominent; Snow | |
Season02: 24 - 02 - Winter - Transition from Brown->Green Trees; Green more prominent; Snow | |
Season03: 31 - 03 - Spring - 'Light' Green Tree; No more snow | |
Season04: 05 - 04 - Spring - Cherry Blossom Trees; Light Cherry Blossoms in sky??? | |
Season05: 10 - 04 - Spring - Cherry Blossom Trees; Heavy Cherry Blossoms in sky??? | |
Season06: 14 - 04 - Spring - 'Light' Green Tree; Same as Season03? | |
Season07: 07 - 06 - Summer - 'Mantis' Tree; | |
Season08: 15 - 06 - Summer - 'Mantis' Tree; Same as Season07? |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
static const u32 RoomUniqueArray[0xA5] = { | |
0x26, 0x206, 0x400008, 0x188, 0x188, 0x188, 0x4000188, 0x4000188, | |
0x188, 0x188, 0x188, 0x188, 0x4000188, 0x4000188, 0x188, 0x188, | |
0x188, 0x188, 0x4000188, 0x4000188, 0x188, 0x188, 0x188, 0x188, | |
0x4000188, 0x4000188, 0x188, 0x148, 0x148, 0x148, 0x148, 0x148, | |
0x148, 0x148, 0x148, 0x148, 0x148, 8, 8, 0x400018, | |
0x400018, 0x400018, 0x400018, 0x1008, 8, 0x18, 8, 0x18, | |
0x10008, 0x10008, 0x1000008, 0x1000018, 8, 0x1108, 8, 8, | |
0x1008, 0x1008, 0x1008, 0x1008, 0x1008, 0x1008, 0x1008, 0x1008, | |
0x1008, 0x1008, 0x1008, 0x1008, 0x1008, 0x800008, 0x800008, 0x800008, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Weather Values: | |
0: Sky completely clear | |
1: Few Clouds, but clear weather | |
2: Dark sky/clouds to signify rain is coming, clear weather | |
3: Sky completely filled with grey clouds, Light Rain | |
4: Black clouds, Heavy Rain w/ Thunder+Lightning | |
5: Sky completely filled with light grey clouds, Light Snow | |
6: Black clouds, Heavy Snow, looks kinda 'foggy' | |
7+: Invalid, Music doesn't play and weather is always clear |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//#include <stdio.h> | |
#include <time.h> //time | |
#include <stdlib.h> //rand & srand | |
#include <stdint.h> | |
int GeneratePlayerID(void) | |
{ | |
time_t t; | |
srand(time(&t)); | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Item | Bell Buy Price | Medals Buy Price | Sell Price [Retail, Nooks, Island] | | |
0x2001 - Apple | 2000 Bells | 40 Medals | [500, 400, 25] Bells | |
0x2002 - Orange | 2000 Bells | 40 Medals | [500, 400, 25] Bells | |
0x2003 - Pear | 2000 Bells | 40 Medals | [500, 400, 25] Bells | |
0x2004 - Peach | 2000 Bells | 40 Medals | [500, 400, 25] Bells | |
0x2005 - Cherry | 2000 Bells | 40 Medals | [500, 400, 25] Bells | |
0x2006 - Coconut | 1000 Bells | 20 Medals | [250, 200, 12] Bells | |
0x2007 - Durian | 1000 Bells | 20 Medals | [250, 200, 12] Bells | |
0x2008 - Lemon |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Reverse Engineering of ACNL's Inventory Whitelist by Slattz | |
Any hardcoded pointer offsets are based on EUR | |
Code.bin Offsets of functions below: | |
0x769864: CheckInventoryItemWhitelist | |
0x535908: ItemValidity | |
0x53589C: CheckIfValidItem | |
0x768DC4: CheckItemValidity |