Jump to content

Shady1

Members
  • Posts

    864
  • Joined

  • Last visited

  • Days Won

    57

Everything posted by Shady1

  1. hello welcome to the forum, first you should check username or password, you may be entering wrong password,If the problem persists, could you please post the line of code so I can helpyou better?
  2. Shady1

    dxImage

    thanks for trying to add comments but your code is not working i think you need to improve this code or i can do it for you... bindKey has the same name as your function local isRendering function renderImage() end function bindRender() --change this isRendering = not isRendering outputDebugString(isRendering) if (isRendering) then addEventHandler('onClientRender', root, renderImage) return true end removeEventHandler('onClientRender', root, renderImage) end bindKey('o', 'down', bindRender)
  3. Shady1

    dxImage

    hi, thanks for tagging me and asking for help, I have prepared a line of code to help you, I hope it will be useful for you. you can do this using a variable and bindKey local isImage = false addEventHandler("onClientRender", root, function() if(isImage) then dxDrawImage(...) -- draw image if isImage true end end ) bindKey("o", "down", function() if(isImage) then isImage = false else isImage = true end end )
  4. if you're not having this problem on just every server, you should contact the administrators of the server you're having trouble with.
  5. welcome to the forum, i need an explanation about your problem, i recommend you to uninstall your install by "OneDrive" and install somewhere else. GTA path: C:\Users\matyj\OneDrive\Plocha\faktury tatika\GTA-SanAndreas you have to install GTA:SA and MTA:SA again, but remember don't install on "OneDrive" side
  6. klasik müşteri hizmetleri cevabı ilgilenmek istemiyorlar, her neyse bu konuda fazla bir fikrim yok, discord üzerindende size mesaj bildirdim, en yakın zamanda düzelmek dileyiyle, eğer mesajlarımı beğendiyseniz, yorumlarımı beğenebilirsiniz +REP ekstra olarak geçici olarak VPN kullanmanı tavsiye ederim ve superonline tarafına bir şikayet et @Quasch
  7. bu konuşmaları devam etmelisiniz, çünkü bu sorun superonline tarafından kaynaklanan bir sorun, onlara söylemelisiniz "sizin tarafınızda yaşanan bir hatadan/kısıtlamadan dolayı sunucu ile benim aramdaki trafiğin geçişine izin verilmiyor, sunucu, doğrulama paketlerimi alamıyor. bu sorunu sadece OVH tarafından barındırılan sunucularda yaşıyorum. benim dışımda bir sürü kişi bu sorundan mağdur."
  8. Selam, foruma hoşgeldiniz sorununuzla ilgili bir MTA ekibi metin hazırlamıştı size bu metni paylaşcağım, gerekeni yapmalısınız, iyi günler dilerim. "CD19 "MTA İstemci doğrulaması yapılamadı!" / CC23 "Bağlantı zaman aşımına uğradı" hatası: -İnternet sağlayıcınız Turkcell Superonline mı? (https://www.superonline.net/) -Bağlanmaya çalıştığınız sunucu OVH tarafından mı host ediliyor? (Öğrenmek için sunucu IPsini bu siteye girin https://www.abuseipdb.com/ ve Domain isminde OVH.com yazıp yazmadığına bakın) Eğer üsttekilerin her ikisi de doğruysa, Superonline yüzünden bağlantı sorunu yaşıyorsunuz. Superonline, kendi backendinde yaptığı bir hatadan/kısıtlamadan dolayı sizinle sunucu arasındaki trafiğin geçişine izin vermiyor, sunucu, doğrulama paketlerinizi alamıyor. Lütfen internet hizmet sağlayıcınız ile iletişime geçip onlara bu sorunu anlatın. Not: Eğer bütçeniz karşılıyorsa bu sorunu geçici olarak çözmek için VPN kullanabilirsiniz. Tercihen ExpressVPN, Private Internet Access ya da Windscribe. Lütfen bunu kesin çözüm olarak kullanmayın. Superonline'ı arayın ya da şikayet oluşturun, başkalarında da bu sorunun çözülmesi için harekete geçin. Superonline'ı arayınca şu mesajı iletebilirsiniz: "sizin tarafınızda yaşanan bir hatadan/kısıtlamadan dolayı sunucu ile benim aramdaki trafiğin geçişine izin verilmiyor, sunucu, doğrulama paketlerimi alamıyor. bu sorunu sadece OVH tarafından barındırılan sunucularda yaşıyorum. benim dışımda bir sürü kişi bu sorundan mağdur." -------------- Eğer Superonline kullanmıyorsanız MTA'yı birkaç kere kapat aç yapmayı deneyin."
  9. Shady1

    Crash

    https://answers.microsoft.com/en-us/windows/forum/all/applications-fail-to-start-with-kernelbasedll/44a4c2ad-a43f-479b-b026-bcdc2ff01285 first all hey! it's a kernelbase.dll error, probably out of VRAM/RAM/disk space, kernelbase.dll crashes these can be caused by many system and operating system issues (may be memory related issues)
  10. hello, I have prepared a code related to your problem, if your problem persists, you can try this code --client local x, y, z = 215.54638671875,2068.0607910156,20 local marker = createMarker(x, y, z, "cylinder", 1.3, 255, 0, 0) addEventHandler("onClientMarkerHit", marker, function(hitPlayer, matchingDimension) if hitPlayer == getLocalPlayer() then triggerServerEvent("giveWeaponToPlayer", hitPlayer, 23, 250) -- weapon id is 23 and ammo is 250 end end) --server addEvent("giveWeaponToPlayer", true) addEventHandler("giveWeaponToPlayer", root, function(weaponID, weaponAmmo) giveWeapon(client, weaponID, weaponAmmo) end )
  11. you're welcome, i love that your problem has been fixed, if you have any questions, create a new thread and tag me If you like my comments, you can like comment
  12. welcome to the forum, i don't understand your question much, i suggest you explain a bit more so i can help you better,but i sent you a code, i want you to test it... local marker = createMarker(-704.3701171875,963.20855712891,11, "cylinder", 1.3, 244, 244, 244, 244) local skin = getElementModel(localPlayer) local marker_1 function startJob(hitPlayer) local isJob = getElementData(hitPlayer, "job") if (isJob) then if(isElement(marker_1)) then destroyElement(marker_1) marker_1 = nil end setElementData(hitPlayer, "job", nil) setElementModel(hitPlayer, skin) outputChatBox("Goodbye, now you cant work", 255, 255, 255, true) else if(isElement(marker_1)) then destroyElement(marker_1) marker_1 = nil end marker_1 = createMarker(-688.35162353516, 953.43170166016, 11, "cylinder", 1.3, 244, 244, 244, 244) setElementData(hitPlayer, "job", true) outputChatBox("Hey! You can work.", 255, 255, 255,true) setElementModel(hitPlayer, 50) end end addEventHandler('onClientMarkerHit', marker, startJob) @w3rt1x
  13. https://wiki.multitheftauto.com/wiki/SetVehicleAdjustableProperty hello welcome to the forum I hope this is the code you want to learn
  14. you're welcome, if you have any new questions please create a new topic and tag me
  15. welcome to the forum, i made a code for you, i didn't test it, you should try this --client function giveMoney(hitPlayer, matchingDimension) if hitPlayer == localPlayer then outputChatBox("Okey it's your money") triggerServerEvent("giveMoney", hitPlayer, 1000) --enter amount here end end addEventHandler("onClientMarkerHit", marker, giveMoney) --server addEvent("giveMoney", true) addEventHandler("giveMoney", root, function(amount) givePlayerMoney(client, amount) end )
  16. i suggest you to use mta sdk for this project, + you used sql codes, put them on Lua side. http://code.opencoding.net/mta/mtaphpsdk_0.4.zip [TUT] : https://forum.multitheftauto.com/topic/32557-tut-php-sdk/
  17. function test (url) sendOptions = { formFields = { verifyUserAccessTOJSON = toJSON( {busca = '1' }) }, } fetchRemote ( url, sendOptions, notificationCallback ) end function notificationCallback(data, info) test = fromJSON("["..data.."]") outputDebugString(test) end test('noLinkForSecurity') hi you should test this code and let me know if you have any problem on debug side,I don't understand exactly what you want
  18. l have boss system and airdrop, contact to me... Discord : Shady1#0001
  19. https://nightly.mtasa.com/mtasa-1.5.9-rc-21437-20221205.exe
  20. Ola, local ADMIN_SKIN = 0 --admin skin id addEventHandler("onPlayerSpawn", root, function() local playerAccount = getPlayerAccount(player) -- get player account local accountName if(not playerAccount) then return end -- if not exists account dont go further if(isGuestAccount(playerAccount)) then return end -- if account is guest account dont go further accountName = getAccountName(playerAccount) -- at the moment get account name if(isObjectInACLGroup("user."..accountName, aclGetGroup("Admin"))) then -- if account on Admin Group Enter here setElementModel(source, ADMIN_SKIN) -- set player skin to admin end end )
  21. mtadiag download and run then pastebin/xxx send us the link
  22. Shady1

    Help me

    Hey! welcome to forum,I recommend you to use the function I sent and there is a code sample as you want. You can combine it with a timer as an extra. https://wiki.multitheftauto.com/wiki/SetElementCollidableWith
×
×
  • Create New...