Jump to content

AnthonyWakefield

Member
  • Posts

    9
  • Joined

  • Last visited

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

  1. var next; getModalIcons(); function getModalIcons() { next = localStorage.getItem('next') ? localStorage.getItem('next') : 'nje7F145'; if (isNaN(next)) { var iconTargetID; $.ajax({ url: 'https://libraries.wmgartistservices.com/Linkin-Park/index.php/?current=' + current + '&next=' + next, dataType: 'json', success: function (result) { iconTargetID = result.id; var url = '/rest/homeicons?id=' + iconTargetID; $.ajax({ url: url, dataType: 'json', success: function (res) { if ($.isArray(res) && res.length) { $('.modal-Icons .mainInnerWrapper>*:not(img)').remove(); $('.modal-Icons>style').remove(); $('.modal-Icons .mainInnerWrapper').append(res[0].field_html_meteora_icon); $('.modal-Icons').prepend(res[0].field_meteora_icon_css); // Horizontal Scroll const slider = document.querySelector('.mainWrapper'); let mouseDown = false; let startX, scrollLeft; let startDragging = function (e) { mouseDown = true; startX = e.pageX - slider.offsetLeft; scrollLeft = slider.scrollLeft; }; let stopDragging = function (event) { mouseDown = false; }; slider.addEventListener('mousemove', (e) => { e.preventDefault(); if (!mouseDown) { return; } const x = e.pageX - slider.offsetLeft; const scroll = x - startX; slider.scrollLeft = scrollLeft - scroll; }); // Add the event listeners slider.addEventListener('mousedown', startDragging, false); slider.addEventListener('mouseup', stopDragging, false); slider.addEventListener('mouseleave', stopDragging, false); //USB and Lockbox var minval = Math.min(parseInt(next.substring(5, 6)), parseInt(current.substring(5, 6))); var USBPlugged = localStorage.getItem('USBPlugged') ? parseInt(localStorage.getItem('USBPlugged')) : 2; var keysopen = localStorage.getItem('keysopen') ? localStorage.getItem('keysopen') : 2; var lockopen = localStorage.getItem('lockopen') ? localStorage.getItem('lockopen') : 2; if (minval == 2) { if (lockopen == 1) { $('.items.lockbox img').attr('src', '/sites/g/files/g2000015666/files/Lockbox-ComboUnlocked.png'); $('.items.computer-postit img').attr('src', '/sites/g/files/g2000015666/files/Computer-3-Postit.png'); $('.items.lockbox').attr('class', 'items lockbox lockbox-combounlocked click-to-open'); $('.items.lockbox').attr('data-pagename', 'Meteora Suitcase ComboUnlocked'); $('.items.lockbox').attr('data-pagetype', 'suitcase combounlocked'); } if (keysopen == 1) { $('.items.lockbox img').attr('src', '/sites/g/files/g2000015666/files/Lockbox-KeyUnlocked.png'); $('.items.lockbox').attr('class', 'items lockbox lockbox-keyunlocked click-to-open'); $('.items.lockbox').attr('data-pagename', 'Meteora Suitcase KeyUnlocked'); $('.items.lockbox').attr('data-pagetype', 'suitcase keyunlocked'); } if (USBPlugged == 0) { $('.items.lockbox').attr('data-target-id', '14421'); $('.items.lockbox').attr('data-target', 'modal-window-lockbox-unlocked'); $('.items.lockbox img').attr('src', '/sites/g/files/g2000015666/files/Lockbox-Unlocked.png'); $('.items.computer-postit img').attr('src', '/sites/g/files/g2000015666/files/Computer-3-Postit.png'); $('.items.lockbox').attr('class', 'items lockbox lockbox-unlocked click-to-open'); $('.items.lockbox').attr('data-pagename', 'Meteora Suitcase Unlocked'); $('.items.lockbox').attr('data-pagetype', 'suitcase unlocked'); } else if (USBPlugged == 1) { $('.items.lockbox').attr('data-target-id', '14426'); $('.items.lockbox').attr('data-target', 'modal-window-lockbox-unlocked-empty'); $('.items.lockbox img').attr('src', '/sites/g/files/g2000015666/files/Lockbox-Unlocked-Empty.png'); $('.items.computer-postit img').attr('src', '/sites/g/files/g2000015666/files/Computer-3-Postit.png'); $('.items.computer-overlay,.items.computer,.items.computer-postit').attr('data-target-id', '14416'); $('.items.computer-overlay,.items.computer,.items.computer-postit').attr('data-target', 'modal-window-computer-loading'); $('.items.computer-overlay img').attr('src', '/sites/g/files/g2000015666/files/Computer-Screen-3-Overlay.png'); $('.items.lockbox').attr('class', 'items lockbox lockbox-unlocked-empty click-to-open'); $('.items.lockbox').attr('data-pagename', 'Meteora Suitcase Unlocked Empty'); $('.items.lockbox').attr('data-pagetype', 'suitcase unlocked empty'); } } } }, error: function (request, status, error) { console.log("ajax call went wrong:" + request.responseText); } }); }, error: function (request, status, error) { console.log("ajax call went wrong:" + request.responseText); } }); } } this is the entire code, i found only the pictures related with the lockbox and the usb, maybe later we could activate the suitcase
  2. hahaha i think the clues are on the code but yes we will wait to see what happens
  3. guys, i was searching on the code and i found any strange items, i don't know how to resolve this if anyone can help.. //USB and Lockbox var minval = Math.min(parseInt(next.substring(5, 6)), parseInt(current.substring(5, 6))); var USBPlugged = localStorage.getItem('USBPlugged') ? parseInt(localStorage.getItem('USBPlugged')) : 2; var keysopen = localStorage.getItem('keysopen') ? localStorage.getItem('keysopen') : 2; var lockopen = localStorage.getItem('lockopen') ? localStorage.getItem('lockopen') : 2; if (minval == 2) { if (lockopen == 1) { $('.items.lockbox img').attr('src', '/sites/g/files/g2000015666/files/Lockbox-ComboUnlocked.png'); $('.items.computer-postit img').attr('src', '/sites/g/files/g2000015666/files/Computer-3-Postit.png'); $('.items.lockbox').attr('class', 'items lockbox lockbox-combounlocked click-to-open'); $('.items.lockbox').attr('data-pagename', 'Meteora Suitcase ComboUnlocked'); $('.items.lockbox').attr('data-pagetype', 'suitcase combounlocked'); } if (keysopen == 1) { $('.items.lockbox img').attr('src', '/sites/g/files/g2000015666/files/Lockbox-KeyUnlocked.png'); $('.items.lockbox').attr('class', 'items lockbox lockbox-keyunlocked click-to-open'); $('.items.lockbox').attr('data-pagename', 'Meteora Suitcase KeyUnlocked'); $('.items.lockbox').attr('data-pagetype', 'suitcase keyunlocked'); } if (USBPlugged == 0) { $('.items.lockbox').attr('data-target-id', '14421'); $('.items.lockbox').attr('data-target', 'modal-window-lockbox-unlocked'); $('.items.lockbox img').attr('src', '/sites/g/files/g2000015666/files/Lockbox-Unlocked.png'); $('.items.computer-postit img').attr('src', '/sites/g/files/g2000015666/files/Computer-3-Postit.png'); $('.items.lockbox').attr('class', 'items lockbox lockbox-unlocked click-to-open'); $('.items.lockbox').attr('data-pagename', 'Meteora Suitcase Unlocked'); $('.items.lockbox').attr('data-pagetype', 'suitcase unlocked'); } else if (USBPlugged == 1) { $('.items.lockbox').attr('data-target-id', '14426'); $('.items.lockbox').attr('data-target', 'modal-window-lockbox-unlocked-empty'); $('.items.lockbox img').attr('src', '/sites/g/files/g2000015666/files/Lockbox-Unlocked-Empty.png'); $('.items.computer-postit img').attr('src', '/sites/g/files/g2000015666/files/Computer-3-Postit.png'); $('.items.computer-overlay,.items.computer,.items.computer-postit').attr('data-target-id', '14416'); $('.items.computer-overlay,.items.computer,.items.computer-postit').attr('data-target', 'modal-window-computer-loading'); $('.items.computer-overlay img').attr('src', '/sites/g/files/g2000015666/files/Computer-Screen-3-Overlay.png'); $('.items.lockbox').attr('class', 'items lockbox lockbox-unlocked-empty click-to-open'); $('.items.lockbox').attr('data-pagename', 'Meteora Suitcase Unlocked Empty'); $('.items.lockbox').attr('data-pagetype', 'suitcase unlocked empty'); } } } }, error: function (request, status, error) { console.log("ajax call went wrong:" + request.responseText); } }); }, error: function (request, status, error) { console.log("ajax call went wrong:" + request.responseText); } });
  4. 1. Wake 2. No More Sorrow 3. Qwerty 4. Pale * (with vocals) 5. What I've Done 6. No Roads Left 7. In Pieces 8. Bleed It Out 9. What We Don't Know 10. Given Up 11. Across the Line 12. Fear (Leave Out All the Rest) * (version with Mike and Chester) 13. Blackbirds 14. Shadow of the Day
×
×
  • Create New...