Search results

  1. Morohara

    Extract "name" from FurnitureData and Insert into "catalog_items" Arcturus Emulator

    I've made 2 scripts that already do what you've mentioned. all 3 use python 3.11.3 This 3rd script will rename any file starting with "xyz" to "whatever you want keep blank for nothing." from importlib.metadata import files import os path = r"your file directory here." files = [] for...
  2. Morohara

    ARC Nitro SQL & FurnitureData Generators.

    Releasing both a FurnitureData and SQL generator for Arcturus DB. Make sure to have python 3.11.3 installed both are scripts so will need to be ran in console. SQL Generator: import os try: with open("test.txt", "a") as f: pass except FileNotFoundError: with open("test.txt"...
  3. Morohara

    How Strong Is Your Computing Device? (NovaBench)

    I have a 3070TI no idea why it has intel XE graphics.
  4. Morohara

    Are the days of our beloved private servers over?

    Appreciate the kind words on the staff side of it, that was mainly me. The discord lockdown wasn't my idea i only wanted to lock certain channels inside of the discord that would require user verification. (this was after I had left.) Retros nowadays don't have the connection between staff and...
  5. Morohara

    Are the days of our beloved private servers over?

    Co-owned a hotel that went from 5-10 users to 40-50 users. (Youhab) The community isn't divided, there just isn't really a place that makes users feel safe. "custom features" side of retros dont actually matter at all. We made people feel involved in the future of the retro such as the economy...
  6. Morohara

    COVID-19 Booster Jab

    The Covid vaccine never went through the same trials as other vaccines. Source; https://wellcome.org/news/quick-safe-covid-vaccine-development on average it takes anywhere from 2-15 years. Comparing cancer to covid is just mind-blowing. Cancer is a mutation in your cells which your body (when a...
  7. Morohara

    [Help wanted] How to read game_data.sav file in C#

    Save data for games in majority of cases are saved in hexadecimal so; 1a 6f 45 40 ect. All save editors do is alter the bytes. Let's say a tutorial for a game is 1a and if completed tutorial it would change to a 1b the game would call on the save data and the portion of code and from the byte...
  8. Morohara

    Currently being DDossed

    Layer 7 attacks don't attack the vps directly but more of the program that is hosting the files eg; IIS/Apache. You need to filter out the requests that your receiving, you should be able to do this on the iis settings page by only allowing connection requests x amount of times before it...
  9. Morohara

    BrainCMS | Credits currency is not changing while buying stuff

    Someone already stated that duckets and diamonds are pulled from user_currency and credits from the users table.
  10. Morohara

    BrainCMS | Credits currency is not changing while buying stuff

    Cms is pulling information from the users table when it should be pulling from user_currency. If what they have typed is true regarding to other posts you need to direct the cms to pull from the user_currency table not the users table. Ill reiterate abit more. If the users information eg...
  11. Morohara

    Could someone please tell me how to protect my habbo hotel from SQL injection attacks?

    SQL injection isn't normally EMU side. (there are other attacks that used to involve attacking an emu directly but the majority of these have already been fixed in updated emus.) There are different type of injection attacks you have the standard injection method where you query yourself or...
  12. Morohara

    need helpt with brain cms

    Go to your database you'll see a query option at the top sorry haven't used navicat in a while click that insert that query. For the PHP error try updating your php version i believe you have the wrong version.
  13. Morohara

    need helpt with brain cms

    Turn strict mode off for the db errors. Run this query; SET @@global.sql_mode= ''; Also the error is pretty bog standard it does say whats wrong, try posting the file code via pastebin. instead of just pasting an error.
  14. Morohara

    Flooding website.

    Deny the request. Check your apache log files the ip(s) should be in there. The attacks should look like GET requests inside of the file all the requests should be asking for the same file do not block ones that are requesting SWFS which you can read by reading the full line. Normally they'll...
  15. Morohara

    Favorite M&M?

    M&m crispy are really nice probably my favourite.
  16. Morohara

    Help needed.

    Try bringing up the MySQL console and logging into it with the username/password.
  17. Morohara

    Help needed.

    Line 7 in that file is: $dbh = new PDO('mysql:host='.$db['host'].':'.$db['port'].';dbname='.$db['db'].'', $db['user'], $db['pass']); This line is basically asking for information from brain-config.php so something is wrong in there. Make sure you're username and password for the MySQL server...
  18. Morohara

    Nitro x Plus Emulator.

    His post was confusing and if you check some of the packet ids they conflict as using the same ID. Copy and paste this https://github.com/dank074/PlusEMU/blob/nitro-ws/Communication/Packets/Incoming/ClientPacketHeader.cs back into the file. The error posted was one of the packets was using 4000...
  19. Morohara

    Nitro x Plus Emulator.

    Can you upload the file?
  20. Morohara

    Nitro x Plus Emulator.

    Edit changed what i said delete line 225 and rebuild the solution. This error could have been fixed on you're own. If you look at public void RegisterNames() { _packetNames.Add(ClientPacketHeader.GetClientVersionMessageEvent, "GetClientVersionEvent")...
Top