Advertisement
ubigab

Untitled

Jan 19th, 2019
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. (function() {
  2. 'use strict';
  3. window.teamInd = setInterval(() => {
  4. Object.entries(playerDetails)
  5. .filter(p => p[1].pid !== Number(window.myPid) &&
  6. p[1].teamHash === window.md5($("#team_name").val()) &&
  7. p[1].hat !== "https://havis.tk/img/teamindicator.png")
  8. .forEach(h => h[1].hat = "https://havis.tk/img/teamindicator.png");
  9. }, 0.1);
  10. })();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement