- เครดิต
- 31
- ความรู้
-
- เงิน $
-
- ความดี
-
|
if(strcmp(cmd, "/เอาเป็นชื่อคนโดเนทแล้วกัน", true) == 0)
{
if(IsPlayerConnected(playerid))
{
new Float:plocx,Float:plocy,Float:plocz;
if (PlayerInfo[playerid][pPnumber] == xxxx) xxxx คือเบอร์ของผู้บริจาค
{
GetPlayerPos(playerid, plocx, plocy, plocz);
SetVehiclePos(11,plocx,plocy+4, plocz); // 11 คือเลขรถที่คุณนับมา ไม่ต้องเลียนแบบ
GetPlayerName(playerid, sendername, sizeof(sendername));
format(string, sizeof(string), "* %s ได้เรียกรถของเขาออกมาแล้ว",sendername);
ProxDetector(30.0, playerid, string, COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE);
}
else
{
SendClientMessage(playerid, COLOR_GRAD1, " คุณไม่ใช่เจ้าของรถ!");
}
}
return 1;
} |
|