Display player's health in their name?Solved
Above the player's head is the game name. Is it possible to display a string of characters above the game name to show the player's health? Is it possible to do this with oxide alone?
;D
I know how to get the player's health status, Is it possible to draw a string on the player's head simply through Oxide to show the player's health

It's possible using this:

session.WorldPlayerEntity.GetComponent<HurtMonoBehavior>().RPC("UpdateName", uLink.RPCMode.OthersExceptOwnerBuffered, "New Player Name");

This code will update the overhead name of a player, it does automatically reset when the player respawns (also on reconnect).

5e128e49266ae.png MrBlue

It's possible using this:

session.WorldPlayerEntity.GetComponent<HurtMonoBehavior>().RPC("UpdateName", uLink.RPCMode.OthersExceptOwnerBuffered, "New Player Name");

This code will update the overhead name of a player, it does automatically reset when the player respawns (also on reconnect).

thanx man :D   work

Locked automatically