Jump to content

Fabioxps

Members
  • Posts

    229
  • Joined

  • Last visited

Everything posted by Fabioxps

  1. i'm trying to crop a top-down image but this error is happening https://ibb.co/Zg1y0hv image<< from mta
  2. I thought that this error has already been fixed in linux https://bugs.multitheftauto.com/view.php?id=8144 DEBIAN * Connected! [MTA:SA Server 1.5.7 [GNU/Linux x64]] Server Voice Chat Quality [10]; Sample Rate: [32000Hz]; Bitrate [44000bps] Server FPS limit: 59 Server AC info: [Allowed client files: None] [Disabled AC: None] [Enabled SD: None] External HTTP file mismatch (Retrying this file with internal HTTP) [Piloto-Automatico\readme.lua] External HTTP file mismatch (Retrying this file with internal HTTP) [factions\files\myriadproregular.ttf] HTTP server file mismatch! (factions) myriadproregular.ttf [CRC could not open file: No such file or directory] Download error: HTTP server file mismatch! (factions) myriadproregular.ttf [CRC could not open file: No such file or directory] Debian 9 - deprecated - 2020-10-06
  3. não, o mapa é original do gta, mas isso acontece com carros motos
  4. https://imgur.com/a/5YbucCC hey guys vehicles entering the ground does anyone know what causes this is some function? this is very annoying
  5. exactly this is a very old bug but it looks like it hasn't been fixed yet
  6. I'm a screenwriter and I'm going crazy the images of the scripts / resources are disappearing and causing a long delay and sometimes I connect to another server and the street textures continue https://imgur.com/a/vIHcb6h https://imgur.com/a/vIHcb6h
  7. thank you and it's an honor for me to have you here
  8. sorry for my bad English I am Brazilian come on. local tabela = { [1], [2], [3], [4], [5], [6], [7] } for i=1 #tabela do dxDrawRectangle() end each 6 items in the table the next ones will be created in a new line
  9. I am making an inventory each line of this inventory has 6 rectangles how can I make a function to detect every 6 rectangles skip a line and draw the next 6 below
  10. does anyone know the name of the script that generates the image of any mta vehicle
  11. local fonts = { dxCreateFont(...), dxCreateFont(...), } Is it necessary to use this code? addEventHandler( "onClientResourceStop", resourceRoot,function() for i=1, #fonts do destroyElement(fonts[i]) end end) or sources are destroyed without needing to call destroyElement
  12. function playerWasted() removePedFromVehicle(source) triggerClientEvent(source,"checkRemovedVehicleInClient",source) end addEventHandler("onPlayerWasted", root, playerWasted) client addEvent("checkRemovedVehicleInClient",true) addEventHandler("checkRemovedVehicleInClient",localPlayer,function() local vehicle = getPedOccupiedVehicle(localPlayer) if vehicle then print("in vehicle") else print("not in vehicle") end end)
  13. I do not know how to report the error can someone do this for me?
  14. when I use this on the server removePedFromVehicle(...) and use this on he client print(tostring(getPedOccupiedVehicle(localPlayer))) the player is still in the vehicle
  15. how to fix the problem of a player's camera when he dies by explosion? if I die in an explosion and try to put my camera on another player she comes back to me
  16. thank you all and zl | Lucas thanks for understanding what I want to do
  17. resourceRoot retorna apenas recursos root retorna todos
  18. when I use an Event trigger this player will also receive this call I do not want to create a new element and I also do not want to use a loop to get players
  19. it is possible to define this parent setElementParent(player,resourceRoot) --server addCommandHandler("a",function() for id, element in pairs(getElementChildren(resourceRoot)) do outputChatBox(type(element))-- not return end end)
×
×
  • Create New...