25.05.2015, 01:58
I have an updated version of ZCMD here
https://sampforum.blast.hk/showthread.php?pid=3468241#pid3468241
I-ZCMD works like ZCMD.The only change is in performance.I-ZCMD is twice as fast as ZCMD and thrice as fast as y_commands.
EDIT:Fixed the code.Thanks Abagail
https://sampforum.blast.hk/showthread.php?pid=3468241#pid3468241
I-ZCMD works like ZCMD.The only change is in performance.I-ZCMD is twice as fast as ZCMD and thrice as fast as y_commands.
EDIT:Fixed the code.Thanks Abagail
Код:
COMMAND:setskin(playerid,params[]) { new skinid; if(sscanf(params,"i",skinid)) SendClientMessage(playerid,"Usage:/setskin [skinid]"); else ifif(skin < 0 || skin > 311) return SendClientMessage(playerid, -1, "Invalid skin!"); else SetPlayerSkin(playerid, skin); return 1; }