Advertisement
Guest User

Untitled

a guest
May 27th, 2015
242
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. var steamID64 = 76561198030676795;
  2. var accountID = steamID64 - 76561197960265728;
  3. var steamID = function(accountID) {
  4.     if (accountID % 2 == 0) {
  5.         return "STEAM_0:" + "0" + (accountID/2).toString();
  6.     } else {
  7.         return "STEAM_0:" + "1" + (accountID/2 - 0.5).toString();
  8.     }
  9. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement