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

@ -2,12 +2,17 @@ function surcamew_equip() /* entry=284 class_id=0x04DE slot=0x0A */
{
set_info(0x0211, *(arg_06));
process_exclude();
if ((Item.getStatus(arg_06) & 0x1000)) {
if (arg_0A == 0) {
/* global_address global_id=0x3C */
spawn class_04DE_slot_21(arg_06);
}
if (!(Item.getStatus(arg_06) & 0x1000)) {
return;
}
else if (arg_0A == 0) {
/* global_address global_id=0x3C */
spawn class_04DE_slot_21(arg_06);
return;
}
else {
/* global_address global_id=0x3C */
spawn class_04DE_slot_20(arg_06);
}
return;
}