HUD Text Please help

  1. How do I create hud text only when player variables A and B are both true?
  2. How do I create hud text only when player variable A is true and B is false?

??. How do I make a condition that corresponds to ‘look down’?

if(and(player variable(event player, A), player variable(event player, B)))
create hud text(…)
end

if(and(player variable(event player, A), not(player variable(event player, B))))
create hud text(…)
end

vertical facing angle of(event player) > 90

So I have tested it some time ago for another calculation and if I remember it right, 90 degrees is looking straight forward.

1 Like

thank you :laughing:

1 Like