Re: [REL][SERVICE] Making Holograph Commands! [SERVICE][REL]
Bump..
Anyhelp On My Command?
Re: [REL][SERVICE] Making Holograph Commands! [SERVICE][REL]
Quote:
Originally Posted by
Him.
Hmm Do you think you could make a change figure id command?
Something like the HabboRP's Purcase command?
Where you pick the part that you do want to change?
maybe something like :figure ch-717-110
Then if you could make the person poof? Thank you
Not many people know the figure codes so it would be useless.
Re: [REL][SERVICE] Making Holograph Commands! [SERVICE][REL]
Quote:
Originally Posted by
321olos
Not many people know the figure codes so it would be useless.
You could always have a page with a list of the figure commands.
Kind of like what habboRP have done with their clothes.
Re: [REL][SERVICE] Making Holograph Commands! [SERVICE][REL]
Yes.
And Plus it would be a Staff Only Command.
Re: [REL][SERVICE] Making Holograph Commands! [SERVICE][REL]
Hey, i need some commands coding for my server
they are for lost memorys server
the following commands please
:brb (changes users name to eg. (BRB) Rich )
:back ( resets name to just eg, rich )
:strike <username> <reason> (strikes a user, after 4 strikes it bans user for 24 hours)
i will be adding more later
thanks
Add me on msn richieskater4394@hotmail.com if you are a good c# coding and are looking for a hotel to code on
Re: [REL][SERVICE] Making Holograph Commands! [SERVICE][REL]
Quote:
Originally Posted by
321olos
Not many people know the figure codes so it would be useless.
#region :change clothes
case "change":
{
_Figure = "figure codes here";
refreshAppearance(false, false, true);
break;
}
Something like that? or may be something like :change <figure>?
Re: [REL][SERVICE] Making Holograph Commands! [SERVICE][REL]
Quote:
Originally Posted by
richie4394
Hey, i need some commands coding for my server
they are for lost memorys server
the following commands please
:brb (changes users name to eg. (BRB) Rich )
:back ( resets name to just eg, rich )
:strike <username> <reason> (strikes a user, after 4 strikes it bans user for 24 hours)
i will be adding more later
thanks
Add me on msn
richieskater4394@hotmail.com if you are a good c# coding and are looking for a hotel to code on
I did tell you ages ago I will do them.
Plus if it changes the name, they can't ever login again unless the emu somehow has HoloHASH capabilities lol. but then you would need to do :brb password lol.
Message me shortly and ill see what I can do.
Re: [REL][SERVICE] Making Holograph Commands! [SERVICE][REL]
That Figure Command Doesnt
Work
Think You can Make One?
Anyone ;D.
Re: [REL][SERVICE] Making Holograph Commands! [SERVICE][REL]
I need this command:
Kick everyone from the room without going in the room. Like this:
:kickroom (roomid)
Let's say i wanna kick Welcome Lounge and the ID is 3
:kickroom 3
Re: [REL][SERVICE] Making Holograph Commands! [SERVICE][REL]
Quote:
Originally Posted by
321olos
It's easy todo. Here's my quick code.
case "brb":
{
_Username = "(BRB) " + _Username;
refreshApperance(false,false,true);
break;
}
As easy as that.
Posted via Mobile Device
Yes but say he dc's or logs off while hes name is still (BRB) [NAME] then it will bug and he can no longer log into the hotel.
The best option would be changing motto's.
---------- Post added at 01:59 AM ---------- Previous post was at 01:58 AM ----------
Quote:
Originally Posted by
Eduarpack
I need this command:
Kick everyone from the room without going in the room. Like this:
:kickroom (roomid)
Let's say i wanna kick Welcome Lounge and the ID is 3
:kickroom 3
Because I'm lazy, I made it in two parts.
virtualUsers (Command):
Code:
#region kickroom
case "kickroom":
{
if (rankManager.containsRight(_Rank, "fuse_kick") == false)
return false;
else
{
int roomtokick = int.Parse(args[1]);
userManager.kickroom(roomtokick, Room.removeUser(roomUser.roomUID, true, "An admin kicked the room!"));
sendData("BK" + "Roomid: " + roomtokick + " has been kicked successfully!");
}
}
break;
#endregion
userManager.cs:
Code:
/// <summary>
/// remotly kicks a room
/// </summary>
public static void kickroom(int roomtokick, string Data)
{
try
{
foreach (virtualUser User in _Users.Values)
{
if (User._roomID == roomtokick)
{
User.sendData(Data);
}
}
}
catch { }
}
:)
Re: [REL][SERVICE] Making Holograph Commands! [SERVICE][REL]
Quote:
Originally Posted by
swimoTheBig
Yes but say he dc's or logs off while hes name is still (BRB) [NAME] then it will bug and he can no longer log into the hotel.
The best option would be changing motto's.
It wont save it when he logs off it changes the name in game not in the database. It changes the string's value.
It doesnt do a DB update.
Il test it to see if it does.
Re: [REL][SERVICE] Making Holograph Commands! [SERVICE][REL]
Quote:
Originally Posted by
321olos
It wont save it when he logs off it changes the name in game not in the database. It changes the string's value.
It doesnt do a DB update.
Il test it to see if it does.
Some emulators change it in the db too.
its still a very unstable thing to use.
Best bit is a motto :)
Re: [REL][SERVICE] Making Holograph Commands! [SERVICE][REL]
I really wanna have:
:sendhome x
:giveitem x
Re: [REL][SERVICE] Making Holograph Commands! [SERVICE][REL]
Quote:
Originally Posted by
Mister. M
I really wanna have:
:sendhome x
:giveitem x
:sendhome x Is in Rastas RP Edit.
:giveitem x does need to be coded.