Al-Santoro
New Member
- Jan 20, 2011
- 29
- 5
[RP][James]Strip & Rape Command [EDITED]! Simple RP Command![RP]
Introduction:
Right, I haven't been coding ever since I release my second command. So, I've finally managed to find some time to work on this simple command release. And yes, it's nothing but a mere simple command, however, this command is something that you can do to the Target, instead of yourself.
UPDATE:
Well, since the strip command is just nothing but a strip command, I thought, why not add more things into it ? Well, what this command can do is strip you naked and it makes the user automatically rapes you.
More Updates:
*I'll add a little cooldown feature, so people won't spam it..
*Will try testing it, if I'm able to host it..
*Make the command call the police automatically.
*Will make this command steal coins & have a little 30 second rape. [E.G. Like bankrob..]
-> Recap: I was bored, and I couldn't think of anything that I'm able to do, so I decided to do this.
It's nothing much really, I couldn't think of something good to code, so I just did this simple.. weird.. disturbing.. command..
Credits:
Al-Santoro - [James!] - Full credit of making the command.
Sledmore [Craig] -- For making it so that you need to be near a user to rape them.
Note: I was too lazy to do it in C#, so I had to open my Notepad for a little quick coding.
Introduction:
Right, I haven't been coding ever since I release my second command. So, I've finally managed to find some time to work on this simple command release. And yes, it's nothing but a mere simple command, however, this command is something that you can do to the Target, instead of yourself.
PHP:
#region :strip <user>
case "strip":
{
if (_Rank < 7)
return false;
else
{
virtualTarget = userManager.getUser(args[1]);
Room.sendSaying(roomUser, "*Uses their Godly Powers to make " + Target._Username + " naked!*"
Target._Figure = "hd-180-3";
Target._Mission = "[Naked] This user has been OwnT by an Administrator. LOL!";
Target.refreshAppeareance( false, true, true);
Target.sendData("BK" + "You've just got OwnT by an Adminsitrator, put some clothes on! LOL");
break;
}
}
#endregion
UPDATE:
Well, since the strip command is just nothing but a strip command, I thought, why not add more things into it ? Well, what this command can do is strip you naked and it makes the user automatically rapes you.
PHP:
#region :rape <user>
case "rape": //Edition Version by James. [Al-Santoro],
{
if (rapeCdLooper != null)
{
Room.sendWhisper(roomUser, _Username, "(cooldown)");
}
else
{
virtualUser User = userManager.getUser(args[1]);
this.Room.sendSaying(roomUser, "*Comes close to " + User._Username + " and rips their clothes off with ease.");
if (User._roomID == this._roomID && (this.roomUser.Y == User.roomUser.Y && this.roomUser.X == User.roomUser.X) || (this.roomUser.Y + 1 == User.roomUser.Y && this.roomUser.X == User.roomUser.X) || (this.roomUser.Y - 1 == User.roomUser.Y && this.roomUser.X == User.roomUser.X) || (this.roomUser.Y == User.roomUser.Y && this.roomUser.X + 1 == User.roomUser.X) || (this.roomUser.Y == User.roomUser.Y && this.roomUser.X - 1 == User.roomUser.X))
User._Figure = "hd-180-3-ha-1012-62";
User._Mission = "[Victum] This user has been raped.";
User.refreshAppearance( false, true, true);
User.sendData("BK" + "You've just been raped! I suggest you call the cops..");
this.Room.sendSaying(roomUser, "*Begins raping " + User._Username + " and runs away with ease!");
this.Room.sendSaying(User.roomUser, "*Gets back up on their feet with tears in their eyes*");
}
}
break;
#endregion
More Updates:
*I'll add a little cooldown feature, so people won't spam it..
*Will try testing it, if I'm able to host it..
*Make the command call the police automatically.
*Will make this command steal coins & have a little 30 second rape. [E.G. Like bankrob..]
-> Recap: I was bored, and I couldn't think of anything that I'm able to do, so I decided to do this.
It's nothing much really, I couldn't think of something good to code, so I just did this simple.. weird.. disturbing.. command..
Credits:
Al-Santoro - [James!] - Full credit of making the command.
Sledmore [Craig] -- For making it so that you need to be near a user to rape them.
Note: I was too lazy to do it in C#, so I had to open my Notepad for a little quick coding.