piotr25691 34 Posted July 26 Report Share Posted July 26 On 7/21/2022 at 4:50 AM, NoctsRanun said: Yep. 2022070400 for now. I think that 2022070400 is actually just a mislabeled 2022062001. 0 Quote Link to comment Share on other sites More sharing options...
NoctsRanun 30 Posted July 26 Report Share Posted July 26 1 hour ago, piotr25691 said: I think that 2022070400 is actually just a mislabeled 2022062001. Yes, it is indeed a mislabeled 2022062001. 0 Quote Link to comment Share on other sites More sharing options...
RagnarokSam 2 Posted July 27 Report Share Posted July 27 On 7/21/2022 at 11:20 PM, JoNB3x said: Already download the update file thank issues: -> After play a song and get the scxreen result game crash and close (I thought that the theme gold could affect and that is why the crash so I put the .dll as factory but still I have the same crash ) WhatsApp Video 2022-07-21 at 23.47.08.mp4 3.77 MB · 0 downloads thank to everyone those videos exist on the update file you must install K-lite codec in the last version https://codecguide.com/download_k-lite_codec_pack_mega.htm I believe the video file you have highlighted in your screen shot is the standard A3 background animation, and not the video for the gold cab that SYNTHSPC had asked about which has more of a magenta/purple-ish hue to it as seen in polivosm's post. It doesn't appear to be present in your screenshot either. 0 Quote Link to comment Share on other sites More sharing options...
niteruyan 0 Posted July 28 Report Share Posted July 28 Anyone knows the address for Sound Offset and Render Offset in the A3 gamemdx.dll? 0 Quote Link to comment Share on other sites More sharing options...
vicskates 2 Posted July 28 Report Share Posted July 28 15 minutes ago, niteruyan said: Anyone knows the address for Sound Offset and Render Offset in the A3 gamemdx.dll? bemani patcher 0 Quote Link to comment Share on other sites More sharing options...
DasRU 1 Posted July 28 Report Share Posted July 28 On 7/24/2022 at 4:08 PM, Arthema said: I've been having this issue where Asphyxia does save scores, but it saves the last score no matter if that score is lower than the previous one. 😞 do you know how to fix this ? I checked the plugin's code but with no luck on how to fix it. I'm glad you pointed this out, I had been using Asphyxia and had the sense that something was wrong with my scores, but I thought it was failing to save at all, not overwriting scores every time. I went through the exposed code like you have and made a very hacky solution. I think the real 'issue' is more to do with how it appears Asphyxia goes through the DDR DB file on launch and cuts out duplicate entries, but always keeps the latest. But that's just a guess, I didn't go through Asphyxia's code, I just assumed it would be out of my depth and I'd more quickly invent a fix on the plugin side. I'm confident my solution is a bad hack and it may have consequences I haven't seen yet, but from my limited messing around, it works. Beneath line 207 in usergamedata.ts, insert the following block: const scores = await DB.Find<Score>(refId, { collection: "score" }); let newHigh = false; let found = false; for (const sc of scores) { if (sc.songId == songId && sc.difficulty == difficulty) { found = true; if (sc.score < score) { newHigh = true; } } } if (newHigh || !found) { (...upsert blocks...) } Make sure to put the final if statement above the two following upsert blocks, and close the bracket after them. This way, the upserts will not fire unless a score exists and is lower than the score you are trying to save. I don't know if my check that the song exists is necessary, but I was worried this doesn't work correctly if you are beating a song for the first time and thought I'd just toss it in there. 1 Quote Link to comment Share on other sites More sharing options...
incr3d1ble 0 Posted July 29 Report Share Posted July 29 I have updated from A20+ to A3 and everything seems fine until it reaches test mode it'll freeze and crash. if I run a20+ it works fine but if I update and try to run the game it crashes at test mode. can someone please help me 0 Quote Link to comment Share on other sites More sharing options...
Ghostxdeath 2 Posted July 29 Report Share Posted July 29 En 28/7/2022 a las 17:16, DasRU dijo: Make sure to put the final if statement above the two following upsert blocks, and close the bracket after them. This way, the upserts will not fire unless a score exists and is lower than the score you are trying to save. I don't know if my check that the song exists is necessary, but I was worried this doesn't work correctly if you are beating a song for the first time and thought I'd just toss it in there. could you upload a screenshot of how the final code looks?, is that it gives me an error 0 Quote Link to comment Share on other sites More sharing options...
Arthema 2 Posted July 31 Report Share Posted July 31 (edited) On 7/28/2022 at 4:16 PM, DasRU said: I'm glad you pointed this out, I had been using Asphyxia and had the sense that something was wrong with my scores, but I thought it was failing to save at all, not overwriting scores every time. I went through the exposed code like you have and made a very hacky solution. I think the real 'issue' is more to do with how it appears Asphyxia goes through the DDR DB file on launch and cuts out duplicate entries, but always keeps the latest. But that's just a guess, I didn't go through Asphyxia's code, I just assumed it would be out of my depth and I'd more quickly invent a fix on the plugin side. I'm confident my solution is a bad hack and it may have consequences I haven't seen yet, but from my limited messing around, it works. Beneath line 207 in usergamedata.ts, insert the following block: const scores = await DB.Find<Score>(refId, { collection: "score" }); let newHigh = false; let found = false; for (const sc of scores) { if (sc.songId == songId && sc.difficulty == difficulty) { found = true; if (sc.score < score) { newHigh = true; } } } if (newHigh || !found) { (...upsert blocks...) } Make sure to put the final if statement above the two following upsert blocks, and close the bracket after them. This way, the upserts will not fire unless a score exists and is lower than the score you are trying to save. I don't know if my check that the song exists is necessary, but I was worried this doesn't work correctly if you are beating a song for the first time and thought I'd just toss it in there. Thank you @DasRU!!! now I see that the game is storing only the highest score. I think it is a really great workaround even though it does not store the World, Area and machine records 😞 sadly. I have another question about the "score differentiator" (I don't know how it is called) I see that no matters what score you have, it thinks the score it is = 0 and always sums up the score of every arrow grade (I don't know if I made myself clear). here it is a picture. Maybe it is not really comparing the arrow grades between the highest score and the current score? maybe it is not storing the arrow grades ? Edited July 31 by Arthema Updating text 0 Quote Link to comment Share on other sites More sharing options...
LimKum 0 Posted August 5 Report Share Posted August 5 Where do you find an Asphyxia plugin that works with the A3 data? I downloaded the source from the GitHub linked and ran Asphyxia, but when I attempt to insert a card, I get a "Network is Busy" error. 0 Quote Link to comment Share on other sites More sharing options...
santiago97 9 Posted August 5 Report Share Posted August 5 (edited) En 16/7/2022 a las 11:07, NotEarl dijo: I've been using A3 with Asphyxia 1.40d and it saves scores. https://github.com/drmext/plugins I hope this can help some who want to play the game with saved scores. @LimKumYou can download here and asphyxia works great to save scores Edited August 5 by santiago97 0 Quote Link to comment Share on other sites More sharing options...
LimKum 0 Posted August 5 Report Share Posted August 5 4 minutes ago, santiago97 said: @LimKumYou can download here and asphyxia works great to save scores This is what I downloaded for the DDR plugin. I ran Asphyxia 1.40d used Spicetools to launch A3. When I pressed the "+" button to use a card, I got a "Network is Busy" error. 0 Quote Link to comment Share on other sites More sharing options...
santiago97 9 Posted August 5 Report Share Posted August 5 @LimKum There could be several reasons, check that the card codes match in asphyxia and spicetools, another reason could be the localhost and the port with which spicetools works, at first it didn't work for me because I didn't have the card codes properly configured cards at spicetools 0 Quote Link to comment Share on other sites More sharing options...
Ghostxdeath 2 Posted Tuesday at 11:46 PM Report Share Posted Tuesday at 11:46 PM En 5/8/2022 a las 0:48, LimKum dijo: This is what I downloaded for the DDR plugin. I ran Asphyxia 1.40d used Spicetools to launch A3. When I pressed the "+" button to use a card, I got a "Network is Busy" error. 1.-copy the ea3-config in prop 2.-in spicecfg go to card and generate a new one 3.-in the spicecfg go to options and in service url put the one that gives you the Asphyxia Core as in the image. with that it should work, at least it worked for me that way ea3-config.xml 0 Quote Link to comment Share on other sites More sharing options...
sunnyboi_1 2 Posted Wednesday at 06:44 AM Report Share Posted Wednesday at 06:44 AM WHEN MDX-2022080800 0 Quote Link to comment Share on other sites More sharing options...
NoctsRanun 30 Posted Wednesday at 06:48 AM Report Share Posted Wednesday at 06:48 AM Yesss it's working👍👍👍 1 Quote Link to comment Share on other sites More sharing options...
G KENNON 18 Posted yesterday at 06:57 AM Report Share Posted yesterday at 06:57 AM On 8/10/2022 at 1:44 AM, sunnyboi_1 said: WHEN MDX-2022080800 No time soon 0 Quote Link to comment Share on other sites More sharing options...
ribbonzzipperz 3 Posted 20 hours ago Report Share Posted 20 hours ago How to get the gold background to work properly on A3? Alternatively, when I run A3 with forced blue background it crashes; any fix for that? 0 Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.