It’s your npc scripts that are giving you that warning.
Find the npc script that is using the deprecated constants and replace them with the new constants. That’ll remove those warnings.
Use "end;" before "OnCommand:"
from
hideonnpc "Barricade#B16";
OnCommand:
to
hideonnpc "Barricade#B16";
end;
OnCommand:
AND
hideonnpc "AB Buffs#AB4";
OnCommand:
to
hideonnpc "AB Buffs#AB4";
end;
OnCommand:
this will fix the dispbottom error