HoldUp
dont even
- Aug 31, 2017
- 242
- 32
I know it's a simple command but I'm just learning lol. I want the command so that you say :Welcome x and it sends out a chat in the room saying welcome blah blah blah. I got as far as this - I didn't really do it myself lol just copied it from something else -
using System;
using System.Linq;
using System.Text;
using System.Collections.Generic;
using Plus.HabboHotel.Rooms;
using Plus.HabboHotel.GameClients;
using Plus.Communication.Packets.Outgoing.Rooms.Chat;
namespace Plus.HabboHotel.Rooms.Chat.Commands.User.Fun
{
class WelcomeCommand : IChatCommand
{
public string PermissionRequired
{
get { return "command_welcome"; }
}
public string Parameters
{
get { return "%target%"; }
}
public string Description
{
get { return "Welcome another user to the hotel!"; }
}
If anyone could code it for me? It's all apart of the learning process
using System;
using System.Linq;
using System.Text;
using System.Collections.Generic;
using Plus.HabboHotel.Rooms;
using Plus.HabboHotel.GameClients;
using Plus.Communication.Packets.Outgoing.Rooms.Chat;
namespace Plus.HabboHotel.Rooms.Chat.Commands.User.Fun
{
class WelcomeCommand : IChatCommand
{
public string PermissionRequired
{
get { return "command_welcome"; }
}
public string Parameters
{
get { return "%target%"; }
}
public string Description
{
get { return "Welcome another user to the hotel!"; }
}
If anyone could code it for me? It's all apart of the learning process