- เครดิต
- 31
- ความรู้
-
- เงิน $
-
- ความดี
-
|
if(strcmp(cmd, "/ตด", true) == 0)//GTA-ZT ห้ามลบ ลบขอให้ เซิฟไม่รุ่ง นะครับ
{
if(IsPlayerConnected(playerid))
{
GetPlayerName(playerid, sendername, sizeof(sendername));
new length = strlen(cmdtext);
while ((idx < length) && (cmdtext[idx] <= ' '))
{
idx++;
}
new offset = idx;
new result[64];
while ((idx < length) && ((idx - offset) < (sizeof(result) - 1)))
{
result[idx - offset] = cmdtext[idx];
idx++;
}
result[idx - offset] = EOS;
if(!strlen(result))
{
SendClientMessage(playerid, COLOR_GRAD2, "USAGE: /ตด [text]");
return 1;
}
format(string, sizeof(string), "[คนในเซิฟ] < ได้ตดออกมา กลิ่น คลุ้มทั้งเซิฟ เพราะว่า %s " , result);
SendClientMessageToAll(COLOR_YELLOW, string);
}
return 1;
} |
|