사용자:Zlzleking/common.js: 두 판 사이의 차이

편집 요약 없음
(문서를 비움)
태그: 비우기
(같은 사용자의 중간 판 44개는 보이지 않습니다)
1번째 줄: 1번째 줄:
$('head').append('<script src=\'/index.php?title=사용자:다메즈마/hisyokan.js&action=raw&ctype=text/javascript\'><\/script>');
 
var ikazuchi = "/images/6/6a/Kcimgc_7.png";
var ikazuchi_comment =
[
"이카즈치야! 카미나리가 아니야! 그 점도 잘 부탁할게! ",
"기운이 없네? 그럼 안 되지! ",
"사령관, 내가 있잖아! ",
"그래그래. 나한테 더 의지해도 돼. ",
"사령관, 당신은 괜찮아. 왜냐면 내가 옆에 있으니까! ",
"저기, 특별히 할 일은 없어? 음... 좀 더 나한테 의지해도 되는데? "
];
mascot.AddImage(ikazuchi);
mascot.ShowMessage(ikazuchi_comment[randomRange(0,ikazuchi_comment.length)]);
var temp = function(){
var param =
{
"action":"query",
"meta":"notifications",
"notlimit":10,
"format":"json"
};
$.ajax("/api.php",
{
data:param,
dataType:"json"
})
.done(function(res)
{
var list_o = res.query.notifications.list;
var list = [];
for(var key in list_o)
{
list.push(list_o[key]);
}
var unread_message = [];
for(var i = 0 ; i < list.length ; i++)
{
if(list[i].read == null && list[i].type != "page-linked")
{
unread_message.push(list[i]);
}
}
if(unread_message.length != 0)
{
mascot.ShowMessage("<a style='color:#FFF;' href='/wiki/"+ encodeURIComponent(unread_message[unread_message.length - 1].title.full)  + "'>司令官に手紙が来たわ。見てもいい?<br>사령관에게 편지가 왔어. 봐도 돼? </a>");
}
else
{
}
});
};
temp();
setInterval(temp,1000 * 20);

2019년 7월 21일 (일) 16:02 판