Jump to content

Search the Community

Showing results for tags 'gta'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • Multi Theft Auto: San Andreas 1.x
    • Support for MTA:SA 1.x
    • User Guides
    • Open Source Contributors
    • Suggestions
    • [Read-Only] Ban appeals
  • General MTA
    • News
    • Media
    • Site/Forum/Discord/Mantis/Wiki related
    • MTA Chat
    • Other languages
  • MTA Community
    • Scripting
    • Maps
    • Resources
    • Other Creations & GTA modding
    • Competitive gameplay
    • Servers
  • Other
    • General
    • Multi Theft Auto 0.5r2
    • Third party GTA mods
  • Archive
    • Archived Items
    • Trash

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


Member Title


Gang


Location


Occupation


Interests

  1. ENG: Hello. I am working on implementation of Fastman Limit Adjuster encryption in client (namely game_sa module). To support encryption (enhanced IMG archives), I need to call a custom function to load IMG archives ( CD ) in GTA SA is a function like ( LoadCdDirectory ) in FLA is a function:/ /// Loads CD directory in GTA SA. Works only if enhanced IMG archives are enabled! F92_LA_API void LoadCdDirectoryInGTASA( tImgDescriptorInGTASA *pIMGdescriptor, int imgId, tGTASAimgLoadingCall* pLoadingCall ); The question is whether there is already a hook function to load the archives of the standard GTA SA ( approximate name ~ LoadCdDirectory ). In the MTA client source code, in particular in the module game_sa pored in game_sa could not find exactly the hook for loading the IMG archive itself. RU: Здравствуйте. Занимаюсь внедрением шифровки от Fastman Limit Adjuster в клиент( а именно модуль game_sa ). Чтобы шифровка поддерживалась(enhanced IMG archives), мне надо вызвать кастомную функцию подгрузки IMG архивов ( CD ) в GTA SA это функция типо ( LoadCdDirectory ) в FLA это функция: //// Loads CD directory in GTA SA. Works only if enhanced IMG archives are enabled! F92_LA_API void LoadCdDirectoryInGTASA( tImgDescriptorInGTASA *pIMGdescriptor, int imgId, tGTASAimgLoadingCall* pLoadingCall ); Вопрос заключаеться в том, есть ли уже хук функции подгрузки архивов стандартной GTA SA ( примерное название ~ LoadCdDirectory ). В клиенте МТА, в частности в модуле game_sa Порылся в game_sa не смог найти именно хука подгурзки самого IMG архива
  2. ¡Bienvenido a Legacy Roleplay! Un proyecto creado por los representantes de servidores exitosos Nos unimos para traerte algo nunca visto: Sistemas únicos Programación de alto nivel Ciudades inspiradas en latam y empresas internacionales y barrios reales Disponible para todo LATAM Aún estamos construyendo esta ciudad para ti, pero muy pronto podrás formar parte de ella. ¡Apóyanos y sé parte del legado! —————————————————————- Welcome to Legacy Roleplay! A project created by representatives of successful servers We’ve come together to bring you something never seen before: Unique Systems High-Level Programming Cities Inspired by LATAM, International Companies, and Real Neighborhoods Available for All of LATAM We’re still building this city for you, but very soon, you’ll be able to be part of it. Support us and become part of the legacy! https://discord.gg/legacyrpmta
  3. estou com problema no mta não consigo atira com nem uma arma ja tentei reinstalar o gta não foi, da pra mirar mais não atirar
  4. Desde Paragon Tropical RP queremos invitarte a unirte a nuestro servidor. Servidor de rol serio,+18, con mafia admin activa diariamente, bandas disponibles y gratis, cuerpos de la LSPD y EMS con los script de Origen, multitud de negocios disponibles y gratuitos, trabajos disponibles para cualquier jugador (minero, limpiacristales...), Eventos semanales con premios de vehículos, dinero en efectivo y mucho mas. Os estamos esperando!! Si eres streamer, abre ticket en nuestro discord y pregunta sobre las ventajas que puedes obtener. Discord: https://discord.gg/paragontropical Tiktok: https://www.tiktok.com/@paragon.company.servers Tiktok 2: https://www.tiktok.com/@paragontropical web: https:// paragon-company.net/
  5. Sky Project The server about the Ukrainian city of Chernihiv was created on the basis of the MTA. Map of the real city, RP, detailed transport models, job system, factions, fun atmosphere We are waiting for everyone!!! Discord:https://discord.gg/erDSHhyn TikTok:https://www.tiktok.com/@sky_project_mta?is_from_webapp=1&sender_device=pc -------------------------------------------------------------------------------------------- Sky Project Сервер про українське місто Чернігів створений на базі МТА. Мапа реального міста, РП, деталізовані моделі транспорту, система робіт, фракції, весела атмосфера Чекаємо усіх охочих!!! Discord:https://discord.gg/erDSHhyn TikTok:https://www.tiktok.com/@sky_project_mta?is_from_webapp=1&sender_device=pc
  6. Xwaw

    Ped scripting

    Ok so recently I was thinking of reworking the police from gta san andreas to mta san andreas and making a police waves style minigame you have to survive. I have an idea how to do it but I don't know if the engine will allow me to do it. So my question is, if I want to program a ped to get to the player's position avoiding obstacles (without jumping over them) with the a* algorithm, am I able to do that? Because the last time I did this type of thing, one such npc could crash my entire game. As for the respawn of such bots, it would work more or less in the same way as in the original version of gta sa
  7. hi guys I created a reporter camera but it has a problem When the person holding the camera turns, the camera does not turn with the person this is my code ``` x,y,z = getElementPosition(localPlayer) local camera = createObject(367,x, y, z) function updatePed() setElementBoneRotation(localPlayer,22,0, -60, 0) setElementBoneRotation(localPlayer,23,90, -100, 80) setElementBoneRotation(localPlayer,24,80, 30, 0) setElementBoneRotation(localPlayer,32,0, -85, 10) setElementBoneRotation(localPlayer,33,-70, -108, -30) updateElementRpHAnim (localPlayer) addEventHandler ("onClientPedsProcessed", getRootElement(), updatePed) end addCommandHandler("setanim1",updatePed) function dadancamera() setElementData(camera,"startlive",true) triggerServerEvent("messagelive",root) exports.bone_attach:attachElementToBone(camera,localPlayer,1, 0.15, 0.25, -0.1, 0, 0, 90) end addCommandHandler("setanim1",dadancamera) function updatePed2() removeEventHandler("onClientPedsProcessed", getRootElement(), updatePed) destroyElement(camera) end addCommandHandler("setanim2",updatePed2) function didanlive() if getElementData(camera,"startlive") == true then addEventHandler ( "onClientRender", root, didanlive ) x,y,z = getElementPosition(localPlayer) x2,y2,z2 = getElementPosition(camera) x4,y4,z4 = getElementRotation(camera) x3,y3,z3 = getElementRotation(localPlayer) setCameraMatrix(x2,y2,z2,x,y,z2,0,0) end end addCommandHandler("live",didanlive) function camset() setCameraTarget(localPlayer) removeEventHandler ( "onClientRender", root, didanlive ) end addCommandHandler("ended",camset) ```
  8. Hi All Are you looking for a freeroam server that has tons of custom mods and features, but don't want too many rules and restrictions? Then COOPERA Freeroam boredom just might be the right server for you! We have options like mapping and attaching for creative players, command line based so you actually can learn from it. We also have a lot of car mods and drifting opportunities to race yourself towards the finish! So, that's only a part of what our server can offer you, and if you are interested to check it out please copy the following link in your MTA: Server IP: mtasa://23.88.73.88:12641 LINKS : Join our forum site: https://powercs.ro/forum/ Vote Server : https://serverstoplist.com/server-coopera-powercs-ro-freeroam-server-18-564668 Server informatin : https://www.game-state.com/23.88.73.88:12641/
  9. Heya all, Are you looking for a freeroam server that has tons of custom mods and features, but don't want too many rules and restrictions? Then JohnFlower's Freeroam boredom just might be the right server for you! We have options like mapping and attaching for creative players, command line based so you actually can learn from it. We also have a lot of car mods and drifting opportunities to race yourself towards the finish! Not knowing what to do and got some spare time left? We got you covered with our in-game cinema and skins to start off an RPG. JohnFlower started the server in 2010, in collaboration with Cave Johnson. Since then the player base grew rapidly and the community became larger and larger. We basically have one rule when you are online and that's not to be a cu*t. We assume you know yourself what's okay and what not. Our staff members will act tho when things start to escalate. So, that's only a part of what our server can offer you, and if you are interested to check it out please copy the following link in your MTA: Server IP: mtasa://37.187.79.138:22003 Links: Join our Discord server: https://discord.gg/sC2DNRV Join our Steam group: https://steamcommunity.com/groups/JohnFlowers_Freeroam_boredom# Join our forum site: https://ilypetals.net/forum/ Join our IRC channel: https://www.irccloud.com/invite?channel=%23Flower.mta&hostname=irc6.rizon.net&port=6697&ssl=1 (If you use a different nickname than you use ingame, or if you are not affiliated with JohnFlower's server at all, ping @n0rt0x on IRC) Join our Facebook community: https://www.facebook.com/groups/318236555248301/ Regards, n0rt0x
  10. Hello everyone! I would like to try out some good and realistic Graphics Mode that is compatible with MTA and that I can use freely without being banned. Something like this: https://www.youtube.com/watch?v=8b4esMdWzP8
  11. Hello friends, today I will share with you a very simple and under development hud. To get rid of FPS and screen pollution, it is enough to install and run the hud I made on your server. Download > Link
  12. İP: mtasa://213.238.166.21:22003 GoodFellas Roleplay Kaliteli MTA:SA Roleplay Sunucusu Türk/Medium/Global/Sesli Discord Adresi:https://discord.gg/G3shD4ksMC
  13. ┏━━━━━━━•°•☆•°•━━━━━━━┓ ????T?? ???????? ┗━━━━━━━•°•☆•°•━━━━━━━┛ ➤ 「 Sistema de Tunagem 」 ➤ 「 Customizar Personagem 」 ➤ 「 Mobiliar Propriedade 」 ➤ 「 Vagas para Staff 」 ➤ 「 Sistema de Drogas 」 ➤ 「 Desmanche de Veículos 」 ➤ 「 Eventos 」 ➤ 「 Caixa Eletrônico pela cidade 」 ➤ 「 Favela para Conquistar 」 ➤ 「 3 Vips 」 ➤ 「 E muito mais 」 ???????: https://discord.gg/Qda69QA4up T??????: https://youtu.be/itGpznafmGM ⫸ MTASA://192.99.138.63:22009 ⫷
  14. Hello, i'm working on editing IFP animations from GTA San Andreas, using Blender and the GTAToolsForBlender Addon, but I have a enoying problem. When I try to export my IFP file, an error message appears to me: https://imgur.com/gallery/1zINVGK It's an error from the addon or there is a step that I'm not seeing?
  15. Criei uma skin pro meu gta sa, editei o dff o txt usei o 3ds Max, mas na hora que eu coloco no jogo a skin fica toda branca, já mudei o nome dos arquivos e já coloquei a skin no lugar dos pedestres e continua branca
  16. Hello ! Let me tell you about TOUGH RP , what is it ? Well its a project created by "Skinny" This server is hard Rp, And is different from other servers This server will bring European Rp style and USA Rp style together forming a harmony. The server is not opened ! Its still in progress, we need Players, staff, anyone who wants to join us ! Just to mention that this server is not recommended for new MTA players, We suggest you start with a server that is not or is not trying to be HARD RP . For more details and info we will wait Everyone on our discord Server ===New players will benefit from an RP school run by the Founder=== https://discord.gg/CscwDs2XqM
  17. Hi, today I show this model to you. This model changes the Come a Lot Hotel, by a mall with interior and business. My Discord: Andrewss2#2404, information here on Discord! Payment: Paypal. Images:
  18. Hi everybody, I'll start to publish my creations here in this forum. Today I show off this modelling. Replaces the circus hotel of Las Venturas by a cinema based on a real life building. The cinema screen is a resource called: Loki's Cinema Experience, you can find it in the mta community. Please contact me by Discord: Andrewss2#2404. UNIQUE DISCORD!!!!. Images:
  19. NUEVO SERVIDOR DE MTA ROLEPLAY QUE ABRIO HACE MUY POCO! MAINRP -Normas justas e igualadas -Equipo personal activo -Eventos dinámicos y constantes -Facciones libres -Postulaciones para mafia / banda -Foro -Beneficios VIPS -Atracos -Chat de voz -Trabajos de EMS, LSPD, GOBIERNO, PESCADOR, BOMBEROS, REPORTERO Y MUCHO MAS https://discord.gg/Xs3X63vQth
  20. Quando eu vou abrir o mta ele n abre simplesmente fica carreando infinitamente e fecha, o meu gta san funciona normal e so o mta q n abre me ajuda pfvv
  21. Hello Guys , I'm ScoomaAli From Morocco , Today i want to show you my new project , FiveM Backup In Mta This is a screen from it
  22. In total, I have two questions, but on the same topic: - Is it possible to add an object instead of replacing it with another? - If not, what objects are not used by GTA / MTA San Andreas?
  23. Eai galera, de boa? preciso de uma ajuda de alguém que saiba como resolver, toda vez que dou spawn em algum veículo de duas rodas (moto e bicicleta) do meu server no mta eles ficam girando e alguns bugs de sombra ocorrem, só param alguns segundos depois, o mesmo ocorre na concessionaria quando clica para vizualizar a moto...gira em todos os ângulos por alguns segundos, ou então após sair de algum interior (agência, cnh...) também gira. Se alguém souber como resolver fico muito grato. Segue anexo uma imagem para exemplificar. https://ibb.co/BN9jrN4
×
×
  • Create New...