MIRUI Posté(e) le 11 janvier Partager Posté(e) le 11 janvier I can't update because I don't know how to update. Please let me know how to update. I'm currently using 1.35 version. Lien vers le commentaire Partager sur d’autres sites More sharing options...
laflegge Posté(e) le 11 janvier Partager Posté(e) le 11 janvier I do not understand the next .... I have both the 1.39 and 1.40 version from @meru_golang   The last shows 1409 songs available. When I put the extra option files in the 1.39 version I also get 1409 songs. However: when I get a 'clean' package from another source (which is nearly identical to 1.39 version from here), put the extra option files in, I 'only' get 1249 songs. What did I miss?   Lien vers le commentaire Partager sur d’autres sites More sharing options...
ovenwan Posté(e) le 16 janvier Partager Posté(e) le 16 janvier This unlocker works with ongeki. run using powershell chunithm-unlock.ps1 Lien vers le commentaire Partager sur d’autres sites More sharing options...
NaBuSi Posté(e) le 22 janvier Partager Posté(e) le 22 janvier to ontroller users; While searching for a way to properly connect, I found the following link.  https://gitea.tendokyu.moe/phantomlan/ontroller-hook  All you need to do is overwrite the mu3hook.dll file into your game folder, and switch your ontroller to WINUSB mode. In my case, this wasn't connecting properly, so I ran the game with the ontroller unplugged, plugged it back in after the game was fully running, and it works perfectly fine. LED works perfectly as well, except for the side buttons (if you want to get the LED on the side buttons to work as well, see the link). I hope this helps other ontroller users. mu3hook.dll Lien vers le commentaire Partager sur d’autres sites More sharing options...
mike-T Posté(e) le 23 janvier Partager Posté(e) le 23 janvier Bonjours à tous j ai une question  j ai la version 1.40 AD de ongeki bright memories et j ai 1016 songs  comment avoir les 1400 et quelques song ? merci d avance de vos reponses Lien vers le commentaire Partager sur d’autres sites More sharing options...
laflegge Posté(e) le 25 janvier Partager Posté(e) le 25 janvier On 1/23/2024 at 7:00 PM, mike-T said: Bonjours à tous j ai une question  j ai la version 1.40 AD de ongeki bright memories et j ai 1016 songs  comment avoir les 1400 et quelques song ? merci d avance de vos reponses Assembly-CSharp.dll  I run the 1.39AD with all these options (also unlocked all the songs) but with the assembly-csharp.dll from the 'standard' segatools package I 'only' get around 1200 songs. Replacing it with an older Assembly-csharp.dll in the /mu3_data/managed folder I get around 1400 songs. This old dll will also create data_cache.bin and data_fumen_analysis_cache.bin which makes the game start faster after the first time (when it creates these files) Hope this will help you...   Lien vers le commentaire Partager sur d’autres sites More sharing options...
frosteeze Posté(e) le 27 janvier Partager Posté(e) le 27 janvier (modifié) Anyone know how to get more gacha cards if you're using ARTEMIS or the 3.40 fullpack? I know there's a Card Maker, but the teknoparrot link died and the main site doesn't have the download I see. And yes, I know someone posted on how to get it using Aqua, but with Artemis it's different.  EDIT: Also tried to do insert/update on the gacha card table and it broke the whole game...specifically, if I did an insert to aime.ongeki_user_card, game crashes when I try to get GP after swiping. Modifié le 27 janvier par frosteeze Lien vers le commentaire Partager sur d’autres sites More sharing options...
mmm7 Posté(e) le 28 janvier Partager Posté(e) le 28 janvier 3 hours ago, frosteeze said: Anyone know how to get more gacha cards if you're using ARTEMIS or the 3.40 fullpack? I know there's a Card Maker, but the teknoparrot link died and the main site doesn't have the download I see. And yes, I know someone posted on how to get it using Aqua, but with Artemis it's different.  EDIT: Also tried to do insert/update on the gacha card table and it broke the whole game...specifically, if I did an insert to aime.ongeki_user_card, game crashes when I try to get GP after swiping.  you mean how to get gacha cards for yourself to use in the game? or get them so you can pull them in card maker?  to give yourself any card using artemis: you just gotta connect to your db and update it, you were on the right track with updating ongeki_user_card, if you are crashing you probably inserted a value the game wasnt expecting, I would recommend just copy and paste an existing row you have, you should only need to change "cardId" and "skillId" per card, dont forget to save the updated db and close your connection to it before starting the game.  here is a row I have in my db that I manually added, works in game.  Lien vers le commentaire Partager sur d’autres sites More sharing options...
frosteeze PostĂ©(e) le 28 janvier Partager PostĂ©(e) le 28 janvier 6 hours ago, mmm7 said:  you mean how to get gacha cards for yourself to use in the game? or get them so you can pull them in card maker?  to give yourself any card using artemis: you just gotta connect to your db and update it, you were on the right track with updating ongeki_user_card, if you are crashing you probably inserted a value the game wasnt expecting, I would recommend just copy and paste an existing row you have, you should only need to change "cardId" and "skillId" per card, dont forget to save the updated db and close your connection to it before starting the game.  here is a row I have in my db that I manually added, works in game.   That worked, thanks! Gonna paste the code I used to get all the SSR chars from the Ongeki game itself, sans event characters:  insert into aime.ongeki_user_card (user, cardId, digitalStock, analogStock, level, maxLevel, exp, printCount, useCount, isNew, kaikaDate, choKaikaDate, skillId, isAcquired, created) select 2, osc.cardId, 5, 0, 1, 70, 0, 1, 1, 0, '2024-01-27 16:03:48.7', '2024-01-27 16:03:48.7', osc.skillId, 1, NOW() FROM aime.ongeki_static_cards osc where name like '%SSR%' and school = '奏坂ĺ¦ĺś’';  Lien vers le commentaire Partager sur d’autres sites More sharing options...
frosteeze Posté(e) le 3 février Partager Posté(e) le 3 février Anyone know why certain events doesn't give points for the reward? Like priconne one as an example gives 0 points when you play a song. The event is still technically running.  Lien vers le commentaire Partager sur d’autres sites More sharing options...
laflegge Posté(e) le 11 février Partager Posté(e) le 11 février On 1/25/2024 at 8:15 PM, laflegge said: Assembly-CSharp.dll 4.74 MB · 47 downloads  I run the 1.39AD with all these options (also unlocked all the songs) but with the assembly-csharp.dll from the 'standard' segatools package I 'only' get around 1200 songs. Replacing it with an older Assembly-csharp.dll in the /mu3_data/managed folder I get around 1400 songs. This old dll will also create data_cache.bin and data_fumen_analysis_cache.bin which makes the game start faster after the first time (when it creates these files) Hope this will help you...   I am at loss.... I am 100% absolutely sure I had around 1400 songs in ongeki 1.39 (with option files from supposed fake 1.40 version).. Today it is less then 1100 and I have not changed anything (as far as I know) Lien vers le commentaire Partager sur d’autres sites More sharing options...
coaice Posté(e) le 11 février Partager Posté(e) le 11 février On 2/3/2024 at 12:12 PM, frosteeze said: Anyone know why certain events doesn't give points for the reward? Like priconne one as an example gives 0 points when you play a song. The event is still technically running.  These 0 pt events are expired events i believe, and some event are active events that gives points Lien vers le commentaire Partager sur d’autres sites More sharing options...
frosteeze Posté(e) le 16 février Partager Posté(e) le 16 février On 2/11/2024 at 9:15 AM, coaice said: These 0 pt events are expired events i believe, and some event are active events that gives points According to the DB they are within the start and end date. They are also the same event type as the Heaven Burns Red one, which does give out event point rewards.  This is weird. Lien vers le commentaire Partager sur d’autres sites More sharing options...
Rakuel Posté(e) le 19 février Partager Posté(e) le 19 février is it now possible to do something like head to head play ?  Lien vers le commentaire Partager sur d’autres sites More sharing options...
NanamiArihara Posté(e) le 20 février Partager Posté(e) le 20 février I want to know is the artemis server required in order to show all the contents Since I am used to aqua and if it is not required then I will go for the aqua Thanks Lien vers le commentaire Partager sur d’autres sites More sharing options...
Kyaru Posté(e) le 20 février Partager Posté(e) le 20 février Le 26/01/2024 à 04:15, laflegge a dit : Assembly-CSharp.dll 4.74 Mo · 56 téléchargements  I run the 1.39AD with all these options (also unlocked all the songs) but with the assembly-csharp.dll from the 'standard' segatools package I 'only' get around 1200 songs. Replacing it with an older Assembly-csharp.dll in the /mu3_data/managed folder I get around 1400 songs. This old dll will also create data_cache.bin and data_fumen_analysis_cache.bin which makes the game start faster after the first time (when it creates these files) Hope this will help you...     Can you please upload files A078 through A082? Lien vers le commentaire Partager sur d’autres sites More sharing options...
NanamiArihara Posté(e) le 20 février Partager Posté(e) le 20 février The artemis portable is dumb The server will be broken after executing update-artemis.bat I spent an hour looking into the issue and finally figure it out Remember don't fucking update it Lien vers le commentaire Partager sur d’autres sites More sharing options...
JohnTan Posté(e) le 22 février Partager Posté(e) le 22 février (modifié) Someone hacked my account Modifié le 22 février par JohnTan Lien vers le commentaire Partager sur d’autres sites More sharing options...
TheKitBoi Posté(e) le 22 février Partager Posté(e) le 22 février (modifié) 4 hours ago, JohnTan said: Casual dating at its finest – join the leading platform for relaxed and fun encounters! Actual Women Prime Сasual Dating Finest Сasual Dating Why are you posting questionable links this shit looks like malware idk if there's a hacking spree around this fourm Modifié le 22 février par TheKitBoi Lien vers le commentaire Partager sur d’autres sites More sharing options...
JohnTan Posté(e) le 22 février Partager Posté(e) le 22 février Someone hacked my account Lien vers le commentaire Partager sur d’autres sites More sharing options...
TheKitBoi Posté(e) le 22 février Partager Posté(e) le 22 février 50 minutes ago, JohnTan said: Someone hacked my account ok Lien vers le commentaire Partager sur d’autres sites More sharing options...
harutasaaa Posté(e) le 24 février Partager Posté(e) le 24 février Break free from traditional dating norms and embrace the best in casual connections. True Females Super Сasual Dating Superlative Сasual Dating Lien vers le commentaire Partager sur d’autres sites More sharing options...
gofix Posté(e) le 25 février Partager Posté(e) le 25 février Experience carefree connections with the top-rated site for casual dating adventures. Verified Maidens Superlative Сasual Dating Super Сasual Dating Lien vers le commentaire Partager sur d’autres sites More sharing options...
wont0309 Posté(e) le 27 février Partager Posté(e) le 27 février (modifié) can i get available link? i can't use previous link i solved it thank you Modifié le 27 février par wont0309 Lien vers le commentaire Partager sur d’autres sites More sharing options...
Shigahara Posté(e) le 29 février Partager Posté(e) le 29 février Because I can't go back to Japan yet. I repurposed my unused pc into a O.N.G.E.K.I machine and about to build the nageki controller with SVDX buttons. Got O.N.G.E.K.I Bright Memory running the first time Got Aqua Running (with hiccups) but can access the aqua web UI ALLNET Auth = BAD as always even when I booted Aqua first Checked if everything is good and working, yes they were. Aime: Should I just use a random number or use my "existing" aime card (I have the white one)  OS: Windows 11 if that's an issue  Also How do I add more credits without Closing my game every time? What did I do wrong here? can someone tell me if they have the same issue. Lien vers le commentaire Partager sur d’autres sites More sharing options...
mmm7 Posté(e) le 29 février Partager Posté(e) le 29 février 17 hours ago, Shigahara said: Because I can't go back to Japan yet. I repurposed my unused pc into a O.N.G.E.K.I machine and about to build the nageki controller with SVDX buttons. Got O.N.G.E.K.I Bright Memory running the first time Got Aqua Running (with hiccups) but can access the aqua web UI ALLNET Auth = BAD as always even when I booted Aqua first Checked if everything is good and working, yes they were. Aime: Should I just use a random number or use my "existing" aime card (I have the white one)  OS: Windows 11 if that's an issue  Also How do I add more credits without Closing my game every time? What did I do wrong here? can someone tell me if they have the same issue.   I havent used Aqua in a long time for ONGEKI so cant help you much there, I would just say check all your IPs are correct in both ongeki and aqua. if all else fails switch to Artemis. as for the AIME card number, it doesnt matter, just enter random 20 numbers. there are ways to have unlimited "points" in the game I think, but I just add more coins every time i run out, it should ask you if you want to continue when your points reach 0. if not, there might be a cab setting you need to change. Lien vers le commentaire Partager sur d’autres sites More sharing options...
Shigahara Posté(e) le 1 mars Partager Posté(e) le 1 mars (modifié) 3 hours ago, mmm7 said:  I haven't used Aqua in a long time for ONGEKI so can't help you much there, I would just say check all your IPs are correct in both ongeki and aqua. if all else fails switch to Artemis. as for the AIME card number, it doesn't matter, just enter random 20 numbers. there are ways to have unlimited "points" in the game I think, but I just add more coins every time i run out, it should ask you if you want to continue when your points reach 0. if not, there might be a cab setting you need to change. I do have issues with Artemis, can you please tell what Did i do wrong. I followed the readme and configured the IPs just like the segatools have. Thanks~  Edit 1: I also enabled freeplay now I technically have "Unlimited" credits and GP Modifié le 1 mars par Shigahara Lien vers le commentaire Partager sur d’autres sites More sharing options...
mmm7 Posté(e) le 1 mars Partager Posté(e) le 1 mars (modifié) 14 hours ago, Shigahara said: I do have issues with Artemis, can you please tell what Did i do wrong. I followed the readme and configured the IPs just like the segatools have. Thanks~  Edit 1: I also enabled freeplay now I technically have "Unlimited" credits and GP  never used artemis-portable before, I have the regular version installed. looking thru the docs on artemis-portable, did you build the project? the instructions at the bottom of the README Modifié le 1 mars par mmm7 Lien vers le commentaire Partager sur d’autres sites More sharing options...
wont0309 Posté(e) le 1 mars Partager Posté(e) le 1 mars (modifié) On 1/16/2024 at 4:59 PM, ovenwan said: This unlocker works with ongeki. run using powershell chunithm-unlock.ps1 4.94 kB · 34 downloads how to use this?? i placed it in option folder and run by powershell but it isnt' even start. or is there any other way to unlock all items and card?? Modifié le 1 mars par wont0309 Lien vers le commentaire Partager sur d’autres sites More sharing options...
Shigahara Posté(e) le 2 mars Partager Posté(e) le 2 mars 9 hours ago, mmm7 said:  never used artemis-portable before, I have the regular version installed. looking thru the docs on artemis-portable, did you build the project? the instructions at the bottom of the README Oh do I need to build it myself, I do apologize if i a asking a lot of question. How do I build it Exactly? Lien vers le commentaire Partager sur d’autres sites More sharing options...
mmm7 Posté(e) le 2 mars Partager Posté(e) le 2 mars 3 hours ago, Shigahara said: Oh do I need to build it myself, I do apologize if i a asking a lot of question. How do I build it Exactly?  open a command prompt, change directory to artemis-portable folder, then run the command at the bottom of that readme on that site. Lien vers le commentaire Partager sur d’autres sites More sharing options...
frosteeze Posté(e) le 7 mars Partager Posté(e) le 7 mars On 3/1/2024 at 9:49 PM, Shigahara said: Oh do I need to build it myself, I do apologize if i a asking a lot of question. How do I build it Exactly?  There is also an artemis.txt that you need to follow on a folder in a higher level than the one in your screenshot. Lien vers le commentaire Partager sur d’autres sites More sharing options...
LetsGetBusy Posté(e) le 8 mars Partager Posté(e) le 8 mars Casual dating at its finest – join the leading platform for relaxed and fun encounters! Verified Ladies Unsurpassed Сasual Dating Optimal Сasual Dating Lien vers le commentaire Partager sur d’autres sites More sharing options...
Kitasa16 Posté(e) le 9 mars Partager Posté(e) le 9 mars im on 1.39 and running on aqua local server. how do i update without loosing my save? do i just replace the options folder? found these files somewhere, do anyone know how to use these? or are these even useful? Lien vers le commentaire Partager sur d’autres sites More sharing options...
Us3rnam3 Posté(e) le 10 mars Partager Posté(e) le 10 mars (modifié) I've tried three different installs and can't seem to get Ongeki to even start booting. The 1.39 pack launches a CMD window and a game window, but the game window is black and the CMD window just has a flashing cursor. The 1.40 pack doesn't even get a game window and just gives me the error "mu3hook.dll: DLL failed to load inside target process" before terminating in CMD. I also combined the packages for 1.35-1.39 from the Pixeldrain archive and followed the SEGAguide, but that gave me the same error as the 1.40 pack.  Update: Using the mu3hook.dll for the ontroller allows it to get further, but breaks since I don't actually have an ontroller  Update 2: After hours of troubleshooting, I've finally made progress. Getting the game to start booting and get past the black screen required installing a vcredist AIO from https://github.com/abbodi1406/vcredist Getting past the game initializing prompt required installing DirectX End-User runtimes from https://www.microsoft.com/en-gb/download/details.aspx?id=35 I now have some networking errors to work out, but the game did boot to the title screen. Modifié le 10 mars par Us3rnam3 Lien vers le commentaire Partager sur d’autres sites More sharing options...
Ryuu139 Posté(e) le 31 juillet Partager Posté(e) le 31 juillet does anyone know how to get out of this black screen? I changed the line under the allnet_accounting to false in config_common.json, but it doesn't want to move out of the screen. Help plsss Lien vers le commentaire Partager sur d’autres sites More sharing options...
ZVY Posté(e) le 10 août Partager Posté(e) le 10 août does anyone have act3 1.45 resource?thanks. Lien vers le commentaire Partager sur d’autres sites More sharing options...
Messages recommandés
Veuillez vous connecter pour commenter
Vous pourrez laisser un commentaire après vous êtes connecté.
Connectez-vous maintenant