How to get every players Info ( HP , stamina , etc ) and compare them

I am very young still 17 years old , still new to this and my English is kinna bad so i cant fully understand the Photon document so i really need a code example of how to get every player Info and compare them .

I’m sorry to say but there are not a lot of resources in languages other than English. It’s very commonplace in the development world. Maybe you can let some service translate the written docs / examples and refer to that where your English fails?! It will improve over time, I’m sure.

In terms of samples: You may want to read and code-along the PUN Basics Tutorial. It includes hitpoints and all the other values would work in the same way (stamina is just another value which works analog to HP)…

Thank you but i’ve read it, but i want to list all the player info into some thing like an array and update it every frame then compare them . For example : The player with the lowest HP will get some buff

You can send an array of values instead of sending a single one. It’s the same principle.

Im sorry im so bad at explain what i need to get help but i’ve made this :
so what is the next step to compare the player 1’s HP with the Player 2’s HP like :

if(Player1.HP < Player2.HP)
{
//do something
}