PlusEMU [Custom Version]

Page 2 of 4 FirstFirst 1234 LastLast
Results 16 to 30 of 49
  1. #16
    Account Upgraded | Title Enabled! HotelMaker is offline
    MemberRank
    Dec 2012 Join Date
    288Posts

    Re: PlusEMU [Custom Version]

    this emu using product: PRODUCTION-201607262204-86871104 and revcms works for this

  2. #17
    Apprentice Valentindu53210 is offline
    MemberRank
    Feb 2015 Join Date
    Argentré, PaysLocation
    9Posts

    Re: PlusEMU [Custom Version]

    Any have a full databse (achievements, users, catalog, etc. tables) for this emu ?

  3. #18
    Enthusiast Berttos is offline
    MemberRank
    Oct 2016 Join Date
    GermanyLocation
    27Posts

    Re: PlusEMU [Custom Version]

    Quote Originally Posted by Valentindu53210 View Post
    Any have a full databse (achievements, users, catalog, etc. tables) for this emu ?
    Download this PlusEMU
    Its Emu, SWF and Database. (ignore the Emu)

  4. #19
    Proficient Member Articuz is offline
    MemberRank
    Jan 2016 Join Date
    157Posts

    Re: PlusEMU [Custom Version]

    Nice, taking credz and shit over my emu.
    Well worst coded emu i ever did and credz to us developers on "futureh" who did it. @SystemSequence @Articuz

    And for production we used 201604 swfs, not 07. Maybe he updated to 201607 only, he didn't do anything more.

    When little Jaytechnos deletes credz:
    Screenshot by Lightshot
    Bruh...Jay you're a lil bish: Screenshot by Lightshot you only take peoples shit not doing shit.
    Last edited by Articuz; 08-12-16 at 12:20 PM.

  5. #20
    Apprentice kevinbp is offline
    MemberRank
    Jan 2010 Join Date
    10Posts

    Re: PlusEMU [Custom Version]

    Quote Originally Posted by Articuz View Post
    Nice, taking credz and shit over my emu.
    Well worst coded emu i ever did and credz to us developers on "futureh" who did it. @SystemSequence @Articuz

    And for production we used 201604 swfs, not 07. Maybe he updated to 201607 only, he didn't do anything more.

    When little Jaytechnos deletes credz:
    Screenshot by Lightshot
    Bruh...Jay you're a lil bish: Screenshot by Lightshot you only take peoples shit not doing shit.
    Built of SirioEMU, commands are almost the same as from futureh. (Didn't have the emu left, so i only had some commands left that was sent trough skype.) #CryMeARiverOfSaltyWater

  6. #21
    Proficient Member Articuz is offline
    MemberRank
    Jan 2016 Join Date
    157Posts

    Re: PlusEMU [Custom Version]

    Quote Originally Posted by kevinbp View Post
    Built of SirioEMU, commands are almost the same as from futureh. (Didn't have the emu left, so i only had some commands left that was sent trough skype.) #CryMeARiverOfSaltyWater
    #IWillCryYouARiverOfSaltyWater coz you're shit, stafflogin, prison, kickwars, badgewars, takebadgestaff all those shitty commands is ours.
    Bruh commands doesn't look like the same if they got the same codes, learn your stuff.

  7. #22
    Enthusiast Leon Retro is offline
    MemberRank
    Dec 2014 Join Date
    43Posts

    Re: PlusEMU [Custom Version]

    Screenshoots? Is this including camera?

    Anyway, it sounds very good!

  8. #23
    Account Upgraded | Title Enabled! HotelMaker is offline
    MemberRank
    Dec 2012 Join Date
    288Posts

    Re: PlusEMU [Custom Version]

    no camera in this

  9. #24
    Member li4m is offline
    MemberRank
    May 2013 Join Date
    75Posts

    Re: PlusEMU [Custom Version]

    Looks like it has everything that was already in the original release, with a bunch of useless commands added.

  10. #25
    Enthusiast Stephen Surtees is offline
    MemberRank
    Sep 2013 Join Date
    26Posts

    Re: PlusEMU [Custom Version]

    can some one release this with all the updates including all swfs please as mine is not working on this every time i open catalog i dc please include sql

  11. #26
    The **** Keiz is offline
    MemberRank
    Nov 2015 Join Date
    238Posts

    Re: PlusEMU [Custom Version]

    Just noticed 2 slight irregularities while quickly looking into some code.

    1.
    Spoiler:

    You do know a void can be returned right? Or that !bool checks whether the bool is false?
    For example in your badgewars command, you keep checking everything 4 times..

    Code:
    
    
    Code:
                if (Room.badgeWar == true)
                {
                    Session.SendWhisper("Badge Wars is activated!");
                }
    
    
                if (Room.OwnerId != Session.GetHabbo().Id)
                {
                    Session.SendWhisper("You can only start this in your own room!");
                }
    
    
                if (Room.badgeWar && Session.GetHabbo().Id == Room.OwnerId)
                {
                    Room.badgeWar = false;
    
    
                    foreach (RoomUser RoomUser in Room.GetRoomUserManager().GetRoomUsers())
                    {
                        RoomUser.GetClient().SendNotification("Badge Wars is not activated!");
                        RoomUser.ApplyEffect(0);
                    }
                }
                else if (Room.badgeWar == false && Session.GetHabbo().Id == Room.OwnerId || Room.kickwar == false && Session.GetHabbo().Rank >= 3)
                {
    (Btw when you copied this code from the kickwar command, you forgot to edit this little bastard:
    Room.kickwar == false && Session.GetHabbo().Rank >= 3

    Ofcourse this is completely up to you, but I would make it this way:
    Code:
                if(Room.OwnerId != Session.GetHabbo().Id && Session.GetHabbo().Rank < 3)
                {
                    Session.SendWhisper("You can only start this in your own room!");
                    return; 
                }
    
    
                if (Room.badgeWar)
                {
                    Room.badgeWar = false;
    
    
                    foreach (RoomUser RoomUser in Room.GetRoomUserManager().GetRoomUsers())
                    {
                        RoomUser.GetClient().SendNotification("Badge Wars is not activated!");
                        RoomUser.ApplyEffect(0);
                    }
                }
                else
                {


    2.
    Spoiler:

    Once again completely up to you, but I highly recommend you not to use Thread Sleeping in commands..
    Example:
    Code:
                    Session.GetHabbo().Credits = Session.GetHabbo().Credits -= 1000;
                    Session.SendMessage(new CreditBalanceComposer(Session.GetHabbo().Credits));
                    roomUserByHabbo.GetClient().SendWhisper("You Just purchased a Blunt for 1000c!");
                    Thread.Sleep(1000);
                    Room.SendMessage((IServerPacket)new ChatComposer(roomUserByHabbo.VirtualId, "*Pulls out a blunt and gets lighter*", 0, 6), false);
                    Thread.Sleep(2000);
                    Room.SendMessage((IServerPacket)new ChatComposer(roomUserByHabbo.VirtualId, "*Lights the blunt and takes a deeeeeep puff*", 0, 6), false);
                    Thread.Sleep(2000);
                    roomUserByHabbo.ApplyEffect(53);
                    Thread.Sleep(2000);


    The ideas are really original and users must like them!

  12. #27
    Enthusiast Stephen Surtees is offline
    MemberRank
    Sep 2013 Join Date
    26Posts

    Re: PlusEMU [Custom Version]

    any one got full swfs and right links for revcms please

  13. #28
    Novice ClipperinoS is offline
    MemberRank
    Dec 2016 Join Date
    1Posts

    Re: PlusEMU [Custom Version]

    Good evening...
    Please let you complete me telling me the package that CMS could use? Thank you so much!
    However beautiful Emulator compliments! :)

  14. #29
    git bisect -m ovflowd is offline
    MemberRank
    Sep 2011 Join Date
    2,191Posts

    Re: PlusEMU [Custom Version]

    @Keiz, yeah, Thread sleep in commands isn't good. Some big irregularities on this..

  15. #30
    Apprentice kevinbp is offline
    MemberRank
    Jan 2010 Join Date
    10Posts

    Re: PlusEMU [Custom Version]

    Quote Originally Posted by ClipperinoS View Post
    Good evening...
    Please let you complete me telling me the package that CMS could use? Thank you so much!
    However beautiful Emulator compliments! :)
    Use RevCMS.



Page 2 of 4 FirstFirst 1234 LastLast

Advertisement