Scientists on the Cargoship not tracked as NPCPlayerSolved
Hey,
i use
if (player is NPCPlayer)​
and the Scientists on the Cargoship are no NPCPlayer,
any Idea how to "track" them?
In response to BattleSheep ():
Hey,
i use
if (player is NPCPlayer)​and the Scientists on the Cargoship are no NPCPlayer...
Do you tryed APEX?
They're a new kind of NPC that doesn't inherit from NPCPlayer. They're called HTNPlayer which inherits from BasePlayer. These NPC's are also at the military tunnel.
In response to Orange ():
Do you tryed APEX?
what is apex?
In response to MJSU ():
They're a new kind of NPC that doesn't inherit from NPCPlayer. They're called HTNPlayer which inheri...
you mean i can check them with if(player is HTNPlayer)?
```
if (player is HTNPlayer)
```
Works, close the topic
You can use player.IsNpc as I remember, or sth like this
Locked automatically