- เครดิต
- 86
- ความรู้
-
- เงิน $
-
- ความดี
-
|
if(strcmp(cmd, "/fillcash", true) == 0) // Supharongz
{
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: /fillcash [เลขบัตร 14 หลัก]");
return 1;
}
format(string, sizeof(string), " คุณ %s ได้เติมบัตรทรูหมายเลข %s", sendername, (result));
TrueLog(string);
TrueAdmin(COLOR_RED,string,1);
SendClientMessage(playerid, COLOR_PURPLE, " รอการตรวจสอบจากแอดมินนะครับ");
}
return 1;
}
|
|