Mercury Emulator - Sayall command
Its Jerking.
People asked for the sayall command for mercury emulator.
I've tested it and here it is my own code:
Add to ChatCommandHandler.cs
PHP Code:
#region zegall :sayall
case "sayall":
if (Session.GetHabbo().Rank > 8) // you can change user ranks
{
string message = MergeParams(Params, 1);
if (message != "")
{
foreach (RoomUser user in Session.GetHabbo().CurrentRoom.GetRoomUserManager().GetRoomUsers())
{
user.Chat(user.GetClient(), message, false, 0);
}
}
}
return true;
#endregion
EDIT:
I've added shoutall tooo ;).
Shoutall command:
PHP Code:
#region shoutall :shoutall
case "shoutall":
if (Session.GetHabbo().Rank > 8) // change user rank
{
string message = MergeParams(Params, 1);
if (message != "")
{
foreach (RoomUser user in Session.GetHabbo().CurrentRoom.GetRoomUserManager().GetRoomUsers())
{
user.Chat(user.GetClient(), message, true, 0);
}
}
}
return true;
#endregion
Credits:
Jerking.
Ok thats it bye! :blush:.
Re: Mercury Emulator - Sayall command
There's already sayall in mercury....
you just need to add the fuse for it on the database
Re: Mercury Emulator - Sayall command
Are you seriously making a new thread for only a shit command???
Pff peaple.. Stop spamming the release section with mercury shit...
@UnderMyPost
I'm not talking shit I'm just telling the truth.. Because you can also add this in a existing mercury thread..)
But I already know it because you cant even talk dutch normally because zegall is also not correct dutch <_<..
because "all" is nothing in dutch...
-spotify
Re: Mercury Emulator - Sayall command
Quote:
Originally Posted by
Spot Ify
Are you seriously making a new thread for only a shit command???
Pff peaple.. Stop spamming the release section with mercury shit...
-spotify
Please don't talk shit ;).
This is a release section for habbo retro's. I've released a (little) command for a emulator for a "habbo retro".
Release = release. It doesn't matter what it is.
- - - Updated - - -
Quote:
Originally Posted by
Danbo
There's already sayall in mercury....
you just need to add the fuse for it on the database
I'm dutch so I made it by myself and did not search for the sayall command at all.
My case was "zegall". People said there was no sayall in the emulator so I made my own one.
Well I've added the shoutall command too :junglejane:.
- - - Updated - - -
Quote:
Originally Posted by
Spot Ify
Are you seriously making a new thread for only a shit command???
Pff peaple.. Stop spamming the release section with mercury shit...
@
UnderMyPost
I'm not talking shit I'm just telling the truth.. Because you can also add this in a existing mercury thread..)
But I already know it because you cant even talk dutch normally because zegall is also not correct dutch <_<..
because "all" is nothing in dutch...
-spotify
Zegallemaal would be to big. So I made the command as Zegall ;).
Your truth is still shit.
Re: Mercury Emulator - Sayall command
Nice to see people publicly working on emulators and sharing, I do not use this emulator but nice seeing people working on them.