NovaEMU ~ habbod ~ Butterfly edit ~ Stable ~ Newest UI

Page 5 of 9 FirstFirst 123456789 LastLast
Results 61 to 75 of 130
  1. #61
    Account Upgraded | Title Enabled! AWA is offline
    MemberRank
    Feb 2008 Join Date
    1,320Posts

    Re: NovaEMU ~ habbod ~ Butterfly edit ~ Stable ~ Newest UI

    Just like a lot of other Butterfly-edits, this emu is vulnerable to at least one major exploit..

  2. #62
    Account Upgraded | Title Enabled! Chapo is offline
    MemberRank
    Jul 2010 Join Date
    United StatesLocation
    944Posts

    Re: NovaEMU ~ habbod ~ Butterfly edit ~ Stable ~ Newest UI

    IMPORTANT EXPLOIT FIX!

    AWA is right, there's one major exploit. So after checking every file I found out:

    Find query in AddANewWordToRoomFilterMessageComposer.cs:
    dbClient.setQuery("INSERT INTO room_filter (roomid,word) VALUES (" + FlatId + "," + FilterWord + ")");
    Replace query with:
    dbClient.setQuery("INSERT INTO room_filter (roomid,word) VALUES (" + FlatId + ",@word)");
    dbClient.addParameter("word", FilterWord);
    dbClient.runQuery();
    Find query in AddANewWordToRoomFilterMessageComposer.cs:
    dbClient.runFastQuery("DELETE FROM room_filter WHERE roomid = " + FlatId + " AND word = " + FilterWord + " LIMIT 1;");
    Replace query with:
    dbClient.setQuery("DELETE FROM room_filter WHERE roomid = " + FlatId + " AND word = @word LIMIT 1;");
    dbClient.addParameter("word", FilterWord);
    dbClient.runQuery();
    Or download full Nova (Exploit fix included, correct db, no errors for teh nubs)

    Download

  3. #63
    Gaby is offline
    MemberRank
    Apr 2013 Join Date
    Viva HollandiaLocation
    1,607Posts

    Re: NovaEMU ~ habbod ~ Butterfly edit ~ Stable ~ Newest UI

    For some reason I really doubt @Ryan is doing this with all good intentions, no offense!!! Thanks for the release, I hope people will use this instead azure. If it doesn't contain a million leaks of course.

  4. #64
    iiiiiiiiiii Brought is offline
    MemberRank
    Aug 2013 Join Date
    469Posts

    Re: NovaEMU ~ habbod ~ Butterfly edit ~ Stable ~ Newest UI

    Quote Originally Posted by Ryan View Post
    IMPORTANT EXPLOIT FIX!

    AWA is right, there's one major exploit. So after checking every file I found out:

    Find query in AddANewWordToRoomFilterMessageComposer.cs:


    Replace query with:


    Find query in AddANewWordToRoomFilterMessageComposer.cs:


    Replace query with:


    Or download full Nova (Exploit fix included, correct db, no errors for teh nubs)

    Download
    I've updated the thread accordingly. Thank you for this, Ryan!

  5. #65
    Valued Member Warm is offline
    MemberRank
    Jun 2014 Join Date
    117Posts

    Re: NovaEMU ~ habbod ~ Butterfly edit ~ Stable ~ Newest UI

    @Ryan is this a x64 Emulator?????

  6. #66
    Mr VPS - Cheap VPS Server NOC is offline
    MemberRank
    Sep 2011 Join Date
    Liverpool, UKLocation
    841Posts

    Re: NovaEMU ~ habbod ~ Butterfly edit ~ Stable ~ Newest UI

    Thanks for the updated release, works great on the demo :)

    Here is a temporary fix for when you try to create a room and d.c

    in your Navigator.cs

    Find

    if (dPrivCats != null)
    {
    foreach (DataRow Row in dPrivCats.Rows)
    _privateCategories.Add((int) Row["id"], new FlatCat((int)Row["id"], (string)Row["caption"], (int)Row["min_rank"], 0, (uint)Row["user_max"]));
    }
    Replace with

    if (dPrivCats != null)
    {
    foreach (DataRow Row in dPrivCats.Rows)
    _privateCategories.Add((int) Row["id"], new FlatCat((int)Row["id"], (string)Row["caption"], (int)Row["min_rank"], 0,0));
    }
    Thanks to @KyleeIsProzZ working with me to create the temp fix
    Last edited by NOC; 09-09-15 at 11:41 PM.

  7. #67
    Member ShowStopper is offline
    MemberRank
    Sep 2015 Join Date
    58Posts

    Re: NovaEMU ~ habbod ~ Butterfly edit ~ Stable ~ Newest UI

    Quote Originally Posted by Johno View Post
    Thanks for the updated release, works great on the demo :)

    Here is a temporary fix for when you try to create a room and d.c

    in your Navigator.cs

    Find



    Replace with



    Thanks to @KyleeIsProzZ working with me to create the temp fix
    Thanks for this. Will look into it after I finish setting this up. I had a SQL error and I just grabbed the right table to stop the error and I don't get it anymore did you do that? Hence maybe that's why its disconnecting.

  8. #68
    Account Upgraded | Title Enabled! PR0 is offline
    MemberRank
    Mar 2007 Join Date
    1,207Posts

    Re: NovaEMU ~ habbod ~ Butterfly edit ~ Stable ~ Newest UI

    I check into ragezone every once in a while for something like this. I'm actually going to create a hotel again! :)

    What CMS does this use?

  9. #69
    iiiiiiiiiii Brought is offline
    MemberRank
    Aug 2013 Join Date
    469Posts

    Re: NovaEMU ~ habbod ~ Butterfly edit ~ Stable ~ Newest UI

    Quote Originally Posted by PR0 View Post
    I check into ragezone every once in a while for something like this. I'm actually going to create a hotel again! :)

    What CMS does this use?
    You can use any CMS, you may just need to gather some lines/tables from the original CMS database but yeah you should be set. I've used Rev, uber, and ButterflyCMS with this so far and they've all worked fine. If you have issues whilst getting a CMS to work with the EMU, a lot of people are providing support on it in the Habbo Help section or you can PM @Ryan!

  10. #70
    Member ShowStopper is offline
    MemberRank
    Sep 2015 Join Date
    58Posts

    Re: NovaEMU ~ habbod ~ Butterfly edit ~ Stable ~ Newest UI

    Quote Originally Posted by Brought View Post
    You can use any CMS, you may just need to gather some lines/tables from the original CMS database but yeah you should be set. I've used Rev, uber, and ButterflyCMS with this so far and they've all worked fine. If you have issues whilst getting a CMS to work with the EMU, a lot of people are providing support on it in the Habbo Help section or you can PM @Ryan!
    Correct me if I'm wrong but don't Rev use a different SSO system? It pulls from users table instead of user_tickets.

  11. #71
    iiiiiiiiiii Brought is offline
    MemberRank
    Aug 2013 Join Date
    469Posts

    Re: NovaEMU ~ habbod ~ Butterfly edit ~ Stable ~ Newest UI

    Quote Originally Posted by ShowStopper View Post
    Correct me if I'm wrong but don't Rev use a different SSO system? It pulls from users table instead of user_tickets.
    Minor edits are needed on most CMS to use this EMU. Choose one with minimal editing, based on your own preference, and edit it according to your skill.

  12. #72
    Mr VPS - Cheap VPS Server NOC is offline
    MemberRank
    Sep 2011 Join Date
    Liverpool, UKLocation
    841Posts

    Re: NovaEMU ~ habbod ~ Butterfly edit ~ Stable ~ Newest UI


  13. #73
    iiiiiiiiiii Brought is offline
    MemberRank
    Aug 2013 Join Date
    469Posts

    Re: NovaEMU ~ habbod ~ Butterfly edit ~ Stable ~ Newest UI

    Quote Originally Posted by Johno View Post
    Updated the OP with the link also.

    Thank you, Johno!

  14. #74
    iiiiiiiiiii Brought is offline
    MemberRank
    Aug 2013 Join Date
    469Posts

    Re: NovaEMU ~ habbod ~ Butterfly edit ~ Stable ~ Newest UI

    Quote Originally Posted by CineXMike View Post
    connectivity.dll is missing
    If you've followed the information provided in the OP then you would realize that you must download specific programs and debug the source before it will work properly. I will not entertain people whom are unaware how to setup simple emulators on this thread. If you are having issues, you may post them in the Habbo Help section.

    OT Update: I am currently working with someone whom may be further developing this EMU. I will keep this thread updated if a Development is created in regards.

  15. #75
    Loyalty Vaulient is offline
    MemberRank
    May 2012 Join Date
    MalaysiaLocation
    1,796Posts

    Re: NovaEMU ~ habbod ~ Butterfly edit ~ Stable ~ Newest UI

    Got it working on revcms . Works like a charm . I'm thinking of maybe bringing up habprime again. Maybe.

    However , the emu is fine . +1 recommendation



Advertisement