About *.nut to text

Programming related discussions related to game research
AyamiKaze
Posts: 2
Joined: Sun Mar 08, 2020 5:48 am

About *.nut to text

Post by AyamiKaze »

Well, I try to dump *.nut binary script from NitroPlus' game Minikui Mojika no Ko. But I can't dump it.
I try to analys script and get some information:

Code: Select all

struct NutHeader{
   char* Magic[4];//SCRP
   DWORD JmpOffset;//0x10
   DWORD JmpOffset2;//JmpOffset3-0x10
   DWORD JmpOffset3;//to end of script
}
struct Func{
   DWORD UnkSig;//0x8000010
   DWORD Len;
   char* FuncName[Len];//or text
}

This is sample:
nut.zip
atom0s
Posts: 250
Joined: Sat Dec 27, 2014 8:49 pm

Re: About *.nut to text

Post by atom0s »

These are compiled Squirrel script language scripts:
https://github.com/albertodemichelis/squirrel
AyamiKaze
Posts: 2
Joined: Sun Mar 08, 2020 5:48 am

Re: About *.nut to text

Post by AyamiKaze »

atom0s wrote:These are compiled Squirrel script language scripts:
https://github.com/albertodemichelis/squirrel

Thanks.