Plusemulator :about bug

Results 1 to 9 of 9
  1. #1
    Member timpegel is offline
    MemberRank
    Nov 2015 Join Date
    61Posts

    Plusemulator :about bug

    Hi ragezone,

    My retro works fine, but there's one thing I can't get fixed. Everytime I want to see the about/credits, I get this weird message:

    Screenshot by Lightshot


    I didn't change any of the codes inside the Infocommand.cs. I've checked it with another infocommand.cs and they are exactly the same, how can I fix this?

    - - - Updated - - -

    Somebody?


  2. #2
    Member timpegel is offline
    MemberRank
    Nov 2015 Join Date
    61Posts

    Re: Plusemulator :about bug

    nobody?

  3. #3
    dont judge me Wuzix is offline
    MemberRank
    Sep 2013 Join Date
    C:\inetpub\wwwLocation
    403Posts

    Re: Plusemulator :about bug

    Just disable :about then. Problem solved my friend.

  4. #4
    :joy: Jonteh is offline
    MemberRank
    Apr 2007 Join Date
    New York, USALocation
    3,375Posts

    Re: Plusemulator :about bug

    My guess is missing entry in server_locale table.

  5. #5
    Member timpegel is offline
    MemberRank
    Nov 2015 Join Date
    61Posts

    Re: Plusemulator :about bug

    @Jonteh

    I worked with the same DB, I've figured out that when I use the "PRODUCTION-201601012205-226667486" production, the about works fine. When I use my 'PRODUCTION-201602082203-712976078' the about starts to bug. Do I need to change something in the emulator?

  6. #6
    Valued Member BeginOfEnd is offline
    MemberRank
    Dec 2015 Join Date
    The NetherlandsLocation
    103Posts

    Re: Plusemulator :about bug

    Quote Originally Posted by timpegel View Post
    @Jonteh

    I worked with the same DB, I've figured out that when I use the "PRODUCTION-201601012205-226667486" production, the about works fine. When I use my 'PRODUCTION-201602082203-712976078' the about starts to bug. Do I need to change something in the emulator?
    Could you post your InfoCommand?

  7. #7
    Member timpegel is offline
    MemberRank
    Nov 2015 Join Date
    61Posts

    Re: Plusemulator :about bug

    Quote Originally Posted by BeginOfEnd View Post
    Could you post your InfoCommand?
    Sure. Guess it isn't the file it self.

    using System;using System.Linq;using System.Text;using System.Data;using System.Collections.Generic;using Plus.Communication.Packets.Outgoing.Users;using Plus.Communication.Packets.Outgoing.Notifications;using Plus.Communication.Packets.Outgoing.Handshake;using Plus.Communication.Packets.Outgoing.Quests;using Plus.HabboHotel.Items;using Plus.Communication.Packets.Outgoing.Inventory.Furni;using Plus.Communication.Packets.Outgoing.Catalog;using Plus.HabboHotel.Quests;using Plus.HabboHotel.Rooms;using System.Threading;using Plus.HabboHotel.GameClients;using Plus.Communication.Packets.Outgoing.Rooms.Avatar;using Plus.Communication.Packets.Outgoing.Pets;using Plus.Communication.Packets.Outgoing.Messenger;using Plus.HabboHotel.Users.Messenger;using Plus.Communication.Packets.Outgoing.Rooms.Polls;using Plus.Communication.Packets.Outgoing.Rooms.Notifications;using Plus.Communication.Packets.Outgoing.Availability;using Plus.Communication.Packets.Outgoing;using Plus.Communication.Packets.Outgoing.Rooms.Polls.Questions;namespace Plus.HabboHotel.Rooms.Chat.Commands.User{ class InfoCommand : IChatCommand { public string PermissionRequired { get { return "command_info"; } } public string Parameters { get { return ""; } } public string Description { get { return "Informatie waar iedereen van houdt!"; } } public void Execute(GameClient Session, Room Room, string[] Params) { TimeSpan Uptime = DateTime.Now - PlusEnvironment.ServerStarted; int OnlineUsers = PlusEnvironment.GetGame().GetClientManager().Count; int RoomCount = PlusEnvironment.GetGame().GetRoomManager().Count; Session.SendMessage(new RoomNotificationComposer("Powered by PlusEmulator", "<b>Credits</b>:\n" + "Sledmore (Developer)\n" + "123 (Developer)\n" + "Joopie (Encryption)\n" + "Tweeney (PlusEMU)\n" + "Butterfly Emulator developers\n" + "<b>Informatie over de Emulator op dit moment</b>:\n" + "Online Gebruikers: " + OnlineUsers + "\n" + "Kamers geladen: " + RoomCount + "\n" + "Tijd online: " + Uptime.Days + " dagen, " + Uptime.Hours + " uren en " + Uptime.Minutes + " minuten.\n\n" + } }}


    or


    Screenshot by Lightshot
    ( I know it is a non-saved file. )

  8. #8
    Valued Member BeginOfEnd is offline
    MemberRank
    Dec 2015 Join Date
    The NetherlandsLocation
    103Posts

    Re: Plusemulator :about bug

    Try adding this: , "plus", "")); and remove the "+".
    Behind: "Tijd online: " + Uptime.Days + " dagen, " + Uptime.Hours + " uren en " + Uptime.Minutes + " minuten.\n\n"+} }}

    So it should be something like this: "Tijd online: " + Uptime.Days + " dagen, " + Uptime.Hours + " uren en " + Uptime.Minutes + " minuten.\n\n", "plus", ""));} }}

  9. #9
    Member timpegel is offline
    MemberRank
    Nov 2015 Join Date
    61Posts

    Re: Plusemulator :about bug

    Loll dude thanks ! fixed my problem, by @BeginOfEnd. ( dankje maat )



Advertisement