0 Üye ve 1 Ziyaretçi konuyu incelemekte.
komutlar = { --["komutismi"] = aracid ["thk"] = 401,} araclar = {}spam = {}addEventHandler("onPlayerCommand", root, function(komut) if komutlar[komut] then if spam[source] then outputChatBox("Lütfen 30 saniye sonra tekrar deneyiniz", source, 255,0,0) return end spam[source] = true setTimer(function(oyuncu) spam[oyuncu] = nil end, 1000*30,1, source) local arac = getPedOccupiedVehicle(source) if arac and getPedOccupiedVehicleSeat(source) == 0 then destroyElement(arac) end if araclar[source] and isElement(araclar[source]) then destroyElement(araclar[source]) end local x,y,z = getElementPosition(source) araclar[source] = createVehicle(komutlar[komut], x,y,z) warpPedIntoVehicle(source, araclar[source]) endend)