Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 05/02/22 in all areas

  1. I've created this lightweight script that allows you to search all of GTA:SA's ide files (+SAMP) in-game using a simple command. These IDE files contain information about all models in the game (ID, dff, txd, etc). https://gta.fandom.com/wiki/IDE For example, you can use this script to find which DFF models use a certain TXD file. For people trying to add environment mods from SA-MP into an MTA server this can save you some time finding the model IDs of your DFF & TXD files ? GitHub repository: https://github.com/Fernando-A-Rocha/mta-ide-search Community: https://community.multitheftauto.com/index.php?p=resources&s=details&id=18651 /searchide /listide
    3 points
  2. Summary: Off the end of my hiatus, I returned to MTA after 6 years to pick up LUA once again and make something cool of the game that I(and many others), love the most. I was originally going to develop the gamemode to a playable point and then open source it for others to contribute and play, but after talks with a few people I have decided to keep the project private and host it when completed. So at the moment, this project is a Work In Progress, and I'm working on it on my own. But in such a short space of time, it has came a long way. The script is written the script from scratch, beginning on the 22/12/2022. I wanted the script tailored to be exactly what we need from it, no other garbage. I know these are advertisements for "Servers to Play On", but I'd like to see how much interest I can drum up to see if there's a potential playerbase, thus not wasting my time. The Lore: The background story to the lore of the server scenario is that it's 6 months into the zombie apocalypse. If you've made it this far, you must have some kind of clue so please roleplay as though you do. People are scarce, energy and fuel is scarce, items are scarce. Zombies move around in large herds. You must do what you have to do to survive. The source of the virus is unknown, but you're welcome to conspire your own theories. Roleplay: This is a roleplaying server, however you are only asked to roleplay when it affects another players experience. For instance, when encountering new players, trading with players, firefights, stealing another players vehicles/items etc. If you're playing solo and there's no-one around, play as you wish. If a bear :~s in the woods, and nobody is around... Staff: I'd like to keep staff interaction with roleplay minimal, so you can play without the need to report for an admin, and have them come to complete a task. I believe staff should only require involvement with player to player, or game-breaking bugs. Showcase: I will include a few links to screenshots, videos etc here to stuff I've been working on or made, but I can't promise I'll stay completely up to date with it. Fishing: https://youtu.be/-vuAC-4Iouo Vehicle Dashboard: https://youtu.be/ePV3rRbt7j0 Abseiling & NVG's: https://youtu.be/T-o8_IqDhaY Prone Animation: https://youtu.be/tAr61LadAdg Vehicle Refueling: https://youtu.be/92BPKAVXy2E Character Descriptions: https://youtu.be/XpcJlCVtFao Weapon Raising/Lowering & Sprinting: https://youtu.be/aQQj9thAXZA Vehicle Crashes: https://youtu.be/HzD6e8x_GW4 Realistic Vehicle Handling: https://youtu.be/sqG4hut3J_M Reload & Dry Firing Sounds: https://youtu.be/AC22-DD3_p4 Weapons, Magazines & Ammunition: https://youtu.be/WWitr8Q9QuA Player, Vehicle & Container Inventories, Character Customization & Clothing States: https://youtu.be/TGP4IjYeiEw Base Building W.I.P Demo: https://youtu.be/qunJQDzSIzU Scuba Diving W.I.P Demo: https://youtu.be/38NPWMAjicA Custom Text Signposts: https://www.youtube.com/watch?v=yzJFJ3FvPT0 Weapon Attachments: https://youtu.be/Dmll7y9r_i0 Switching Pistol Animations: https://www.youtube.com/watch?v=KAa1rAHDuwk Website: http://6monthzin.com/ Discord: https://discord.gg/FSUYd3mK
    1 point
  3. i solved the problem with using callback for must of them but some of them when i use callback get attempt to call global ' ' nil value like this code:
    1 point
  4. 10/10 Project. Worth checking out! Keep it up @TheManTheMythTheLegend You're very talented
    1 point
  5. Nando coming through with the goodies as per! Top man
    1 point
  6. I don't know this error maybe you can ask someone else
    1 point
  7. server: function darcosas(precio) local cuenta = getPlayerAccount(source) if (cuenta) and not isGuestAccount (cuenta) then outputDebugString("You selected "..precio) end end addEvent("Dar", true) addEventHandler("Dar", getRootElement(), darcosas) client: function comprarGUI() local item = guiGridListGetSelectedItem(lista) if (item>=0)then local precio = guiGridListGetItemText(lista, guiGridListGetSelectedItem (lista), 2) local dinero = getPlayerMoney(localPlayer) if(dinero >= tonumber(precio)) then item = item + 1 cerrarGUI() triggerServerEvent("Dar", localPlayer, precio) --<----------- else outputChatBox("Test 1", 255, 0, 0) end else outputChatBox("Test 2", 255, 0, 0) can you try this code, it will output according to the column selected by the player
    1 point
  8. I'm not sure if you want to send the whole table but you can use events for that example: server: addEvent("sendTableToServer", true) addEventHandler("sendTableToServer", root, function(theTable) --the table we will get for i,_ in ipairs(theTable) do outputDebugString(theTable[i]) --Output: Banana Cucumber Eggplant end end ) client: local clientTable = {"Banana", "Cucumber", "Eggplant"} addCommandHandler("sendtable", function() triggerServerEvent("sendTableToServer", localPlayer, clientTable) -- send the whole table as it is end )
    1 point
  9. looking forward to seeing this become a thing, it's been a while since someone last created a zombie survival RP server!
    1 point
  10. You cannot change this, they are fundamental processes for the operation of MTASA.
    1 point
×
×
  • Create New...