28.04.2012, 15:28
Here is one from my RP gamemode, it's a /flipoff command. Not the funniest thing in the world, but better than nothing.
You need alternate stocks ofc, but just wanted to give you the idea.
You could try making one that like puts a dildo up their ass or something. Use your imagination!
pawn Код:
CMD:flipoff(playerid, params[])
{
new
giveplayerid,
string[128]
;
if(sscanf(params, "u", giveplayerid))
{
return SendClientMessage(playerid, -1, "USAGE: /flipoff [playerid]");
}
if(giveplayerid == playerid) return SendClientMessage(playerid, -1, "You cannot flip yourself off!");
if(giveplayerid == INVALID_PLAYER_ID) return SendClientMessage(playerid, -1, "Invalid player specified.");
if(!IsPlayerInRangeOfPlayer(playerid, giveplayerid, 4.0))
{
return SendClientMessage(playerid, -1, "You are not close enough to flip off that person!");
}
else
{
format(string, sizeof(string), "* %s has flipped off %s.",GetName(playerid),GetName(giveplayerid));
ProxDetector(30.0, playerid, string, COLOR_PURPLE);
ApplyAnimation(playerid,"PED","fucku",4.0,0,0,0,0,0);
}
return 1;
}
You could try making one that like puts a dildo up their ass or something. Use your imagination!