Jump to content

Search the Community

Showing results for tags 'radinho copom'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • Multi Theft Auto: San Andreas 1.x
    • Support for MTA:SA 1.x
    • User Guides
    • Open Source Contributors
    • Suggestions
    • Ban appeals
  • General MTA
    • News
    • Media
    • Site/Forum/Discord/Mantis/Wiki related
    • MTA Chat
    • Other languages
  • MTA Community
    • Scripting
    • Maps
    • Resources
    • Other Creations & GTA modding
    • Competitive gameplay
    • Servers
  • Other
    • General
    • Multi Theft Auto 0.5r2
    • Third party GTA mods
  • Archive
    • Archived Items
    • Trash

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


Member Title


Gang


Location


Occupation


Interests

Found 1 result

  1. A um tempo atrás experimentei fazer um script de copom para policiais, porém como não tinha funcionado deixei a idéia de lado e hoje resolvi tentar pedir ajuda aqui. Ele até funciona mas não da maneira correta, gostaria que quando apertasse o 'capslock' e falasse mandasse a voz ao copom e ao soltar ele fosse desativado, mas da maneira que fiz é necessário pressionar para ativar/desativar. Desde já muito obrigado! Edit: não sei se este script que mandei está funcionando, pois estava testando e deixei a idéia de lado -- CLIENT-SIDE addEventHandler("onClientKey",getRootElement(), function(btn, press) if btn == "capslock" then if (press) and exports.Admin:isPlayerDuty(localPlayer) then if getElementData(localPlayer,"inCall") == false then triggerServerEvent("Enable->radinho",localPlayer,localPlayer) setElementData(localPlayer,"inCall",true) outputChatBox("#cd4747[BCO- COPOM]:#ffffff COPOM ATIVADO!",255,255,255,true) else outputChatBox("#cd4747[BCO- COPOM]:#ffffff COPOM DESATIVADO",255,255,255,true) setElementData(localPlayer,"inCall",false) end end end end) --SERVER-SIDE addEvent("Enable->radinho", true) addEventHandler("Enable->radinho", root, function(thePlayer) if getElementData(thePlayer,"inCall") == true then local empty = exports.bco_voice:getNextEmptyChannel() exports.bco_voice:setPlayerChannel(thePlayer, empty) setPlayerVoiceBroadcastTo( thePlayer, root ) else exports.bco_voice:setPlayerChannel ( thePlayer, 100 ) end end)
×
×
  • Create New...