Skip to content

Instantly share code, notes, and snippets.

@Zaur-Lumanov
Created May 9, 2016 08:35
Show Gist options
  • Save Zaur-Lumanov/90436d5846d214cb6262a6224eb99135 to your computer and use it in GitHub Desktop.
Save Zaur-Lumanov/90436d5846d214cb6262a6224eb99135 to your computer and use it in GitHub Desktop.
#include <a_samp>
#include <sscanf2>
#include <zcmd>
CMD:todo(playerid, params[])
{
new phrase[64], die[64], send[128];
if(sscanf(params,"p<*>s[64]s[64]",phrase,die)) return SendClientMessage(playerid, -1, " - Èñïîëüçóéòå /todo ôðàçà*äåéñòâèå");
format(send, sizeof(send), "- %s - ñêàçàë Stiven_Price, %s", phrase, die);
return SendClientMessage(playerid, -1, send);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment