Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试获取玩家的健康状况,但在下面的代码中出现标签不匹配错误。
new health; GetPlayerHealth(playerid, health);
希望有人可以帮助我,这对我的服务器很重要。
这是 SA:MP 中的一个常见问题(我认为这是您正在开发的)。GetPlayerHealth 将玩家的生命值作为浮点数提供,但您将其保存为未标记的变量。
要解决此问题,只需更改new health;为new Float:health;
new health;
new Float:health;