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

  1. G

    Why my game freezes when loading audio stream via Moonloader?

    Downloading will take time, is there any other way to make it load it without interrupting the game thread?
  2. G

    Why my game freezes when loading audio stream via Moonloader?

    What do you mean? Can you explain what would you like you know?
  3. G

    Why my game freezes when loading audio stream via Moonloader?

    Hello Everyone, I have made a simple script to play an audio stream from an audio URL, the script is working fine it plays audio stream but my game freezes when it starts loading audio from URL. Here is my script: function main() repeat wait(1) until isPlayerPlaying(playerHandle) if...
  4. G

    Moonloader not displaying server message when calling a function inside event listener

    Thanks for the help, I tried it too, but still it's not displaying the server message but /rules is working.
  5. G

    Moonloader not displaying server message when calling a function inside event listener

    The server's login message appears when you log into your account, the server login message is: "SERVER: player_name(ID) logged in" it displays server message if I remove "sampSendChat("/rules")" from script.
  6. G

    Moonloader not displaying server message when calling a function inside event listener

    So, I am working on a script to show the server's /rules dialog when you login, the script is working fine it shows /rules dialog when you login but it doesn't shows the server's login message. My script: local SE = require 'lib.samp.events' function SE.onServerMessage(color, text) if...