I've recently been trying to convert a SteamID into a SteamID64.
The formula for this is:
[code]
STEAM_X:Y:Z
V = 0x0110000100000000(hex)
or 76561197960265728 in dezimal
SteamID64=Z*2+V+Y
[/code]
But if I print the steamid64, or any big number really garrys mod just prints(just an example): 765611979602+e015
I need to make the calculation and then turn the number into a string but I can't find away around that.