Toggle navigation
Toggle navigation
This project
Loading...
Sign in
전세계
/
FakerQuiz
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
1
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
Ubuntu
2020-06-21 18:24:52 +0000
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
3ee77183ca963f9e7c24e58ca686e83dda79281f
3ee77183
1 parent
28268e51
버그: 가장 많이 플레이한 챔피언 찾는 방식 변경 및 경기 당 데스 퀴즈 표현 변경
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
13 deletions
app.js
app.js
View file @
3ee7718
...
...
@@ -4,7 +4,7 @@ const app = express();
const
axios
=
require
(
'axios'
);
const
cheerio
=
require
(
'cheerio'
);
const
url
=
'http://lol.inven.co.kr/dataninfo/proteam/progamer.php?code=1
35
'
;
// ***url of Other player (if you want)***
const
url
=
'http://lol.inven.co.kr/dataninfo/proteam/progamer.php?code=1
16
'
;
// ***url of Other player (if you want)***
const
request
=
require
(
'request'
);
const
TARGET_URL
=
'https://api.line.me/v2/bot/message/reply'
;
...
...
@@ -289,8 +289,8 @@ function generateQuiz() {
//#region LCK 경기당 데스 퀴즈 ox
var
lckDM
=
fakerData
.
lCK
.
deathPerMatch
*
1
;
quizO
=
`
${
fakerData
.
name
}
의 LCK 경기 당 데스는
${
parseInt
(
lckDM
)
+
1
}
데스 이하이
다.`
;
quizX
=
`
${
fakerData
.
name
}
의 LCK 경기 당 데스는
${
parseInt
(
lckDM
)}
데스 이하이
다.`
;
quizO
=
`
${
fakerData
.
name
}
의 LCK 경기 당 데스는
${
parseInt
(
lckDM
)
+
1
}
보다 작
다.`
;
quizX
=
`
${
fakerData
.
name
}
의 LCK 경기 당 데스는
${
parseInt
(
lckDM
)}
보다 작
다.`
;
info
=
`
${
fakerData
.
name
}
의 LCK 경기 당 데스 :
${
lckDM
}
`
;
generateOX
(
quizO
,
quizX
,
info
);
//#endregion
...
...
@@ -366,16 +366,7 @@ function generateQuiz() {
//#region 모스트 픽 챔피언
var
firstPickChamp
=
champions
[
champList
[
0
]];
var
secondPickChamp
=
champions
[
champList
[
1
]];
for
(
i
=
0
;
i
<
champList
.
length
;
i
++
)
{
if
(
champions
[
champList
[
i
]]
>
secondPickChamp
.
totalGamePlay
)
{
secondPickChamp
=
champions
[
champList
[
i
]];
if
(
secondPickChamp
.
totalGamePlay
>
firstPickChamp
.
totalGamePlay
)
{
var
temp
=
secondPickChamp
;
secondPickChamp
=
firstPickChamp
;
firstPickChamp
=
temp
;
}
}
}
quizO
=
`
${
fakerData
.
name
}
가 대회에서 가장 많이 플레이한 챔피언은 '
${
firstPickChamp
.
name
}
'이다.`
;
quizX
=
`
${
fakerData
.
name
}
가 대회에서 가장 많이 플레이한 챔피언은 '
${
secondPickChamp
.
name
}
'이다.`
;
info
=
`1위. '
${
firstPickChamp
.
name
}
' :
${
firstPickChamp
.
totalGamePlay
}
게임\n2위. '
${
secondPickChamp
.
name
}
' :
${
secondPickChamp
.
totalGamePlay
}
게임`
;
...
...
Please
register
or
login
to post a comment