Jump to content

EstrategiaGTA

Members
  • Posts

    684
  • Joined

  • Last visited

Everything posted by EstrategiaGTA

  1. Some resources will need Admin rights, for security reasons. Do what 1LoL1 told you.
  2. So you basically want a GUI-based login panel?
  3. Right click in your screen when you have the "arrow", and you can start.
  4. ¿Al jugador, no a todos los jugadores? Entonces, si es client-side no tienes que usar nada, y si es server-side: outputChatBox( "Red #FFFFFFWhite", source, 255, 0, 0, true )
  5. ¿Y porque usas outputServerLog? Tienes que usar cancelEvent() outputChatBox
  6. ¿Estás seguro de que está como server-side?
  7. Una cosa, si es solo de un marker, ¿porque no usaste onClientMarkerHit? Prueba así: function tuneCar(tP) if isElement(tP) then if getElementType(tP) == "player" then local iV = isPedInVehicle(tP) if iV == true then local playerVehicle = getPedOccupiedVehicle ( tP ) triggerClientEvent("gui",source) end end end end addEventHandler("onMarkerHit", markerDRIFT, tuneCar)
  8. What's wrong with it? What's the error?
  9. Encuentra el client donde está el GUI principal en freeroam, encuentra la parte donde se define el botón o los botones y bórralos o reemplázalos con un comentario, por ejemplo: Ejemplo Para hacerlo como un 'comentario', usarías: --Ejemplo
  10. A blowjob? lol. Use: setTimer ( function, time(ms), howmanytimes, function arguments)
  11. OK, you use this for unmute: setTimer ( setPlayerMuted, milliseconds, 1, target, false ) Try adding this line below: setTimer ( outputChatBox, milliseconds, 1, "yourtexthere", getRootElement(), 255, 255, 255, true)
  12. Just use this: getAccountName getPlayerAccount aclGetGroup if isObjectInACLGroup then setPlayerNametagColor addCommandHandler --If you want it as command
  13. Is the script server-side? Post your meta.xml, and also you named your function with a MTA function name: change it.
  14. Do you mean when the player is going to be unmuted?
  15. triggerClientEvent is server-side only and getLocalPlayer is client-side only.
  16. Porque pusiste source en el primer argumento.
  17. Define your font with: dxCreateFont And use it.
  18. EstrategiaGTA

    ayuda

    Pero, entonces, ¿dices que te funciona en funciones separadas, que te salen los players bien con PlayerOn y te salen mal si lo metes en la tabla?
  19. Do you mean doing X thing only if you are near to a position? You can use createColRectangle removeCommandHandler addCommandHandler And the events would be onColShapeHit and onColShapeLeave if it is server-side or for client-side, onClientColShapeHit and onClientColShapeLeave So you would remove the command when you leave the Colshape and you would create it when you enter it.
  20. Still, I've other idea: why don't you just make the outputChatBox only for the player, not to all? You do this because of spamming, but, if you do it for him only, he will just spam himself.
×
×
  • Create New...