Plus Emulator Slot Machine Interaction

Kurumi

New Member
Jul 28, 2015
13
6
It’ll be the interaction type won’t it?
I found, actually interactionsType = slots
the commands is bad in my opinion , I think my commands would be better to define several types of machine

I will also if I can order, to stop the machine.
I said that to you in an update of my answer

Used commands: casino machine %credits%

Sorry english, Me French

Code:
using Butterfly.HabboHotel.GameClients;

namespace Butterfly.HabboHotel.Rooms.Chat.Commands.Cmd
{
    class Casino : IChatCommand
    {
        public void Execute(GameClient Session, Room Room, RoomUser UserRoom, string[] Params)
        {
            string UpdateVal = Params[1];
            switch (UpdateVal.ToLower())
            {
                case "machine":
                    {
                        int bet;
                        if (int.TryParse(Params[2], out bet))
                        {
                            if (bet < 10 || bet > 150000)
                            {
                                Session.SendWhisper("Vous pouvez parier entre 10 crédit et 150 000 crédits au maximum.");
                                return;
                            }

                            if (Session.GetHabbo().Credits < bet)
                            {
                                Session.SendWhisper("Vous n'avez pas assez de crédits pour procéder à ce pari.");
                                return;
                            }

                            Session.GetHabbo().SlotsInteractation = bet;
                            Session.SendWhisper("Vous avez parier votre mise sur la machine à sous avec "+ bet +" crédits, double - cliquez sur la machine à sous pour jouer.");
                            break;
                        }
                        else
                        {
                            Session.SendWhisper("Merci de inqiuer une valeur pour jouer.");
                            break;
                        }
                    }
                default:
                    {
                        Session.SendWhisper(ButterflyEnvironment.GetLanguageManager().TryGetValue("cmd.notfound", Session.Langue));
                        return;
                    }
            }
        }
    }
}
 
Last edited:

Users who are viewing this thread

Top