Jump to content

#!_A7M8D

Members
  • Posts

    56
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by #!_A7M8D

  1. Awesome design Good Job !
  2. Hello @thund3rbird23 , Can you show us video and we will try to know how they did they they may be using a custom object for the engine Cheers !
  3. #!_A7M8D

    Minimap

    Hello you need to edit and customize the script manually Cheers !
  4. Hello You only need createObject destroyElement Cheers!
  5. Hello in your server you will find script named "traffic" this script create vehicles in the world but original game's peds cant be done because syncing client with server will cost too much ram from player pc and server from the server Cheers !
  6. Hello i think that GTA SA Plates consits of two part ( inner , outer ) You can use dxDrawText and create your custom plate Cheers
  7. Hello Change setElementModel(player, skin) To setElementModel(client, skin) Cheers!
  8. السلام عليكم اللعبة لم تعد مثل زمان من ناحية عدد المبرمجين و أصحاب السيرفرات السيرفرات الكبيرة فقط لسا شغالة و فيها عدد لكن زمان كان عدد المبرمجين و الي يتعلمو برمجة كبير جدا بالتوفيق ومرحبا بك مجددا
  9. #!_A7M8D

    resources limit

    Hello the answer is no but more mods will consume more resources Disk space , processor , ram of your server Cheers !
  10. Hello link not working Cheers !
  11. Hello , i think because gta sa is limited world so engine is a part of the vehicle you can get more parts position https://wiki.multitheftauto.com/wiki/GetVehicleComponentPosition https://wiki.multitheftauto.com/wiki/Vehicle_Components Cheers!
  12. @MoOoOdE مرحبا اسم السكربت الأصلي : votemanager تقدر تطفيه
  13. مرحبا شرح التحميل السريع https://wiki.multitheftauto.com/wiki/Installing_and_Configuring_Nginx_as_an_External_Web_Server اذا لم تكن صاحب الاستضافة يمكنك التواصل مع الدعم الفني لتشغيل التحميل السريع
  14. Hello function deanimated( ammo, attacker, weapon, bodypart ) if (attacker) then if (getElementType ( attacker ) == "player") and (getElementType ( source ) == "ped") then if (getElementData (source, "zombie") == true) then local oldZcount = getElementData ( attacker, "Zombie kills" ) if oldZcount ~= false then setElementData ( attacker, "Zombie kills", oldZcount+1 ) triggerEvent ( "onZombieWasted", source, attacker, weapon, bodypart ) else setElementData ( attacker, "Zombie kills", 1 ) triggerEvent ( "onZombieWasted", source, attacker, weapon, bodypart ) end end end end end addEventHandler("onPedWasted", root, deanimated) if you want to use convertNumber use it when showing the data not with setElementData. Cheers!
  15. Hello To prevent player from spawining Vehicle in specfic area createColPolygon isElementWithinColShape To destroy vehicle when enter the area "onClientColShapeHit" destroyElement Cheers!
  16. #!_A7M8D

    PHP SDK

    Hello The answer is : Yes , you can for example if you can get some server information you will create a ( MTA Function ) that return server's information then by php sdk you will call this function to get the information Everything is clear here : https://wiki.multitheftauto.com/wiki/PHP_SDK Note : SDK requires PHP 7.1 or greater. Cheers!
  17. Hello , You need to use function createRadarArea https://wiki.multitheftauto.com/wiki/CreateRadarArea Cheers!
  18. Hello You can find related resources at https://community.multitheftauto.com/ OR You can create you own https://wiki.multitheftauto.com/ Cheers!
  19. Hello Can you explain the problem more clearly Cheers!
  20. #!_A7M8D

    F1

    function toggleWindow ( ) local b = guiGetVisible(windowName) guiSetVisible(windowName,not b) showCursor(not b) showChat(not b) end bindKey( "F1", "down", toggleWindow ) windowName = اسم اللوحة
  21. Hello Bans is based on MTA Serial So This suggesion is impossible because players can use this to unban themselves Cheers!
  22. Hello you can create ACL Groups For Example "Police" then checks if his account in this group or not local accName = getAccountName ( getPlayerAccount ( thePlayer ) ) -- get his account name if isObjectInACLGroup ("user."..accName, aclGetGroup ( "Police" ) ) then end Cheers!
  23. Hello its possible by using shader check Ped shell Shader (For Example) : https://wiki.multitheftauto.com/wiki/Shader_examples Cheers!
  24. Hello you have client.lua and server.lua so this is the meta.xml file <meta> <script src="client.lua" type="client"/> <script src="server.lua" type="server"/> </meta> You can read more about meta.xml file : https://wiki.multitheftauto.com/wiki/Meta.xml Cheers!
×
×
  • Create New...