Jump to content

Vinyard

Scripting Moderators
  • Posts

    1,359
  • Joined

  • Last visited

  • Days Won

    41

Status Replies posted by Vinyard

  1. Please unban me from the mta drift paradise server because I accidentally opened the cheat engine
     
     
    1. Vinyard

      Vinyard

      Hi,

      You will have to reach out to that server's administration to request an unban. We do not handle server-related bans.

  2. Hello everyone , that's my very first post in this website , i really loved the community and the people and how they respond so fast
    - i Need y'all help :
    - i am now developing a server of mine and i had a issue , i made a rank and called it events , so this rank is for events and for making the server more fun
    i added derby mod to the server but the problem is when i get that rank to test it like to run the mod it says
    ACL : access denied for 'start'
    even when i added the

    <object name="resource.Derby"></object>
    it doesn't work
    that was my question and i hope y'all are going to give me a good answer
    😃

    1. Vinyard

      Vinyard

      Hi!

      Please consider posting your message in a new topic here so that you get more visibility from the community members and therefore increased chances of getting a solution (faster): https://forum.multitheftauto.com/forum/71-scripting/

  3. OLA spacer.pngOLA ENTAO ONTEM EU ESTAVA A CRIAR BASE EM EDITOR DE MAPAS HOJE FUI TERMINAR MEU MOD ESTAVA ASSIM meu serial 8FB463C319CF8E42D968DC003D4731A2

    1. Vinyard

      Vinyard

      If you have problems understanding English, I would advise you to consider posting your issue in our Portuguese section so you can receive responses in your native language from our volunteers: https://forum.multitheftauto.com/forum/131-ajudas-relacionadas-ao-mtasa-clienteservidor/

    2. (See 5 other replies to this status update)

  4. OLA spacer.pngOLA ENTAO ONTEM EU ESTAVA A CRIAR BASE EM EDITOR DE MAPAS HOJE FUI TERMINAR MEU MOD ESTAVA ASSIM meu serial 8FB463C319CF8E42D968DC003D4731A2

    1. Vinyard

      Vinyard

      Hi, welcome to the forums.

      You will have to perform a clean reinstall of your device's operating system, as recommended in the error above.

    2. (See 5 other replies to this status update)

  5. hola , tengo un problema , esque los demas pueden ver mi nombre pero yo no puedo ver el mio y yo tambien puedo ver el de los demas , alguien me ayuda con el codigo completo porfis , no se mucho de script

     

    Hello, I have a problem, others can see my name but I can't see mine and I can also see the others', can someone help me with the complete code please, I don't know much about script

     

     

     

    aca esta el script para que vean que esta mal - Here is the script so you can see what is wrong

     

     

    local localPlayer = getLocalPlayer()
    local show = true
    local badges = {}
    local masks = {}
    local nametags = {}
                
    -- settings
    --local _max_distance = (5 or (getElementData(localPlayer, "account:gmduty")==true and 120)) -- max. distance it's visible
    local _max_distance = 20
    local _min_distance = 1.5 -- minimum distance, if a player is nearer his nametag size wont change
    local _alpha_distance = 10 -- nametag is faded out after this distance
    local _nametag_alpha = 170 -- alpha of the nametag (max.)
    local _bar_alpha = 120 -- alpha of the bar (max.)
    local _scale = 0.2 -- change this to keep it looking good (proportions)
    local _nametag_textsize = 1.6 -- change to increase nametag text
    local _chatbubble_size = 25
    local _bar_width = 40
    local _bar_height = 6
    local _bar_border = 1.2
    -- adjust settings
    local _, screenY = guiGetScreenSize( )
    real_scale = screenY / ( _scale * 800 ) 
    local _alpha_distance_diff = _max_distance - _alpha_distance

    local oldConsoleState = false
    local oldInputState = false

    addEvent( "nametags:chatbubble", true )
    addEventHandler( "nametags:chatbubble", root,
        function( state )
            if nametags[ source ] ~= nil and ( state == true or state == false or state == 1 ) then
                nametags[ source ] = state
            end
        end
    )

    function startRes()
        for key, value in ipairs(getElementsByType("player")) do
            setPlayerNametagShowing(value, false)
        end
    end
    addEventHandler("onClientResourceStart", getResourceRootElement(), startRes)

    local playerhp = { }
    local lasthp = { }

    local playerarmor = { }
    local lastarmor = { }

    function playerQuit()
        if (getElementType(source)=="player") then
            playerhp[source] = nil
            lasthp[source] = nil
            playerarmor[source] = nil
            lastarmor[source] = nil
        end
    end
    addEventHandler("onClientElementStreamOut", getRootElement(), playerQuit)
    addEventHandler("onClientPlayerQuit", getRootElement(), playerQuit)

    function setNametagOnJoin()
        setPlayerNametagShowing(source, false)
    end
    addEventHandler("onClientPlayerJoin", getRootElement(), setNametagOnJoin)

    function streamIn()
        if (getElementType(source)=="player") then
            playerhp[source] = getElementHealth(source)
            lasthp[source] = playerhp[source]
            
            playerarmor[source] = getPedArmor(source)
            lastarmor[source] = playerarmor[source]
        end
    end
    addEventHandler("onClientElementStreamIn", getRootElement(), streamIn)

    local lastrot = nil

    function aimsSniper()
        return getPedControlState(localPlayer, "aim_weapon") and getPedWeapon(localPlayer) == 34
    end

    function aimsAt(player)
        return getPedTarget(localPlayer) == player and aimsSniper()
    end

    function getVehicleVelocity(vehicle)
        speedx, speedy, speedz = getElementVelocity (vehicle)
        actualSpeed = (speedx^2 + speedy^2 + speedz^2)^(0.5)         
        mph = math.floor(actualSpeed * 160)
        return mph
    end 

    function renderNametags()
        if (show) then
            if getElementData(localPlayer, "nohud") then return end
            if getPedOccupiedVehicle(localPlayer) and getVehicleVelocity(getPedOccupiedVehicle(localPlayer)) >= 60 then return end
            local newConsoleState = isConsoleActive( )
            if newConsoleState ~= oldConsoleState then
                triggerServerEvent( "nametags:chatbubble", localPlayer, newConsoleState and 1 or false )
                oldConsoleState = newConsoleState
            else
                local newInputState = isChatBoxInputActive( )
                if newInputState ~= oldInputState then
                    triggerServerEvent( "nametags:chatbubble", localPlayer, newInputState )
                    oldInputState = newInputState
                end
            end
            local players = { }
            local distances = { }
            --local lx, ly, lz = getCameraMatrix()
            local lx, ly, lz = getElementPosition(localPlayer)
            local dim = getElementDimension(localPlayer)
            -- CHATICONS
            local cx, cy, cz = getCameraMatrix( )
            local interior = getElementInterior( localPlayer )
            -- loop through all players
            for player, chaticon in pairs( nametags ) do
                if isElement( player ) then
                    if getElementDimension( player ) == dim and getElementInterior( player ) == interior and isElementOnScreen( player ) then
                        local px, py, pz = getElementPosition( player )
                        local distance = getDistanceBetweenPoints3D( px, py, pz, cx, cy, cz )
                        if distance <= _max_distance and ( getElementData( localPlayer, "collisionless" ) or isLineOfSightClear( cx, cy, cz, px, py, pz, true, false, false, true, false, false, true ) ) then
                            local dz = 1 + 2 * math.min( 1, distance / _min_distance ) * _scale
                            if isPedDucked( player ) then
                                dz = dz / 2
                            end
                            pz = pz + dz
                            local sx, sy = getScreenFromWorldPosition( px, py, pz )
                            if sx and sy then
                                local cx = sx
                                local scale = _max_distance / ( real_scale * distance )
                                local health = math.min( 100, getElementHealth( player ) )
                                if chaticon then
                                    local square = math.ceil( _chatbubble_size * scale )
                                    local sy = sy + square / 1.9
                                    local r, g, b = 255 - 128 * health / 100, 127 + 128 * health / 100, 127
                                    dxDrawImage( cx, sy, square, square, chaticon == true and "images/hud/chat.png" or "images/hud/console.png", 0, 0, 0, tocolor( r, g, b, nametag_alpha ) )
                                end
                            end
                        end
                    end
                end
            end
            -- FIN CHATICONS
            for key, player in ipairs(getElementsByType("player")) do
                if (isElement(player)) and getElementDimension(player) == dim then
                    local rx, ry, rz = getElementPosition(player)
                    local distance = getDistanceBetweenPoints3D(lx, ly, lz, rx, ry, rz)
                    local limitdistance
                    if getElementData(localPlayer, "account:gmduty") == true then
                        limitdistance = 30
                    else
                        limitdistance = 5
                    end
                    if ((player~=localPlayer) and isElementOnScreen(player)) then
                        if (aimsAt(player) or distance<limitdistance or reconx) then
                            if not getElementData(player, "reconx") and not getElementData(player, "freecam:state") and not (getElementAlpha(player) < 255) then
                                --local lx, ly, lz = getPedBonePosition(localPlayer, 7)
                                local lx, ly, lz = getCameraMatrix()
                                local vehicle = getPedOccupiedVehicle(player) or nil
                                local collision, cx, cy, cz, element = processLineOfSight(lx, ly, lz, rx, ry, rz+1, true, true, true, true, false, false, true, false, vehicle)
                                if not (collision) or aimsSniper() or (reconx) then
                                    local x, y, z = getElementPosition(player)
                                    if not (isPedDucked(player)) then
                                        z = z + 1
                                    else
                                        z = z + 0.5
                                    end
                                    local sx, sy = getScreenFromWorldPosition(x, y, z+0.30, 100, false)
                                    local oldsy = nil
                                    local badge = false
                                    local tinted = false
                                    local name = getPlayerName(player):gsub("_", " ")
                                    if (sx) and (sy) then
                                        distance = distance / 5    
                                        if (reconx or aimsAt(player)) then distance = 1
                                        elseif (distance<1) then distance = 1
                                        elseif (distance>2) then distance = 2 end    
                                        local offset = 60 / distance
                                        oldsy = sy 
                                        local picxsize = 32 / 1.3 /distance
                                        local picysize = 37 / 1.3 /distance
                                        local xpos = 0
                                        local isGM = getElementData(player,"account:gmduty")
                                        if isGM  then
                                            dxDrawImage(sx-offset+xpos,oldsy,picxsize,picysize,"images/hud/gm.png")
                                            xpos = xpos + picxsize 
                                        end    
                                         local isHelper = getElementData(player,"account:helpduty")
                                        if isHelper  then
                                            dxDrawImage(sx-offset+xpos,oldsy,picxsize,picysize,"images/hud/helper.png")
                                            xpos = xpos + picxsize 
                                        end    
                                        local poli = getElementData(player, "duty")
                                        if poli == true then
                                            dxDrawImage(sx-offset+xpos,oldsy,picxsize,picysize,"images/hud/badge2.png")
                                            xpos = xpos + picxsize
                                        end
                                        local cinturon = getElementData(player, "player.cinturon")
                                        if cinturon == true then
                                            dxDrawImage(sx-offset+xpos,oldsy,picxsize,picysize,"images/hud/cinturon.png")
                                            xpos = xpos + picxsize
                                        end    
                                        local masked = false
                                        if getElementData(player, "mascara") == true then
                                            dxDrawImage(sx-offset+xpos,oldsy,picxsize,picysize,"images/hud/mask.png")
                                            xpos = xpos + picxsize
                                            masked = true
                                        end                                                
                                        local buzoloco = false
                                        if getElementData(player, "buzo") == true then
                                            dxDrawImage(sx-offset+xpos,oldsy,picxsize,picysize,"images/hud/scuba.png")
                                            xpos = xpos + picxsize
                                            buzoloco = true
                                        end
                                        local developer = false
                                        if getElementData(player, "programandos") == true then
                                            dxDrawImage(sx-offset+xpos,oldsy,picxsize,picysize,"images/hud/dev.png")
                                            xpos = xpos + picxsize
                                            developer = true
                                        end    
                                        if getElementData( player,"Cascos") == 1 then
                                            dxDrawImage(sx-offset+xpos,oldsy,picxsize,picysize,"images/hud/helmet.png")
                                            xpos = xpos + picxsize
                                            masked = true
                                        end
                                        local vehicle = getPedOccupiedVehicle( player )
                                        local windowsDown = false
                                        if vehicle then
                                            if (getElementData(vehicle, "vehicle:windowstat") == 1) then
                                                windowsDown = true
                                            end
                                                    
                                            if not windowsDown and vehicle ~= getPedOccupiedVehicle(localPlayer) and getElementData(vehicle, "tinted") then
                                                name = "Unknown Person (Tint)"
                                                tinted = true
                                            end
                                        end    
                                        if not tinted then
                                            if masked then
                                                name = "Persona Desconocida"
                                            end
                                            local vehicle = getPedOccupiedVehicle( player )
                                            if vehicle and getElementData(vehicle, "ventanas") then
                                                name = "Ventanas tintadas"
                                            end
                                            for k, v in pairs(badges) do
                                                local title = getElementData(player, k)
                                                if title then
                                                    dxDrawImage(sx-offset+xpos,oldsy,picxsize,picysize,"images/hud/badge" .. tostring(v[4] or 1) .. ".png")
                                                    xpos = xpos + picxsize 
                                                    name = title .. "\n" .. name
                                                    badge = true
                                                    break
                                                end
                                            end
                                        end
                                        local health = getElementHealth( player )
                                        if (health <= 30) then
                                            dxDrawImage(sx-offset+xpos,oldsy,picxsize,picysize,"images/hud/lowhp.png")
                                            xpos = xpos + picxsize 
                                        end    
                                        local armour = getPedArmor( player )
                                        if armour > 50 then
                                            dxDrawImage(sx-offset+xpos,oldsy,picxsize,picysize,"images/hud/armour.png")
                                            xpos = xpos + picxsize 
                                        end
                                        if windowsDown then
                                            dxDrawImage(sx-offset+xpos,oldsy,picxsize,picysize,"images/hud/window.png")
                                            xpos = xpos + picxsize 
                                        end
                                    end
                                    if (sx) and (sy) then
                                        if (distance<=2) then
                                            sy = math.ceil( sy + ( 2 - distance ) * 20 )
                                        end
                                        sy = sy + 10
                                        if (sx) and (sy) then
                                            local offset = 45 / distance
                                        end                                
                                        if (distance<=2) then
                                            sy = math.ceil( sy - ( 2 - distance ) * 40 )
                                        end
                                        sy = sy - 20
                                        if (sx) and (sy) and oldsy then
                                            if (distance < 1) then distance = 1 end
                                            if (distance > 2) then distance = 2 end
                                            local offset = 75 / distance
                                            local scale = 1.2 / distance
                                            local font = "default-bold"
                                            local id = getElementData(player, "playerid")
                                            if badge then
                                                sy = sy - dxGetFontHeight(scale, font) * scale + 2.5
                                            end
                                            local r, g, b = getPlayerNametagColor (player)
                                            name = name .. " (" .. tostring(id) .. ")"
                                            yo = getElementData(player, "yo")
                                            if yo == "nil" then
                                                yo2 = "((Sin /yo asignado.))"
                                            else
                                                yo2 = yo
                                            end
                                            dxDrawText(tostring(yo2), sx-offset+2, sy+2, (sx-offset)+30 / distance, sy+70 / distance, tocolor(0, 0, 0, 220), scale*0.8, "clear-normal", "center", "center", false, false, false)
                                            dxDrawText(tostring(yo2), sx-offset, sy, (sx-offset)+30 / distance, sy+70 / distance, tocolor( 0, 255, 255 , 220), scale*0.8, "clear-normal", "center", "center", false, false, false)
                                            dxDrawText(name, sx-offset+2, sy+2, (sx-offset)+130 / distance, sy+20 / distance, tocolor(0, 0, 0, 220), scale, font, "center", "center", false, false, false)
                                            dxDrawText(name, sx-offset, sy, (sx-offset)+130 / distance, sy+20 / distance, tocolor(r, g, b, 220), scale, font, "center", "center", false, false, false)
                                        end
                                    end
                                end
                            end
                        end
                    end
                end
            end
            for key, player in ipairs(getElementsByType("ped")) do
                if (isElement(player) and  (player~=localPlayer) and (isElementOnScreen(player)))then
                    local lx, ly, lz = getElementPosition(localPlayer)
                    local rx, ry, rz = getElementPosition(player)
                    local distance = getDistanceBetweenPoints3D(lx, ly, lz, rx, ry, rz)
                    local limitdistance = 20
                    local reconx = getElementData(localPlayer, "spec")
                    playerhp[player] = getElementHealth(player)
                    if (lasthp[player] == nil) then
                        lasthp[player] = playerhp[player]
                    end
                    playerarmor[player] = getPedArmor(player)
                    if (lastarmor[player] == nil) then
                        lastarmor[player] = playerarmor[player]
                    end
                    if (aimsAt(player) or distance<limitdistance or reconx) then
                        if not getElementData(player, "spec") == true and not getElementData(player, "freecam:state") then
                            local lx, ly, lz = getCameraMatrix()
                            local vehicle = getPedOccupiedVehicle(player) or nil
                            local collision, cx, cy, cz, element = processLineOfSight(lx, ly, lz, rx, ry, rz+1, true, true, true, true, false, false, true, false, vehicle)
                            if not (collision) or aimsSniper() or (reconx) then
                                local x, y, z = getElementPosition(player)
                                if not (isPedDucked(player)) then
                                    z = z + 1
                                else
                                    z = z + 0.5
                                end
                                local sx, sy = getScreenFromWorldPosition(x, y, z+0.1, 100, false)
                                local oldsy = nil
                                if (sx) and (sy) then                                    
                                    distance = distance / 5
                                    if (reconx or aimsAt(player)) then distance = 1
                                    elseif (distance<1) then distance = 1
                                    elseif (distance>2) then distance = 2 end
                                    local offset = 45 / distance
                                    oldsy = sy 
                                    if (distance<=2) then
                                        sy = math.ceil( sy + ( 2 - distance ) * 20 )
                                    end
                                    sy = sy + 10
                                    if (distance<=2) then
                                        sy = math.ceil( sy - ( 2 - distance ) * 40 )
                                    end
                                    sy = sy - 20    
                                    if (sx) and (sy) then
                                        if (distance < 1) then distance = 1 end
                                        if (distance > 2) then distance = 2 end
                                        local offset = 75 / distance
                                        local scale = 0.6 / distance
                                        local font = "bankgothic"
                                        local r = 255
                                        local g = 255
                                        local b = 255--getPlayerNametagColor(player)
                                        local offset = 65 / distance
                                        local id = getElementData(player, "npcid") or 999
                                        if (oldsy) and (id) then
                                            if (id<100 and id>9) then -- 2 digits
                                                dxDrawRectangle(sx-offset-15, oldsy, 30 / distance, 20 / distance, tocolor(0, 0, 0, 100), false)
                                                dxDrawText(tostring(id), sx-offset-22.5, oldsy, (sx-offset)+26 / distance, sy+20 / distance, tocolor(255, 255, 255, 220), scale, font, "center", "center", false, false, false)
                                            elseif (id<=9) then -- 1 digit
                                                dxDrawRectangle(sx-offset-5, oldsy, 20 / distance, 20 / distance, tocolor(0, 0, 0, 100), false)
                                                dxDrawText(tostring(id), sx-offset-12.5, oldsy, (sx-offset)+26 / distance, sy+20 / distance, tocolor(255, 255, 255, 220), scale, font, "center", "center", false, false, false)
                                            elseif (id>=100) then -- 3 digits
                                                if (id == 999) then
                                                    id = "NPC"
                                                    dxDrawRectangle(sx-offset-25, oldsy, 40 / distance, 20 / distance, tocolor(0, 0, 0, 100), false)
                                                    dxDrawText(tostring(id), sx-offset-32.5, oldsy, (sx-offset)+26 / distance, sy+20 / distance, tocolor(255, 255, 255, 220), scale, font, "center", "center", false, false, false)
                                                end
                                            end
                                            local name = getElementData(player, "npcname") or "NPC"
                                            if (oldsy) and (name) then
                                                dxDrawText(tostring(name), sx-offset+115, oldsy+25, (sx-offset)+26 / distance, sy+20 / distance, tocolor(255, 255, 255, 220), scale, font, "center", "center", false, false, false)
                                            end
                                        end
                                    end
                                end
                            end    
                        end
                    end
                end
            end
        end
    end
    addEventHandler('onClientRender', getRootElement(), renderNametags)
    --
    addEventHandler( 'onClientResourceStart', getResourceRootElement( ),
        function( )
            for _, player in pairs( getElementsByType( 'player' ) ) do
                if player ~= localPlayer then
                    setPlayerNametagShowing( player, false )
                    if isElementStreamedIn( player ) then
                        nametags[ player ] = false
                    end
                end
            end
        end
    )

    addEventHandler( 'onClientResourceStop', getResourceRootElement( ),
        function( )
            for player in pairs( nametags ) do
                setPlayerNametagShowing( player, true )
                nametags[ player ] = nil
            end
        end
    )

    addEventHandler ( 'onClientPlayerJoin', root,
        function( )
            setPlayerNametagShowing( source, false )
        end
    )

    addEventHandler ( 'onClientElementStreamIn', root,
        function( )
            if source ~= localPlayer and getElementType( source ) == "player" then
                nametags[ source ] = false
                triggerServerEvent( "nametags:chatbubble", source )
            end
        end
    )

    addEventHandler ( 'onClientElementStreamOut', root,
        function( )
            if nametags[ source ] then
                nametags[ source ] = nil
            end
        end
    )

    addEventHandler ( 'onClientPlayerQuit', root,
        function( )
            if nametags[ source ] then
                nametags[ source ] = nil
            end
        end
    )

    1. Vinyard

      Vinyard

      Hi, welcome to the forums! 👋

      Please consider opening a topic in the Spanish scripting section here: https://forum.multitheftauto.com/forum/167-scripting/
      It will help you get better assistance in your native language and greater visibility from your fellow community members.

      Alternatively, you can post a topic in the international scripting section here: https://forum.multitheftauto.com/forum/71-scripting/
      If you decide to open a topic in the international section, make sure that your message is written in English!

  6. my mta is error it’s said that “This server is blocking your customized GTA SA files.” Pls help me.

    1. Vinyard

      Vinyard

      Hi, welcome to the forums! 👋

      Try the following (steps taken from #help-support on Discord):

      Quote

       

      1) update the game to this version: https://nightly.multitheftauto.com/?mtasa-1.6-latest or if you have Windows 7/8.1: https://nightly.multitheftauto.com/?mtasa_maetro-1.6-latest

      2) After update, turn off "use modified GTA files" in MTA settings (main tab)

      3) restart MTA and it's fixed

       

       

  7. hey i got banned

    i used cheat

    but i was trying to cheat in my own local host server ( server that we can create by HOST GAME buttom )

     

    and i got a ban from mta with trainer reason and for 10 days

    plz unban me i have a lot of works in other servers

     

    serial : 63B83B492BA17C07EC8E57AB9CB5B043

     

    and i promise i wont try to cheat any more

    1. Vinyard

      Vinyard

      Hi, welcome to the forums.

      We do not condone cheating in any forms.

      Wait for the ban expire and make sure you remove any traces of the cheat.

      Please take note that ban appeals and ban-related questions/issues are no longer being handled as of 25th January.
      You can read more about the changes affecting this here:

  8. Hello 

    Excuse me can you un ban me?

    My serial : 167FBF4977EF78D4D7ECD4937CDBDEA4 

    1. Vinyard

      Vinyard

      Unbanning yourself is not possible.

      As stated previously, if your ban is temporary, wait for it to expire.
      Otherwise, read the entire topic linked above. ?

    2. (See 2 other replies to this status update)

  9. разбаньте пажалуйста мой серийный номер  8CBE84DD813D37D42122BB18FAF98220

    1. Vinyard

      Vinyard

      Hi, welcome to the forums.

      Ban appeals and ban-related questions/issues are no longer being handled as of 25th January. You can read more about the changes affecting this here:

      If your ban is temporary (there's an expiration date on the ban prompt) then wait for it to expire and make sure you remove any malicious/suspicious programs from your device. If your ban is permanent, then please read the topic I've linked above.

      There's nothing to debate upon so please take my (short) explanation into account and cease asking about your ban as it may attract administrative punishments like it says in the topic linked above. ?

  10. Hello 

    Excuse me can you un ban me?

    My serial : 167FBF4977EF78D4D7ECD4937CDBDEA4 

    1. Vinyard

      Vinyard

      Hi, welcome to the forums.

      Ban appeals and ban-related questions/issues are no longer being handled as of 25th January. You can read more about the changes affecting this here:

      If your ban is temporary (there's an expiration date on the ban prompt) then wait for it to expire and make sure you remove any malicious/suspicious programs from your device. If your ban is permanent, then please read the topic I've linked above.

      There's nothing to debate upon so please take my (short) explanation into account and cease asking about your ban as it may attract administrative punishments like it says in the topic linked above. ?

    2. (See 2 other replies to this status update)

  11. Hello, don't be tired. Sorry, my system was infected and I didn't know. I like MTA very much. Please help me.

    * Your serial is: A01F4EF02BA9A4D4C6A46269EE7FEAE4

    1. Vinyard

      Vinyard

      Hi,

      Please take a look at this topic:

       

  12. Был забанен на проекте NextRP, хотелось бы получить разбан серийный номер: F971A02ABBC9CC42A4F9391BDFC01291

    Бан AC:TRAINER

    или сократите бан , больше не буду

    1. Vinyard

      Vinyard

      Hi, if your ban is temporary (there's a ban-duration time in the ban message), then wait for it to expire and you should be able to play again provided that you cease using cheating programs.

      Otherwise, please see this:

       

  13. Olá tenho uma duvida é possivel fazer um script que quando pessoa ativa no servidor notifica no discord nome do servidor eo ip que foi ativado ?

    1. Vinyard

      Vinyard

      Hi, welcome to the forums! ?

      I recommend you to post a topic here: https://forum.multitheftauto.com/forum/127-programação-em-lua/ so you can get better assistance in your native language and more exposure to your problem.

  14. Hello, my account was blocked because of the trainer and I asked and they said that running the program causes this problem, but I only go and play World of Warcraft during MTA when I sleep on the server.

    And if you can follow up and get me out

    My serial: 72F5E249DD9EEB0C4694FB7DE4ACAA53

    1. Vinyard

      Vinyard

      Hi, welcome to the forums.

      Ban appeals and ban-related questions/issues are no longer being handled as of 25th January. You can read more about the changes affecting this here:

      If your ban is temporary (you can tell by looking for an expiration date in the ban dialog), then wait for it to expire and make sure you have fully removed any malicious/cheating program from your device.

      If your ban is permanent, then please read the thread that I've linked above.

      There's nothing to debate upon so please take my (short) explanation into account and cease asking about your ban as it may attract administrative punishments like it says in the topic linked above. ?

    2. (See 1 other reply to this status update)

  15. fui banido por 4 dias por trainer so que estou sem entende o motivo, so foi eu alterar arquivos de textura que deu nisso!!! alguem pode ajudar?

    1. Vinyard

      Vinyard

      Hi, welcome to the forums.

      Ban appeals and ban-related questions/issues are no longer being handled as of 25th January. You can read more about the changes affecting this here:

      Wait for the ban to expire and make sure to remove any modifications/sketchy programs you've used to modify your game. Once this two criteria are met, you should be able to play again just fine.

      There's nothing to debate upon so please take my (short) explanation into account and cease asking about your ban as it may attract administrative punishments like it says in the topic linked above. ?

  16. Quiero reportar un servidor de MTA Argentino, se llama Argentina Limando Asfalto, los staff nunca responden las consultas, abusan del panel admin o staff sobre los users, en este caso a mi andando en moto un staff me exploto la moto desde el panel causando que yo muera, y luego me quejo con otro staff y el que me exploto antes al ser admin me mutea y me banea sin razon, porque podia haber pedido que me corra o algo en vez de explotarme, o sea, es abuso de panel por uso sin razon, y lo se porque he sido staff en varios servers de MTA SA. No puedo adjuntar imagenes porque son Screenshots y no me deja salvo que sea con un link

    1. Vinyard

      Vinyard

      Hi, welcome to the forums.

      I advise you to cease playing on that specific server and seek other servers that foster a better admin team and user environment.
      It's up to you to stop playing there if you've been treated poorly by that server's staff.

      Good luck! ?

  17. Добрый день! После переустановки Windows меня забанили с причиной "ИЗМЕНЕНИЕ СЕРИИ AC # 4". Ранее у меня был запрет на серийный номер: 4695EE4787DCB42E9BF19EA3D80E52F4.  Я попытался переустановить Windows снова, но это не помогло. Помогите мне, пожалуйста.

    Мой серийный номер: 430C015D20582ADC169AF4BDA7FDD903

    1. Vinyard

      Vinyard

      Hi, welcome to the forums.

      Ban appeals and ban-related questions/issues are no longer being handled as of 25th January. You can read more about the changes affecting this here:

      There's nothing to debate upon so please take my (short) explanation into account and cease asking about your ban as it may attract administrative punishments like it says in the topic linked above. ?

  18. APPLEATION FOR UNBAN,MY NUBMER B39976FCF3036C7AB461A5295E0465F3

    1. Vinyard

      Vinyard

      Hi, welcome to the forums.

      Ban appeals and ban-related questions/issues are no longer being handled as of 25th January. You can read more about the changes affecting this here:

      There's nothing to debate upon so please take my (short) explanation into account and cease asking about your ban as it may attract administrative punishments like it says in the topic linked above. ?

  19. nao fui desbanido dos 20 e nao criador de cheat e nunca fui!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! esse anti cheat ruim de voces como sempre banindo injustamente

    meu serial 

    1A16436A33465FCB83179F456D746994

    1. Vinyard

      Vinyard

      Hi, welcome to the forums.

      Ban appeals and ban-related questions/issues are no longer being handled as of 25th January. You can read more about the changes affecting this here:

      There's nothing to debate upon so please take my (short) explanation into account and cease asking about your ban as it may attract administrative punishments like it says in the topic linked above. ?

  20. сколько дней осталось до разблокировки аккаунта? ошибка ac #4 TRAINER

    1. Vinyard

      Vinyard

      Hi, welcome to the forums.

      Ban appeals and ban-related questions/issues are no longer being handled as of 25th January. You can read more about the changes affecting this here:

      If there's no indication in your ban message about the time left, it might not be a temporary ban, but rather a permanent one which will not expire.

      There's nothing to debate upon so please take my (short) explanation into account and cease asking about your ban as it may attract administrative punishments like it says in the topic linked above. ?

  21. Alguien me ayuda, cómo puedo sincronizar el hud con mi sistema de banco 

    1. Vinyard

      Vinyard

      Hi,

      It's better for you to post this in a new topic here: https://forum.multitheftauto.com/forum/167-scripting/

      Your chances are way higher to get an answer about it there than through this status update.

  22. hey

    I got hw spoofer ban despite reinstalling the system.And i did't used that. Please unban me thanks

    90F424F7DB9EC8FCFA750B9C9F025124

    1. Vinyard

      Vinyard

      Hi, please check out this topic regarding ban appeals:

       

  23. Здравствуйте, не могу зайти на свой сервер выдаёт ошибку Отключение [CD32] Отключение: Серийный номер заблокирован. Причина: АС #4 TRAINER / FORKS / PROVINCE / RPBOX / NEXTRP / BlACK RP HACK. Я читы не когда не использовала это ошибка!

    Мой серийный номер 2D9116306F71FFBF07D0657BBFF107E4

    1. Vinyard

      Vinyard

      Hi,

      Please create a ban appeal in the ban appeals section (https://forum.multitheftauto.com/forum/180-ban-appeals/) providing the information you posted here.

  24. alguem para me ajudar, estou no aguardo..

    1. Vinyard

      Vinyard

      Hi,

      Please take into account the following:

      Please have patience as your ban appeal will eventually be reviewed by the anticheat team.
      There's no need to further raise awareness about this, nor to bump your topic - this will not expedite the process, but instead it will put you in a position for further administrative action as per the rules.

      Happy holidays!

  25. Olá, estou tentando entrar em alguns servidores do MTA e todos aparecem a seguinte mensagem: " Você foi desconectado [CD47] // Desconectado: Você foi banido do servidor por MTA - Reason: TRAINER

    Bom, eu não sei sobre o que isto está relacionado, mas posso garantir que não é por uso de hack ou mods  

     

     

     https://prnt.sc/YY5kGY2cCwGF

    1. Vinyard

      Vinyard

      Hello,

      Please create a topic in the ban appeals section here: https://forum.multitheftauto.com/forum/180-ban-appeals/

      Make sure to include your game serial. You can grab it by launching MTA, opening the console (F8 key by default) and typing 'serial' without any quotes.

×
×
  • Create New...