I assume you wanna ask why, and how to fix it. Next time be a little more specific in what’s the critical point/bug you want to fix.
TL;DR: Change it to
xPlayer.showHelpNotification("Your job is not Whitelisted!, true, true, 30")
There are two function calls about Notification, I think you might’ve mistaken those two:
_ xPlayer.showNotification(msg)
_ xPlayer.showHelpNotification(msg, thisFrame, beep, duration)
The .showNotification
is the notification above the map/radar
The .showHelpNotification
is the help prompt on top-left corner
And based on the arguments that you wanna pass, you are trying to use .showHelpNotification
but you called the wrong function for it. Change it correspondingly to your need, and that’s all