아이온2 닉변 후 적용하는게 안됩니다.
F12 → console
allow pasting 까진 했는데
--------------------------------------------------
(async function() {
// 리뷰기능 설정 (0: 사용, 1: 비사용, 2: 일부사용(하루가 지난 리뷰 숨김)
let reviewStatus = 0; //이 값을 0, 1, 2 중 하나로 변경
try {
const response = await fetch('https://aion.ing/api/generate_script.php?reviewStatus=' + reviewStatus, {
method: 'GET',
headers: {
'Content-Type': 'application/javascript'
},
credentials: 'include'
});
if (!response.ok) {
throw new Error('스크립트를 불러오는 데 실패했습니다.');
}
const scriptText = await response.text();
const script = document.createElement('script');
script.textContent = scriptText;
document.body.appendChild(script);
} catch (error) {
console.error('스크립트를 로드하는 중 오류가 발생했습니다:', error);
}
})();
여기서 막히네요
맨위에 // 이거 지우고 해봐도 안됩니다.
방법이 있을까요?
아님 주인장님이 등록해주시면 안될까요??
닉: 금송아지 / 아리엘 서버 입니다.
전체 댓글 0
등록된 댓글이 없습니다.