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

@ -6,14 +6,12 @@ function onceegg_hatch() /* entry=341 class_id=0x0901 slot=0x07 */
id, /* [BP-04h] type=0x69 */
qlo; /* [BP-06h] type=0x69 */
entry:
set_info(0x0210, *(arg_06));
process_exclude();
id = Intrinsic003F(arg_06);
item = *(arg_06);
qlo = Intrinsic00D9(item);
spawn class_0A18_slot_20(pid, (0 + 0x0080), item, arg_06);
suspend;
return;
set_info(0x0210, *(arg_06));
process_exclude();
id = Egg.getEggId(arg_06);
item = *(arg_06);
qlo = Item.getQLo(item);
spawn class_0A18_slot_20(pid, (0 + 0x0080), item, arg_06);
suspend;
return;
}

View file

@ -6,14 +6,12 @@ function onceegg_unhatch() /* entry=341 class_id=0x0901 slot=0x15 */
id, /* [BP-04h] type=0x69 */
qlo; /* [BP-06h] type=0x69 */
entry:
set_info(0x0239, *(arg_06));
process_exclude();
id = Intrinsic003F(arg_06);
item = *(arg_06);
qlo = Intrinsic00D9(item);
spawn class_0A18_slot_20(pid, (1 + 0x0080), item, arg_06);
suspend;
return;
set_info(0x0239, *(arg_06));
process_exclude();
id = Egg.getEggId(arg_06);
item = *(arg_06);
qlo = Item.getQLo(item);
spawn class_0A18_slot_20(pid, (1 + 0x0080), item, arg_06);
suspend;
return;
}