- เครดิต
- 6
- ความรู้
-
- เงิน $
-
- ความดี
-
|
if(newstate == PLAYER_STATE_DRIVER)
คัดลอกไปที่คลิปบอร์ด
สังเกตุแถวนี้นะครับที่มี่ newcar
if(newcar >= 138 && newcar <= 147)
{
if(PlayerInfo[playerid][pLevel] > 2)
{
SendClientMessage(playerid,COLOR_LIGHTRED," คุณเลเวลมากกว่า 2 ขี่ไม่ได้นะ!");
new Float:x, Float:y, Float:z;
GetPlayerPos(playerid, x, y, z);
SetPlayerPos(playerid, x, y, z+2);
PlayerPlaySound(playerid, 1085, x, y, z+2);
}
}
คัดลอกไปที่คลิปบอร์ด
ให้คุณ Enter จากตัว } ล่าสุดเพื่อเว้นวรรคแล้วใส่
if(newcar == 11) // 11 ของผมที่นับมา ส่วนของคุณนับเองไม่ต้องทำตามนะ
{
if(PlayerInfo[playerid][pPnumber] == xxxx) { } // xxxx คือใส่เลขเบอร์ของเจ้าของคนโดเนทรถ
else
{
SendClientMessage(playerid,COLOR_YELLOW," * เจ้าของรถคันนี้คือใครก็ว่าไป)");
new Float:x, Float:y, Float:z;
GetPlayerPos(playerid, x, y, z);
SetPlayerPos(playerid, x, y, z+2);
PlayerPlaySound(playerid, 1085, x, y, z+2);
}
}
คัดลอกไปที่คลิปบอร์ด
จะได้แบบนี้
if(newcar >= 138 && newcar <= 147)
{
if(PlayerInfo[playerid][pLevel] > 2)
{
SendClientMessage(playerid,COLOR_LIGHTRED," คุณเลเวลมากกว่า 2 ขี่ไม่ได้นะ!");
new Float:x, Float:y, Float:z;
GetPlayerPos(playerid, x, y, z);
SetPlayerPos(playerid, x, y, z+2);
PlayerPlaySound(playerid, 1085, x, y, z+2);
}
}
if(newcar == 86)
{
if(PlayerInfo[playerid][pPnumber] == 25405) { } // 25405
else
{
SendClientMessage(playerid,COLOR_YELLOW," * เจ้าของรถคันนี้คือใครก็ว่าไป)");
new Float:x, Float:y, Float:z;
GetPlayerPos(playerid, x, y, z);
SetPlayerPos(playerid, x, y, z+2);
PlayerPlaySound(playerid, 1085, x, y, z+2);
}
}
}
คัดลอกไปที่คลิปบอร์ด
และสุดท้ายคำสั่งเรียกรถมาหาตัวเอง
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;
} |
|