21.10.2018, 21:26
Quote:
why use a 200-character value for a simple reason? Maybe 32 characters were enough.
Code:
new targetid, reason[200], query[300]; if(sscanf(params, "ds[200]", targetid, reason)) return SendClientMessage(playerid, COLOR_LIGHTBLUE, "[USAGE]: {FFFFFF}/report [targetid] [reason]"); Code:
new targetid, reason[32], query[300]; if(sscanf(params, "ds[32]", targetid, reason)) return SendClientMessage(playerid, COLOR_LIGHTBLUE, "[USAGE]: {FFFFFF}/report [targetid] [reason]"); Code:
new string[2300], rinfo[1000] |