"Any Actor" equivalent in a Draw Actor script

is there a way in a draw actor script to use something like "Any Actor" instead of specifying an actor? For example:
instead of
I want to do something like
that's not the action I'm actually attempting, but it's an example.... You know what I mean right?
instead of
- Code: Select all
if(Player.x == x)
{
x -= 10
}
I want to do something like
- Code: Select all
if(Any_Actor.x == x)
{
x -= 10
}
that's not the action I'm actually attempting, but it's an example.... You know what I mean right?
