Can Someone help me fix the notifications? I figured out that rather than calling the "level up!" as a string they just made a new class for it instead.
If you compare build 11.1:
Code:
L47:
getlocal0
pushstring "Level Up!"
callpropvoid QName(PackageNamespace("", "#0"), "_-fj"), 1
to the new code (still in player.class.asasm):
Code:
L44:
getlocal0
getlex QName(PackageNamespace("_-vp"), "_-WY")
getproperty QName(PackageNamespace("", "#0"), "_-0uh")
callpropvoid QName(PackageNamespace("", "#0"), "_-0A1"), 1
Its pretty easy to tell what they did.
The new code is referencing:
_-vp/_-WY
Code:
findproperty QName(PackageNamespace("", "#0"), "_-0uh")
pushstring "Player.levelUp"
initproperty QName(PackageNamespace("", "#0"), "_-0uh")
It is also referenced in _-me:_-ws
Anyone have any ideas? @JustAnoobROTMG