Domanda

I'm trying to get the health of a player but I'm getting a tag mismatch error on the code below.

new health;
GetPlayerHealth(playerid, health);

Hopefully someone can help me, this is important to my server.

È stato utile?

Soluzione

This is a common problem in SA:MP (which I presume is what you're developing for). GetPlayerHealth gives the player's health as a float, but you're saving it as an untagged variable.

To fix this, simply change new health; to new Float:health;

Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top