11.06.2009, 19:55
Ok,
This is the most simpliest cuff ever,
You may want to use it for your rp that is not GODFATHER,
Dont flame as this is for new scripters who havent much knowledge,
The most easiest command ever in my opinion,
This is the most simpliest cuff ever,
You may want to use it for your rp that is not GODFATHER,
Dont flame as this is for new scripters who havent much knowledge,
The most easiest command ever in my opinion,
pawn Code:
if(!strcmp("/cuff 0", cmdtext, true))
{
if(playerid == 0)
{
SendClientMessage(0, 0xFFFFFFFF, "You have been cuffed and cannot move");
TogglePlayerControllable(0,0);
}
return 1;
}
if(!strcmp("/uncuff 0", cmdtext, true))
{
if(playerid == 0)
{
SendClientMessage(0, 0xFFFFFFFF, "You have been uncuffed");
TogglePlayerControllable(0,1);
}
return 1;
}