Kleinjeanpa1
New Member
- May 21, 2020
- 6
- 1
i need help..
You must be registered for see images attach
It’ll be the interaction type won’t it?How to define on which items it works?
I found, actually interactionsType = slotsIt’ll be the interaction type won’t it?
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;
}
}
}
}
}