Converting NPCPLayerApex.net.ID into ulong
Hi guys. I assume it's ulong not int? Anyway how would one go about doing that? Any help would be greatly appreciated. Thanks. :)
Hey!
Why do you need to convert it? 
I'm having some difficulty with a Dictionary... I'm using:

Dictionary<NPCPlayerApex, string> tempBotRecord = new Dictionary<NPCPlayerApex, string>();​

And when I add bots to it all is fine and dandy, but when a bot dies game seems to automatically remove them from that dictionary... which is something I don't want happening... I want to remove them on my own volition...
You can save network id, yes. But why do you need to convert it?
How can you save it into Dictionary without converting it...?
Make a dictionary of uint, string. Lol. If you can change type to ulong why can't you just change it to uint
In response to misticos ():
Make a dictionary of uint, string. Lol. If you can change type to ulong why can't you just change it...
Thanks man. I appreciate it.