-
Posts
880 -
Joined
-
Last visited
-
Days Won
60
Everything posted by Shady1
-
"Main file is unsigned" If it still happens (or starts happening again after a while) when you reinstall MTA with official installer from multitheftauto.com, then your PC has a virus that modifies/corrupts EXE files on your PC, a common behavior of some viruses. Then it's your responsibility to do a full virus scan and solve it, then reinstall
-
check your computer's GPU and I have to say it's time to clean it
-
Download GTA:SA and MTA:SA again without mods and it will be fixed Link : https://nightly.multitheftauto.com/
-
SOLUTIONS: Find another server to play on Upgrade your PC's hardware (most important is the amount of RAM memory) and perform some OS mainentance, limit the amount of processes using up memory. If you're on a 32-bit OS, install a 64-bit version. For more information, please read https://forum.mtasa.com/topic/78081-32-bit-windows-crashing/
-
SOLUTIONS: Find another server to play on Upgrade your PC's hardware (most important is the amount of RAM memory) and perform some OS mainentance, limit the amount of processes using up memory. If you're on a 32-bit OS, install a 64-bit version. For more information, please read https://forum.mtasa.com/topic/78081-32-bit-windows-crashing/
-
eğer bu sorunu sadece kendi sunucunda yaşıyorsan, bütün modellerini ve scriptlerini kontrol et, örneğin en son eklediğin script, kötü modlanmış dosyadan kaynaklanıyor
-
Hello Everyone so finally the mapping side of our project is finished and you can watch the tralier of our map on youtube, me and my team put a lot of effort into this project and we struggled to do the best we could now the video is live and you can watch it, very soon we will provide you with access to our server, but before that some tests need to be done, so I think it will take a few days,We will take care to update and update the map of our project with each passing time, so we would like to hear your ideas, if you have any thoughts on this, please contact us. The map side of our project is 100% completed, we are still making efforts to do something on the script side, so we are trying to get our server active with the beta version as soon as possible... I am grateful to everyone who supported me in this project and thank you very much to my team, we will achieve better things together, I am proud of you (Fade2Black Development Team) Discord : https://discord.gg/NjrCCMHtwc
-
-- First, create a variable to store the size of the colshape local colshapeSize = 5 -- Let's assign a default size of 5 units -- Function to create a square colshape function createSquareColshape(x, y, z) local size = colshapeSize -- Get the colshape size local colshape = createColRectangle(x - size / 2, y - size / 2, size, size) -- Create the square colshape return colshape -- Return the created colshape end -- Function to adjust the colshape size function setColshapeSize(newSize) colshapeSize = newSize -- Set the new size end -- Create a square colshape for testing purposes addCommandHandler("squarecolshape", function(player) local x, y, z = getElementPosition(player) -- Get the position of the player executing the command local colshape = createSquareColshape(x, y, z) -- Create the square colshape outputChatBox("Square colshape created!", player) -- Send a message indicating the colshape is created end) -- Add a command to adjust the size addCommandHandler("colshapesize", function(player, cmd, newSize) newSize = tonumber(newSize) -- Convert the argument to a number if newSize then setColshapeSize(newSize) -- Set the colshape size outputChatBox("Colshape size set to " .. newSize .. "!", player) -- Send a message indicating the size is set else outputChatBox("Invalid size. Please enter a number!", player) -- Send an error message for an invalid size end end)
-
Disabling Kaspersky while playing MTA, changing security product
-
MTA'yı onedrive klasöründen çıkart ve öyle giriş yap, yani GTA:SA ve MTA:SA dosyaların OneDrive uzantısında olmamalı "C:\Users\kaanp\OneDrive\Masaüstü\GTA-TÜRKÇE-KATILIMSIZ" bu sorunu bu konudada belirttiğim gibi yapmalısınz.
-
mtadiag çalıştır ve pastebin./xxxx kodunu gönder
-
tekrar giriş yapmayı dene düzeldi
-
First topic of 2024, greetings everyone
-
olala happy holidays
-
bu sorun iki ihtimalle karşıdır, birinicisi sürücülerle yani driver ile alakalı, driverlarını son güncelle, bu olmazsa bilgisayarını komple tarama yap,virüs taraması ve daha sonra tekrar mta indir dene.
-
https://www.youtube.com/watch?v=SJYyQ5mONxE
-
I can help you discord : shady.lua
-
function disableWeaponControls() toggleControl(source, "fire", false) toggleControl(source, "aim_weapon", false) toggleControl(source, "next_weapon", false) toggleControl(source, "previous_weapon", false) end addEventHandler("onPlayerJoin", root, disableWeaponControls) https://wiki.multitheftauto.com/wiki/ToggleControl
- 1 reply
-
- 1
-
-
HTTP server file mismatch! sorunu, illaki bir kerede olsa bu sorunu yaşadığınızda tek yapmanız gereken %99 çözüm olan mta clientini 1 kereliğine tekrardan başlatmanız gerekmektedir, eğer bu işe yaramazsa MTA dosya konumundan client tarafında yüklenilen server dosyalarını silin ve MTA'yı 1 kereliğine yönetici olarak çalıştırın, bu sorun düzelecektir, eğer sunucu sahibiyseniz bu sorunu yaşamak istemezseniz scriptin meta.xml tarafında düzenlemeler yapmanızı tavsiye ediyorum, örneğin <script src="server.lua" type="server" /> ise server.lua tarafını servers.lua gibi yapabilirsiniz ve dosya ismini değiştirmenizi öneririm, bu sorun %99 çözüm odaklıdır konuyla ilgili github bağlantısı : https://github.com/multitheftauto/mtasa-blue/issues/1340#issuecomment-719798067
-
local theVehicles = {} local spamTick = 0 local isRobbed = false function findVehsToRob(player) local vehicle = getNearestElement(player, "vehicle", 100) if (getTickCount() - spamTick < 100000) then outputChatBox("You are robbing a vehicle already", player, 255, 0, 0) return false end if isRobbed then return end spamTick = getTickCount() if (vehicle) then local x, y, z = getElementPosition(vehicle) local rx, ry, rz = getElementRotation(vehicle) local model = getElementModel(vehicle) robVeh = createVehicle(model, x, y, z) destroyElement(vehicle) setElementRotation(robVeh, rx, ry, rz) setVehicleLocked(robVeh, true) theVehicles[#theVehicles + 1] = robVeh outputChatBox("You're attempting to steal this vehicle, complete your tasks !", player, 0, 128, 0) triggerClientEvent(player, "sendTableToClient", player, theVehicles) addEventHandler("onVehicleStartEnter", robVeh, startRobbery) addEventHandler("onVehicleEnter", robVeh, taskOnEnter) isRobbed = true else outputChatBox("There is no nearby vehicle to steal", player, 255, 255, 255) end end addCommandHandler("robvehicle", findVehsToRob)
-
server is activated Server IP Address : mtasa://91.134.166.75:22013