Usecode pseudocode

This commit is contained in:
MaddoScientisto 2026-03-26 00:37:17 +01:00
commit c12bb39437
1362 changed files with 71072 additions and 38056 deletions

View file

@ -1,10 +1,8 @@
function espace2_equip() /* entry=138 class_id=0x0290 slot=0x0A */
{
entry:
set_info(0x0211, *(arg_06));
process_exclude();
spawn class_0A03_slot_20(pid, arg_0A, arg_06);
suspend;
return;
set_info(0x0211, *(arg_06));
process_exclude();
spawn class_0A03_slot_20(pid, arg_0A, arg_06);
suspend;
return;
}

View file

@ -7,11 +7,24 @@ function espace2_enterFastArea() /* entry=138 class_id=0x0290 slot=0x0F */
set_info(0x021B, *(arg_06));
process_exclude();
if ((Item.getFrame(arg_06) != 1)) {
x = Intrinsic0084(arg_06);
if (x == 0) {
}
if (Item.getFrame(arg_06) == 1) {
return;
}
else {
x = Item.getQLo(arg_06);
if (x == 0) {
return;
}
else {
y = Item.getQHi(arg_06);
if ((y >= 1) || (y > 127)) {
return;
}
else {
spawn class_0A03_slot_26(pid, y, x, arg_06);
suspend;
}
}
}
return;
}