0 Üye ve 1 Ziyaretçi konuyu incelemekte.
function ghostmode_on() local v = getPedOccupiedVehicle(localPlayer) -- Get her's Vehicle ID for index,vehicle in ipairs(getElementsByType("vehicle")) do --LOOP through all Vehicles setElementCollidableWith(vehicle, v, false) -- Set the Collison off with the Other vehicles. endendaddEventHandler("onClientVehicleEnter", getRootElement(),ghostmode_on)