- เครดิต
- 168
- ความรู้
-
- เงิน $
-
- ความดี
-
|
if(strcmp(cmd, "/repaircar", true) == 0)
{
if(IsPlayerConnected(playerid))
{
if(PlayerInfo[playerid][pDonateRank] < 1)
{
SendClientMessage(playerid, COLOR_GRAD1, " ¤Ø³äÁèäªè ID Platinum !");
return 1;
}
if(IsPlayerInAnyVehicle(playerid))
{
GetPlayerName(playerid, sendername, sizeof(sendername));
SetVehicleHealth(GetPlayerVehicleID(playerid), 1000.0);
format(string, sizeof(string), "Platinum : %s ä´é«èÍÁà¤Ã×èͧö¢Í§µ¹àͧ", sendername);
ProxDetector(30.0, playerid, string, COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE);
SendClientMessage(playerid, COLOR_GREY, "Fixed !");
}
}
return 1;
} |
|