Lag when i clic on all furnis in a room. (PlusEMU)

Results 1 to 3 of 3
  1. #1
    Member Skulvy is offline
    MemberRank
    Nov 2008 Join Date
    Pussy landLocation
    32Posts

    Lag when i clic on all furnis in a room. (PlusEMU)

    Hi,

    i have an anoying lag, when i clic on a furni, i have a little lag.
    When u walk on a furni, it's like teleport mode.

    It's a catalogue problem, so if someone have a fixed one plz, send it to me.

    (sorry for my fckng english)
    Last edited by Skulvy; 10-08-14 at 08:02 PM.


  2. #2
    Member Skulvy is offline
    MemberRank
    Nov 2008 Join Date
    Pussy landLocation
    32Posts

    Re: Lag when i clic on all furnis in a room. (PlusEMU)

    Well... up.

  3. #3
    Elite Member Troll Hotel is offline
    Member +Rank
    Nov 2012 Join Date
    SlovakiaLocation
    144Posts

    Re: Lag when i clic on all furnis in a room. (PlusEMU)

    Credits to Spot ify
    replace the whole GetCatalogIndexEvents.cs
    Code:
    using Silverwave.Communication.Packets.Outgoing.Catalog;
    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Text;
    
    namespace Silverwave.Communication.Packets.Incoming.Catalog
    {
        class GetCatalogIndexEvent : IPacketEvent
        {
            public void Parse(HabboHotel.GameClients.GameClient Session, Messages.ClientMessage Packet)
            {
                string check = Packet.PopFixedString();
                int Sub = 0;
                if (check != "BUILDERS_CLUB")
                {
                    if (Session.GetHabbo().GetSubscriptionManager().HasSubscription)
                    {
                        Sub = Session.GetHabbo().GetSubscriptionManager().GetSubscription().SubscriptionId;
                    }
    
                    Session.SendMessage(new CatalogIndexComposer(Session, SilverwaveEnvironment.GetGame().GetCatalog().GetPages(), Sub));
                }
            }  
        }
    }
    Last edited by Troll Hotel; 12-08-14 at 01:17 PM. Reason: forgot something



Advertisement