Working on a new Comand for Diamonds (Crystals) PlusEMU R2

Results 1 to 2 of 2
  1. #1
    Valued Member iTzScronnie is offline
    MemberRank
    Sep 2013 Join Date
    104Posts

    Working on a new Comand for Diamonds (Crystals) PlusEMU R2

    So I'm wanting to do Mass Diamonds and I'm using the Mass Credits command to write it up. I'm gonna need some help doing this. Can someone help? I need help just rewriting this to use it.

    Spoiler:
    Code:
     #region Mass Credits (:masscredits)
                    case "masscredits":
                        {
                            if (Session.GetHabbo().HasCmd("masscredits"))
                            {
                                if (Params.Length == 1)
                                {
                                    Session.SendNotif("You need to enter an amount!");
                                    return true;
                                }
                                try
                                {
                                    int Amount = int.Parse(Params[1]);
                                    SilverwaveEnvironment.GetGame().GetClientManager().QueueCreditsUpdate(Amount);
    
    
                                    SilverwaveEnvironment.GetGame().GetModerationTool().LogStaffEntry(Session.GetHabbo().Username, string.Empty, "Mass Credits", "Send [" + Amount + "] credits to everyone online");
                                }
                                catch { }
                            }
                            return true;
                        }
                    #endregion


  2. #2
    Valued Member iTzScronnie is offline
    MemberRank
    Sep 2013 Join Date
    104Posts

    Re: Working on a new Comand for Diamonds (Crystals) PlusEMU R2

    I'm Bumping this shit because I'm trying to improve



Advertisement