Недавнее содержимое от halfastrc

  1. halfastrc

    Вопросы по Lua скриптингу

    Is there any way to block when the server kicks you from a vehicle?
  2. halfastrc

    Вопросы по Lua скриптингу

    Is there a way to call this type of dialog (server) from anywhere? For example, save it once and call it from anywhere else?
  3. halfastrc

    Вопросы по Lua скриптингу

    Is there a way to bypass when the server freezes the player, preventing them from moving?
  4. halfastrc

    Вопросы по Lua скриптингу

    imgui.GetIO().MouseDrawCursor = false 1724151615 Theres any function to take screenshot from the game?
  5. halfastrc

    Декомпиляция скриптов

    decrypt pls
  6. halfastrc

    Вопросы по Lua скриптингу

    How to insert special characters in ImGui? when I use imgui.Text("Configurações do Sistema") I receive 'Configura??es do Sistema
  7. halfastrc

    Как убрать лок в 60 фпс Nvidia

    I've had this issue before. To resolve it, I used a mod that put GTA SA in windowed mode, while still allowing the game to be played in full screen. I used the mod below [III/VC/SA] Windowed Mode
  8. halfastrc

    Вопросы по Lua скриптингу

    Is it possible to check if a player closed a dialog by clicking the 'close' button?
  9. halfastrc

    Вопросы по Lua скриптингу

    Any ideia how to solve a Captcha like this? The textdraws number are random, and always have different positions. I was thinking in get the position with sampTextdrawGetPos, but how can Idefine the right numbers?
  10. halfastrc

    Вопросы по Lua скриптингу

    I remember a time ago I downloaded a auto complete to VSCode in Lua, I look in the forum but I don't found it, where I can found this auto complete? Thank's
  11. halfastrc

    Вопросы по Lua скриптингу

    It's possible convert the color to HEX, example convert 'color white' to "FFFFFF"? text, prefix, color, pcolor = sampGetChatString(99) --Convert color to hex
  12. halfastrc

    Декомпиляция скриптов

  13. halfastrc

    Вопросы по Lua скриптингу

    I don't know if it's this what you want: local sampev = require 'lib.samp.events' local counter = 0 function main() while not isSampAvailable() do wait(0) end family = {"vv","vv","vv"} for k,v in pairs(family) do if v == "vv" then -- If family = vv then...
  14. halfastrc

    Вопросы по Lua скриптингу

    Can you explain a little better? You want insert the counter in a table?
  15. halfastrc

    Вопросы по Lua скриптингу

    Something like this? local sampev = require 'lib.samp.events' local counter = 0 function main() while not isSampAvailable() do wait(0) end asd = {"vv","vv"} for k,v in pairs(asd) do if v == "vv" then counter = counter + 1 print(counter)...