Pages: 1
|
|
Posted on 04-15-17, 06:45 pm (rev. 1 by
|
Super KoopaThat MvL Hacker Karma: 1776 Posts: 365/847 Since: 04-11-15 |
Can the server thing be used? If so how do you set it up, it would be useful for something I'm working on.
~~Ndymario (Sry if this is in the wrong forum) (By server I'm referring to the initial screen that shows up) _________________________ Here's my MvL Hacking thread Consider joining NSMB Central - the NSMB modding Discord Server! Also, be sure to check out the new wiki! #HakingNoMore |
|
|
Posted on 04-15-17, 11:44 pm
|
|
☭ coffee and cream
Karma: 10622 Posts: 2286/2818 Since: 06-26-11 |
|
|
Posted on 04-18-17, 10:53 am
|
|
a
Karma: 1589 Posts: 1267/1290 Since: 02-12-13 |
Honestly, that should be somehow continued development-wise in some way. It's a really interesting feature that I'd imagine would be useful for hacks.
|
| RicBent |
Posted on 04-18-17, 01:12 pm
|
|
Mariomaster
Karma: 8634 Posts: 842/1683 Since: 06-09-12 |
Protocoll is pretty simple:
InitPacket
{
int dataLength = 1;
byte type = 1;
};
ContentRequestPacket
{
int dataLength = 5;
byte type = 2;
int fileId;
};
ContentIntervalRequestPacket
{
int dataLength = 13;
byte type = 3;
int fileId;
int intervalStart;
int intervalEnd;
};
EditionStartPacket
{
int dataLength = 5;
byte type = 4;
int fileId;
};
EditionStartPacket
{
int dataLength = 5;
byte type = 5;
int fileId;
};
ReplaceFilePacket
{
int dataLength = newFileSize + 9;
byte type = 6;
int fileId;
int newFileSize;
byte newFile[newFileSize];
};
ReplaceFileIntervalPacket
{
int dataLength = intervalEnd - intervalStart + 9;
byte type = 7;
int fileId;
int intervalStart;
int intervalEnd;
byte newFile[intervalEnd - intervalStart];
};
////////////////////////////////
ResponsePacket
{
int status;
int dataLength;
byte data[dataLength];
}
_________________________ GitHub - Kuribo64 - YouTube |
|
|
Posted on 04-18-17, 07:22 pm
|
Super KoopaThat MvL Hacker Karma: 1776 Posts: 366/847 Since: 04-11-15 |
What the heck does that stuff mean.
_________________________ Here's my MvL Hacking thread Consider joining NSMB Central - the NSMB modding Discord Server! Also, be sure to check out the new wiki! #HakingNoMore |
| RicBent |
Posted on 04-18-17, 07:28 pm
|
|
Mariomaster
Karma: 8634 Posts: 843/1683 Since: 06-09-12 |
|
|
Posted on 04-18-17, 11:44 pm
|
Super KoopaThat MvL Hacker Karma: 1776 Posts: 367/847 Since: 04-11-15 |
How would one do that...? (I kinda have a clue what your saying, but not really
)
_________________________ Here's my MvL Hacking thread Consider joining NSMB Central - the NSMB modding Discord Server! Also, be sure to check out the new wiki! #HakingNoMore |
Pages: 1
Super Koopa