shape1
shape2
shape3
shape4
shape7
shape8

/getinfocar - Информация о машины


Mishuninoff

Чёрный список
24.11.2021
42
3
0
Скриптер
C-подобный:
CMD:getinfocar(playerid, params[])
{
    if(PI[playerid][pAdmin] < 3) return SCM(playerid, COLOR_RED, NO_DOSTUP_TEXT);
    extract params -> new carid; else return SendClientMessage(playerid, -1, "{AAFFAA}Используйте: {AAAAAA}/getinfocar [carid]");
    new Float:car_pos[3];
    GetVehiclePos(carid, car_pos[0], car_pos[1], car_pos[2]);
    SendClientMessagef(playerid, -1, "{AAFFAA}Инфорация о транспорте {AFAFAF}#%i", carid);
    SendClientMessagef(playerid, -1, "{AAFFAA}Модель %i | X (%f), Y (%f), Z (%f) | VirtualWorld %i", GetVehicleModel(carid), car_pos[0], car_pos[1], car_pos[2], GetVehicleVirtualWorld(carid));
    return 1;
}