Actions applying to player I6

How can I make an action routine that affects the player differently than it does other characters?

This is what I have [ HelpSub; if (noun == {the player}) print_ret "Just do it yourself"; print "You are not qualified to help " , (the) noun , ".^" ;]; What should I replace {the player} with so that it refers to whoever the player is and no one else?

P.S. SelfObj does not work here. If the player changes, he is no longer the SelfObj. I want it to be able to refer to the player regardless of which object he or she is.

Just ``player’':

I should have known it was something that simple. Thanks anyways.