Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- public OnPlayerCommandText(playerid, cmdtext[])
- {
- new cmd[256];
- cmd = Separar(cmdtext, 0);
- if (strcmp("/msg", cmd, true) == 0)
- {
- new msg[256], string[256];
- msg = Separar(cmdtext, 1);
- if(!strlen(msg)) return SendClientMessage(playerid, -1, "Use: /msg [mensagem]");
- format(string, sizeof string, "Schovinski: %s", msg);
- SendClientMessageToAll(-1, string);
- return 1;
- }
- return 0;
- }
- Separar(string[], const para)
- {
- new idx, maxst = strlen(string);
- new destino[150];
- if(para < 2)
- {
- while(idx < maxst)
- {
- if(string[idx] != ' ')
- {
- idx++;
- continue;
- }
- else
- {
- if(para == 0)
- {
- strmid(destino, string, 0, idx);
- break;
- }
- else
- {
- strmid(destino, string, idx+1, maxst);
- break;
- }
- }
- }
- }
- else
- {
- print("Aviso: você só pode separar dois parãmetros.");
- destino = "";
- }
- return destino;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement