Pseudocode decompialtion improvements and docs

This commit is contained in:
MaddoScientisto 2026-03-26 22:10:48 +01:00
commit 589bfc31ef
1898 changed files with 60634 additions and 6597 deletions

View file

@ -0,0 +1,7 @@
function railbase_equip() /* entry=383 class_id=0x05E7 slot=0x0A */
{
set_info(0x0211, *(arg_06));
process_exclude();
spawn HOVER.slot_22(arg_0A, arg_06);
return;
}

View file

@ -0,0 +1,10 @@
function railbase_unequip() /* entry=383 class_id=0x05E7 slot=0x0B */
{
set_info(0x0212, *(arg_06));
process_exclude();
if (arg_0A == 0) {
spawn RAILBASE.enterFastArea(pid, arg_06);
suspend;
}
return;
}

View file

@ -0,0 +1,11 @@
function railbase_enterFastArea() /* entry=383 class_id=0x05E7 slot=0x0F */
{
set_info(0x021B, *(arg_06));
process_exclude();
if ((Item.getQHi(arg_06) & 32) == 0) {
if ((Item.getStatus(arg_06) & 0x1000) == 0) {
spawn HOVER.slot_21(*(arg_06), arg_06);
}
}
return;
}

View file

@ -0,0 +1,9 @@
function railbase_leaveFastArea() /* entry=383 class_id=0x05E7 slot=0x10 */
{
set_info(0x021C, *(arg_06));
process_exclude();
if ((Item.getQHi(arg_06) & 64) == 0) {
/* bit_not */
}
return;
}