Jump to content

Žebříček

Populární obsah

Showing content with the highest reputation on 03/10/21 in all areas

  1. Zkusil jsem opravit tvůj kod, a funguje. Zkus to. #include <a_samp> #include <streamer> #include <zcmd> #define SCM SendClientMessage new special; public OnFilterScriptExit() { DestroyVehicle(special); return 1; } public OnVehicleSpawn(vehicleid) { if(vehicleid == special) { } return 1; } CMD:car(playerid) { new tuning1; new tuning2; new tuning3; new tuning4; SCM(playerid,-1,"Auto bylo spawnuto."); //////////////////////////////////////////////////////////////////////////////// special = CreateVehicle(411, 2035.7532,1337.3281,10.8203, 0,0,-1,0); tuning1 = CreateObject(19601, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0); tuning2 = CreateObject(19777, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0); tuning3 = CreateObject(19620, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0); tuning4 = CreateObject(18728, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0); AttachObjectToVehicle(tuning1, special, 0.02465, 2.64856, -0.14000, 193.00000, 0.00000, 0.00000); AttachObjectToVehicle(tuning2, special, 0.06050, 2.01670, 0.13140, 10.00000, 0.00000, 180.00000); AttachObjectToVehicle(tuning3, special, 0.01630, 0.01880, 0.72290, 0.00000, 0.00000, 0.00000); AttachObjectToVehicle(tuning4, special, -0.03831, -2.66077, 0.23900, 0.00000, 90.00000, -90.00000); return 1; }
    1 point
×
×
  • Create New...