Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 14/03/20 in all areas

  1. I think the only way if you cancel the chat message's event. > onClientChatMessage, cancelEvent local blockedMsg = { "login: You successfully logged in", "login: You are already logged in", } local length = #blockedMsg addEventHandler("onClientChatMessage", root, function(text) for i = 1, length do if blockedMsg[i] == text then return cancelEvent() end end end)
    2 points
  2. yes using shaders to the smoke texture
    1 point
  3. Já tentou algo como? Musica_AG = nil function AbrirAgenciaEmpregos () if AgenciaEmpregosAirNew == false then addEventHandler ( "onClientRender", root, PainelAgenciaEmpregosNew ) showCursor ( true ) AgenciaEmpregosAirNew = true Musica_AG = playSound("img/music.mp3",true) -- inicia musica ao abrir o painel da agencia showChat(false) -- desativa o chat enquanto o painel ta aberto end end addEvent ( "AirNew>AbrirAgencia", true) addEventHandler ( "AirNew>AbrirAgencia", root, AbrirAgenciaEmpregos ) function FecharAgenciaEmpregos () if AgenciaEmpregosAirNew == true then removeEventHandler ( "onClientRender", root, PainelAgenciaEmpregosNew ) showCursor ( false ) AgenciaEmpregosAirNew = false playSoundFrontEnd ( 40 ) stopSound(Musica_AG) --deveria parar a musica a o fecher a agencia showChat(true) --deveria mostrar o chat ao fechar a agencia end end addEvent ( "AirNew>FecharAgencia", true) addEventHandler ( "AirNew>FecharAgencia", root, FecharAgenciaEmpregos )
    1 point
  4. Hi community, now 1.4 version and 1.5 works bad, I play with 60 fps first 5 minutes but fps down to 15-25. I think it is something in my pc but games like NFS Rivals runs with 40+ fps, I don't know why MTA works very bad. I play GTA SA with 60 fps too without problems. Pastebin: https://pastebin.mtasa.com/593929658
    1 point
×
×
  • Create New...