0 Üye ve 1 Ziyaretçi konuyu incelemekte.
pickupSkin = { -- x, y, z, model, respawn, ammo, blipID, skin{214.90823, 2555.60400, 967.7538, 3, 1275, 0, 0, 0, 15}, -- en sondaki skin ID{189.440383, 2469.2187, 974.6531, 3, 1275, 0, 0, 0, 18},} for i, v in pairs(pickupSkin) do local x, y, z, type, model, respawn, ammo, blipId, skin = unpack(v) local pickup = createPickup(x, y, z, type, model, respawn, ammo) -- pickup oluştur local blip = createBlipAttachedTo ( ) -- pickupa blip yapıştır addEventHandler("onPickupHit", pickup, function(element) -- oyuncu pickupa girdiğinde if getElementType(element) == "player" then setElementModel(element, skin) -- oyuncunun modelini belirtilen skin yap end end)end
local blip = createBlipAttachedTo ( ) -- pickupa blip yapıştır
araclar = {}pickupArac = { -- x, y, z, model, respawn, ammo, blipID, arac{214.90823, 2555.60400, 967.7538, 3, 1275, 0, 0, 0, 405}, -- en sondaki arac ID{189.440383, 2469.2187, 974.6531, 3, 1275, 0, 0, 0, 505},} for i, v in pairs(pickupArac) do local x, y, z, tip, model, respawn, ammo, blipId, arac = unpack(v) local pickup = createPickup(x, y, z, tip, model, respawn, ammo) -- pickup oluştur local blip = createBlipAttachedTo(pickup, 55) -- pickupa blip yapıştır addEventHandler("onPickupHit", pickup, function(giren) -- oyuncu pickupa girdiğinde if getElementType(giren) == "player" then local x,y,z = getElementPosition(giren) if isElement(araclar[giren]) then destroyElement(araclar[giren]) end araclar[giren] = createVehicle(arac,x,y,z) warpPedIntoVehicle(giren, araclar[giren]) end end)end addEventHandler("onPlayerQuit", root, function() if isElement(araclar[source]) then destroyElement(araclar[source]) endend)
mahlukat mesela bunu birden fazla kısı alabılır dımı mesela biri alınca diyerının altında gitmez bide skın blıp var onu arac olarak yapabilirmiiz
1212: Money (wad of cash)1240: Health (heart)1242: Armour1239: Info icon1272: House (blue)1273: House (green)1241: Adrenaline1247: Bribe1248: GTA III sign1252: Bomb from GTA III1253: Photo op1254: Skull1274: Money icon1275: Blue t-shirt1277: Save disk1313: 2 Skulls1314: 2 Players icon1276: Tiki statue1310: Parachute (with leg straps)1318: Down arrow1279: Drug bundle
{214.90823, 2555.60400, 967.7538, 3, 1275, 0, 0, 0, 405}, -- en sondaki skin ID{189.440383, 2469.2187, 974.6531, 3, 1275, 0, 0, 0, 505},
2si farklı markermi oluyor yoksa aynı x-y-z yi mi yazıcam ?