Re: Using AddObjectivePoint on an actor
Here you go, this'll work for anything in
activity (I think).
Code:
local act = ActivityMan:GetActivity()
ToGameActivity(act):AddObjectivePoint("text", Position, Team, GameActivity.ARROWDOWN);
This can also be streamlined to one line as follows:
Code:
ToGameActivity(ActivityMan:GetActivity()):AddObjectivePoint("text", Position, Team, GameActivity.ARROWDOWN);
ARROWDOWN can also be ARROWUP and maybe a few others, sadly all the activity stuff is woefully documented.