Compare commits
1
Commits
mdx-3.0.3c
...
mdx
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
dbfcf60ac7 |
@@ -1,6 +1,6 @@
|
||||
# DanceDanceRevolution
|
||||
|
||||
**Plugin Version:** fork-mdx-3.0.3c
|
||||
**Plugin Version:** fork-mdx-3.0.3d
|
||||
|
||||
**Supported game versions:** WORLD (2024101500)
|
||||
|
||||
@@ -26,7 +26,7 @@ musicdb.xml Usage Guide
|
||||
|
||||
Changelog
|
||||
===========
|
||||
### fork-mdx-3.0.3c
|
||||
### fork-mdx-3.0.3d
|
||||
|
||||
- Fixed WebUI flare skill calculation mistake.
|
||||
- Fixed getLastGhostId function.
|
||||
@@ -45,7 +45,10 @@ Changelog
|
||||
- "High & Low" (CHA)
|
||||
- "ONYX" (CHA)
|
||||
- Added new player customization options in Profile Settings.
|
||||
- BPL Team Supporter Appeal Board
|
||||
- BPL Team Supporter Appeal Board
|
||||
- Added 2nd WORLD LEAGUE info
|
||||
- Will start 11/14 10:00 JST.
|
||||
- Will add Hakken difficulties as soon as it is revealed.
|
||||
|
||||
|
||||
### fork-mdx-3.0.2
|
||||
|
||||
+12
-4
@@ -57,10 +57,10 @@ export const SONGS_WORLD = [
|
||||
{ mcode: 38757, limited_ary: [0, 0, 0, 0, -1, -1, 0, 0, 0, -1], diffLv: [2, 5, 8, 13, 0, 0, 5, 8, 13, 0] },
|
||||
{ mcode: 38622, limited_ary: [12, 12, 12, 12, -1, -1, 12, 12, 12, -1], diffLv: [2, 7, 12, 15, 0, 0, 7, 12, 15, 0] },
|
||||
{ mcode: 38760, limited_ary: [2, 2, 2, 2, 2, -1, 2, 2, 2, 2], diffLv: [4, 8, 13, 16, 18, 0, 8, 13, 16, 18] },
|
||||
{ mcode: 38761, limited_ary: [2, 2, 2, 2, -1, -1, 2, 2, 2, -1], diffLv: [4, 8, 12, 15, 0, 0, 8, 12, 15, 0] }
|
||||
|
||||
{ mcode: 38761, limited_ary: [2, 2, 2, 2, -1, -1, 2, 2, 2, -1], diffLv: [4, 8, 12, 15, 0, 0, 8, 12, 15, 0] },
|
||||
|
||||
// songs that have yet to release. unknown difficulty lvls.
|
||||
// { mcode: 38629, limited_ary: [], diffLv: [] }, hakken
|
||||
// { mcode: 38629, limited_ary: [13, 13, 13, 13, -1, -1 13, 13 13, -1], diffLv: [] } // hakken
|
||||
]
|
||||
|
||||
export const SONGS_OVERRIDE_WORLD = [
|
||||
@@ -281,7 +281,6 @@ export const EVENTS_WORLD = [
|
||||
{ id: 106, no: 0, cond: 1, rwrd: 37234, type: 50 },
|
||||
{ id: 107, no: 0, cond: 1, rwrd: 37363, type: 50 },
|
||||
{ id: 108, no: 0, cond: 1, rwrd: 38436, type: 52 },
|
||||
// Triple tribe 4. Song does not appear if non-Gold.
|
||||
{ id: 109, no: 0, cond: 1, rwrd: 1197, type: 201, save: 1 },
|
||||
{ id: 110, no: 0, cond: 1, rwrd: 38759, type: 43, comp: 0, save: 1 },
|
||||
{ id: 111, no: 0, cond: 1, rwrd: 38758, type: 43, comp: 0, save: 1 },
|
||||
@@ -303,6 +302,15 @@ export const LEAGUE_WORLD = [
|
||||
end: BigInt(Date.parse('6 Nov 2024 08:00:00 GMT')),
|
||||
summary: BigInt(Date.parse('6 Nov 2024 09:00:00 GMT')),
|
||||
advanceBorder: [0, 0, 0]
|
||||
},
|
||||
{
|
||||
id: 2,
|
||||
name: "第2回 WORLD LEAGUE",
|
||||
name_eng: "The 2nd WORLD LEAGUE",
|
||||
start: BigInt(Date.parse('14 Nov 2024 01:00:00 GMT')),
|
||||
end: BigInt(Date.parse('11 Dec 2024 08:00:00 GMT')),
|
||||
summary: BigInt(Date.parse('11 Dec 2024 09:00:00 GMT')),
|
||||
advanceBorder: [0, 0, 0]
|
||||
}
|
||||
]
|
||||
|
||||
|
||||
@@ -543,7 +543,7 @@ export const playerdataload: EPR = async (info, data, send) => {
|
||||
}
|
||||
|
||||
let leagueData = {}
|
||||
let curLeague = LEAGUE_WORLD[0]
|
||||
let curLeague = LEAGUE_WORLD[1]
|
||||
let league = await DB.FindOne(refid, {collection: 'league3', id: curLeague.id})
|
||||
if(!league) {
|
||||
let leagueClass = 0
|
||||
|
||||
Reference in New Issue
Block a user