Pages: 1
Posted on 04-15-17, 06:45 pm (rev. 1 by  Ndymario on 04-15-17, 06:46 pm)
Fuzzy
That MvL Hacker

Karma: 1599
Posts: 365/789
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 the NSMB DS Hacking Discord Server!

#HakingNoMore
Posted on 04-15-17, 11:44 pm
☭ coffee and cream


Karma: 10415
Posts: 2286/2768
Since: 06-26-11
it was made for collaborative NSMB editing. no idea if it still works or how to use it. it seems to require some server software, dunno where that is.
_________________________
Kuribo64 - RH-fucking-cafe - Kafuka

zrghij
Posted on 04-18-17, 10:53 am
a

Karma: 1579
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.
Posted on 04-18-17, 01:12 pm
Mariomaster

Karma: 8528
Posts: 842/1681
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
Fuzzy
That MvL Hacker

Karma: 1599
Posts: 366/789
Since: 04-11-15
What the heck does that stuff mean.
_________________________
Here's my MvL Hacking thread

Consider joining the NSMB DS Hacking Discord Server!

#HakingNoMore
Posted on 04-18-17, 07:28 pm
Mariomaster

Karma: 8528
Posts: 843/1681
Since: 06-09-12
These are the packets that get send between NSMBe and a possible server.
You just have to write a server implementation for that protocoll
_________________________
GitHub - Kuribo64 - YouTube
Posted on 04-18-17, 11:44 pm
Fuzzy
That MvL Hacker

Karma: 1599
Posts: 367/789
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 the NSMB DS Hacking Discord Server!

#HakingNoMore
Pages: 1