09.01.2013, 15:13
Can anyone help me with turning these two /cuff and /uncuff commands into a command where I can type /cuff [playerid] Here is the code I want to turn into this.
pawn Код:
if (strcmp("/cuff", cmdtext, true, 7) == 0)
{
new Float:x, Float:y, Float:z;
GetPlayerPos(playerid, x,y,z);
PlayerPlaySound(playerid, 5201, x,y,z);
SendClientMessage(playerid, 0xFF0000AA, "* You are now cuffed.");
SetPlayerSpecialAction(playerid, SPECIAL_ACTION_CUFFED);
TogglePlayerControllable(playerid, 0); // Freeze
SetPlayerAttachedObject(playerid, 0, 19418, 6, -0.011000, 0.028000, -0.022000, -15.600012, -33.699977, -81.700035, 0.891999, 1.000000, 1.168000);
return 1;
}
if (strcmp("/uncuff", cmdtext, true, 7) == 0)
{
new Float:x, Float:y, Float:z;
GetPlayerPos(playerid, x,y,z);
PlayerPlaySound(playerid, 5201, x,y,z);
SendClientMessage(playerid, 0x33AA33AA, "* You are now uncuffed.");
for(new i=0; i<MAX_PLAYER_ATTACHED_OBJECTS; i++)
{
if(IsPlayerAttachedObjectSlotUsed(playerid, i)) RemovePlayerAttachedObject(playerid, i);
SetPlayerSpecialAction(playerid, SPECIAL_ACTION_NONE);
TogglePlayerControllable(playerid, 1); // UnFreeze
}
return 1;
}