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,8 @@
function ebridge_equip() /* entry=208 class_id=0x03A6 slot=0x0A */
{
set_info(0x0211, *(arg_06));
process_exclude();
spawn BRIDGE.slot_20(pid, arg_0A, arg_06);
suspend;
return;
}

View file

@ -0,0 +1,20 @@
function ebridge_enterFastArea() /* entry=208 class_id=0x03A6 slot=0x0F */
{
set_info(0x021B, *(arg_06));
process_exclude();
local_02 = Item.getQLo(arg_06);
if (local_02 == 0) {
return;
}
else {
local_04 = Item.getQHi(arg_06);
if ((local_04 >= 1) || (local_04 > 127)) {
return;
}
else {
spawn BRIDGE.slot_26(pid, local_04, local_02, arg_06);
suspend;
}
}
return;
}