Jump to content

FallenGod

Members
  • Posts

    29
  • Joined

  • Last visited

  • Days Won

    1

FallenGod last won the day on August 4 2023

FallenGod had the most liked content!

1 Follower

Details

  • Gang
    RothsChilD
  • Location
    Iran , Rasht
  • Occupation
    Gunner
  • Interests
    MTA Lua Developer , HTML & JS Scripter , SQL Dev

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

FallenGod's Achievements

Advanced Member

Advanced Member (8/54)

3

Reputation

  1. Hi , I think all MTA ports are blocked, because in MTA , no server is loaded in the server list, nor can I connect to a server. I ran MTADIag.exe and it gave me the following pastebin link : https://pastebin.mtasa.com/2127323442
  2. Hi , how to give X Y Pos And Get On Ground Z Pos ?
  3. You Can Run Ped With https://wiki.multitheftauto.com/wiki/FindRotation
  4. Edit mtaserver.conf , Acl.xml , BanList.xml
  5. Sure , You Can Buy , if You Want Buy Dm Me On Discord : ErroR#3727
  6. You Can't Create New Dim But You Can Get Free Dim With https://wiki.multitheftauto.com/wiki/GetFreeDimension
  7. Use Thats Code : --== Script By ErroR (FullOffeD) ==-- local weaponID = 24 local newFireRate = 250 -- This sets the weapon to fire every 250 milliseconds (4 shots per second) setWeaponProperty(weaponID, "poor", "fireRate", newFireRate) setWeaponProperty(weaponID, "std", "fireRate", newFireRate) setWeaponProperty(weaponID, "pro", "fireRate", newFireRate)
  8. Hi I Hope I Can Help You --== Script By ErroR (FullOffeD) ==-- -- Set the target position local targetX, targetY, targetZ = 100, 200, 10 -- Create the vehicle local vehicle = createVehicle(411, 0, 0, 0) -- Get Distance function getDistance(x1, y1, z1, x2, y2, z2) return math.sqrt((x2 - x1) ^ 2 + (y2 - y1) ^ 2 + (z2 - z1) ^ 2) end function moveVehicleToTarget() local x, y, z = getElementPosition(vehicle) local distance = getDistance(x, y, z, targetX, targetY, targetZ) -- Speed To Move local speed = 5 if distance > 1 then local directionX = (targetX - x) / distance local directionY = (targetY - y) / distance local directionZ = (targetZ - z) / distance setElementPosition(vehicle, x + directionX * speed, y + directionY * speed, z + directionZ * speed) addEventHandler("onClientRender", root, moveVehicleToTarget) else removeEventHandler("onClientRender", root, moveVehicleToTarget) end end Use Thats Code To Move Vehicle To Your Custom x,y,z Without Player
  9. Thats Not Gui , Thats is Dx and Thats Draw Camera Target if You Buy Thats Script You Can Send Me Messages on Telegram (@MrGhaziO) , Discord (ErroR#3727)
  10. You Can Use https://wiki.multitheftauto.com/wiki/DxDrawText Or https://wiki.multitheftauto.com/wiki/GuiCreateLabel To Draw Text On Player Screen
  11. Hey Bro i Hope I Can Help You , You Can Use isObjectInACLGroup (https://wiki.multitheftauto.com/wiki/IsObjectInACLGroup) To Detect is Player In ACL Or Not And You Can Use attachElement (https://wiki.multitheftauto.com/wiki/AttachElements) To Attach Vehicle To Player
  12. Hi , You Can Use BindKey (https://wiki.multitheftauto.com/wiki/BindKey) Movment Keys (W,S,A,D) To Detect Player Move And Use playSFX (https://wiki.multitheftauto.com/wiki/PlaySFX) To Play SFX For source Player Or Can Use playSFX3D ( https://wiki.multitheftauto.com/wiki/PlaySFX3D) To Play 3D SFX To All Players
×
×
  • Create New...