How do I detect 1 Player not all of them?
Posted: Fri Jul 14, 2017 9:58 pm
I need help with detecting 1 player not like Game.GetPlayers(); I need to understand how UniquieID works. Please help fast.
- official home of Superfighters Deluxe!
https://www.mythologicinteractiveforums.com/
https://www.mythologicinteractiveforums.com/viewtopic.php?f=33&t=2016
Code: Select all
int[] plyr_ID = new int[] { };
int i = 0;
foreach (IPlayer plyr in Game.GetPlayers())
{
plyr_ID[i] = plyr.UniqueID;
i++;
}