Jump to content

Shady1

Members
  • Posts

    899
  • Joined

  • Last visited

  • Days Won

    61

Shady1 last won the day on August 9

Shady1 had the most liked content!

About Shady1

  • Birthday March 12

Details

  • Gang
    no more
  • Location
    Turkey
  • Occupation
    Developer
  • Interests
    make fun , work hard, have history

Recent Profile Visitors

24,462 profile views

Shady1's Achievements

Lil' G

Lil' G (37/54)

332

Reputation

15

Community Answers

  1. selam gtasa crack kullandığınız için bu tür sorunlarla karşılaşıyorsunuz lütfen ilk öncelikle gtasa orjinal sürümü satın alınız ve tekrar deneyiniz
  2. Yes, you’re right. I was thinking maybe you could just add explosives.
  3. Yes, your new updates look absolutely great. As I mentioned before, the sound effects have really enriched the script and made it look fantastic. You could categorize your weapons and add an extra page, allowing you to include different weapons or equipment.
  4. Podczas sprawdzania wyczułem, że to naprawdę nostalgiczny serwer z ciekawymi skryptami. Powodzenia!
  5. Yes, this could be quite interesting. You could carefully choose sound effects, and additionally, use animations. For example, when a money transfer takes place or a weapon deal is completed, you could trigger a handshake animation or something similar to add realism.
  6. Looks great, I can definitely say it’s a solid script. There are just a few small things that could make it even better if improved. For example, you could add a dialogue system with Arms Dealers, letting players buy weapons through that. Maybe also throw in some 3D sound effects when purchasing a weapon it’d give the whole thing a richer, more immersive feel.
  7. https://help.multitheftauto.com/sa/trouble/serial-validation/
  8. good job, if you have a different problem please post it here or create a new topic and tag m
  9. There are two kinds of methods, one with setTimer and the other with the alternative onClientRender setTimer : The cursor always appears in the center for one frame after showCursor(true). function openPanel() showCursor(true) -- Save the last cursor position (values between 0 and 1) local x, y = getCursorPosition() -- Get the screen resolution local sx, sy = guiGetScreenSize() -- After 50ms, set the cursor back to its previous position setTimer(function() setCursorPosition(x * sx, y * sy) end, 50, 1) end onClientRender: Use a timer or onClientRender to set the position after showing the cursor. function panelAc() showCursor(true) local x, y = getCursorPosition() local sx, sy = guiGetScreenSize() local function imlecDuzelt() setCursorPosition(x * sx, y * sy) removeEventHandler("onClientRender", root, imlecDuzelt) end addEventHandler("onClientRender", root, imlecDuzelt) end your fixed code : local toggle = false local savedCursorX, savedCursorY local function togglePanel() toggle = not toggle if toggle then showCursor(true) if savedCursorX and savedCursorY then local screenX, screenY = guiGetScreenSize() -- Wait one frame before setting the cursor position setTimer(function() setCursorPosition(savedCursorX * screenX, savedCursorY * screenY) end, 50, 1) end else savedCursorX, savedCursorY = getCursorPosition() showCursor(false) end end bindKey("k", "down", togglePanel) I think you understand, if you have a different problem please post it here or create a new topic and tag me
  10. player was informed about the other.
  11. Shady1

    MTA Serial Error

    Merbahalar, USB'nizi tehdit olarak algılıyor olabilir bu yüzden ilk başta internet sağlayıcınızla görüşüm bir an önce internetini bağlatmalısınız.
  12. Merhabalar sanırım bir sunucuda şifrenizi unuttunuz ve buradan destek bekliyorsunuz, bunun yerine şifrenizi unuttuğunuz sunucudaki Developer ya da Admin arkadaşlarla iletişime geçerek şifrenizi yenilettirebilirsiniz.
×
×
  • Create New...