在线求助,框选的这个HUD提示框在CounterStrikeSharp如何实现提示QWQ
我不当学长 printToCenterHtml 的API ?
忆月 翻遍了都没见到哪里有些这个的⁄(⁄ ⁄•⁄ω⁄•⁄ ⁄)⁄.
可以参考:
https://github.com/NockyCZ/CS2-Deathmatch/blob/main/source/Deathmatch/Deathmatch.cs#L132C1-L137C22 foreach (var p in Utilities.GetPlayers().Where(p => p.IsValid && !p.IsBot && !p.IsHLTV && AdminManager.PlayerHasPermissions(p, "@css/root"))) { string CTSpawns = $"<font class='fontSize-m' color='cyan'>CT Spawns:</font> <font class='fontSize-m' color='green'>{spawnPositionsCT.Count}</font>"; string TSpawns = $"<font class='fontSize-m' color='orange'>T Spawns:</font> <font class='fontSize-m' color='green'>{spawnPositionsT.Count}</font>"; p.PrintToCenterHtml($"<font class='fontSize-l' color='red'>Spawns Editor</font><br>{CTSpawns}<br>{TSpawns}<br>"); }
我不当学长 可以参考: https://github.com/NockyCZ/CS2-Deathmatch/blob/main/source/Deathmatch/Deathmatch.cs#L132C1-L1 ...