Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 24/08/22 in all areas

  1. So yeah title. Are the devs on this or no? Is there a bot flooding the system making serials? What's the deal?
    1 point
  2. This one works fine, thank you so much! Solved
    1 point
  3. Create your own panel with guiStaticImage or via guieditor --Client panel = guiCreateStaticImage( 20, 200, 100, 100, "imagename.png", false) button1 = guiCreateStaticImage( 10, 20, 20, 20, "imagename.png", false, panel) addEventHandler("onClientGUIClick", button1, transportToOne, false) function showTransportPanels() if (not guiGetVisible(panel)) then guiSetVisible(panel, true) showCursor(true) end end addEvent("showTransportPanel", true) addEventHandler("showTransportPanel", root, showTransportPanels) function transportToOne(btn, st) if (btn ~= "left" or st ~= "up") then if (guiGetVisible(panel)) then guiSetVisible(panel, false) showCursor(false) end triggerServerEvent("transportPlayerTo", resourceRoot, 1) end end --Server local playerMarker = createMarker(0, 0, 2, "cylinder", 5, 10, 244, 23, 200, root) function handlePlayerMarker(hitElement, matchingDim) local elementType = getElementType(hitElement) if (elementType ~= "player" or not matchingDim or isPedInVehicle(hitElement)) then return false end triggerClientEvent(hitElement, "showTransportPanel", hitElement) end addEventHandler("onMarkerHit", playerMarker, handlePlayerMarker) function transportPlayerTo(place) if (place == 1) then fadeCamera(client, false, 1) setElementPosition(client, x, y, z) setTimer(fadeCamera, 1000, 1, client, true) end end addEvent("transportPlayerTo", true) addEventHandler("transportPlayerTo", resourceRoot, transportPlayerTo) untested but you can figure it out by yourself
    1 point
  4. Just type /check function checkVehicleSpeed() local vehicle = getPedOccupiedVehicle(getLocalPlayer()) local accel = getVehicleHandling(vehicle).engineAcceleration local seconds = 100/accel outputChatBox("Your vehicle takes " .. seconds .. " seconds to get from 0 to 100km/h") end addCommandHandler("check", checkVehicleSpeed)
    1 point
  5. Hi, welcome to the forums. As previously stated, changing serials is not something we can do. If your serial got banned and/or is already those servers' records, it's most likely due to your own actions and, as previosuly suggested, you should sort this out with the respective server owners. @Lezek Please create a ban appeal in the ban appeals section here: https://forum.multitheftauto.com/forum/180-ban-appeals/ Make sure to provide your serial and any other relevant information about the incident. This is required so the anticheat team can further investigate your case. You can grab your serial by launching MTA, opening up the console (F8 key by default) and typing 'serial' without any quotes.
    1 point
  6. I first singed up for MTA today and apparently I am banned without ever playing MTA or even GTA: San Andreas. I don't know if this is related to you but this makes me wonder if someone was somehow using my serial and got banned. I don't even know what this ban message means: "Disconnected: You were banned by MTA Reason: MARS / SKITCHIT / RUSSKY"
    1 point
  7. That looks fine. Next up, write the following in both situations to the serverlog. Collect them from the logs and place them here, so that we can compare the input from both situations. outputServerLog(inspect({freeID, login, vehID, positionVeh, vehcolor, cost, 1000, "TRANZIT", handlings, doors, panels, wheels, lights})) Code should be placed directly before the dbExec function call.
    1 point
  8. Shader Hud mask or shader_circle Shader Examples
    1 point
  9. With enough testing and tweaking I'm sure it is possible, however you can cheat. You can create every vehicle with a ped in it, give them a forwards control state and measure the time it takes them to accelerate to 100 km/h. This is a way easier solution. Do it with 20 peds in 20 vehicles in the same time and it should be quick enough to do it every now and then.
    0 points
×
×
  • Create New...