need help with cuff and uncuff cmd with sscanf+zcmd. - Printable Version
+- SA-MP Forums Archive (
https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (
https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (
https://sampforum.blast.hk/forumdisplay.php?fid=12)
+--- Thread: need help with cuff and uncuff cmd with sscanf+zcmd. (
/showthread.php?tid=412013)
need help with cuff and uncuff cmd with sscanf+zcmd. -
mittukuttan - 31.01.2013
only these skins should use this command.
these r the skin id's:
283
284
285
286
287
288
Re: need help with cuff and uncuff cmd with sscanf+zcmd. -
MarTaTa - 31.01.2013
pawn Code:
CMD:cuff(playerid, params[])
{
if(GetPlayerSkin(playerid) == 283 || 284 || 285 || 286 || 287 || 288)
{
// here goes your code, same for uncuff
}
}