Jump to content

0xCiBeR

MTA Team
  • Posts

    1,673
  • Joined

  • Last visited

  • Days Won

    6

Everything posted by 0xCiBeR

  1. Bien, Topic Bloqueado. Si el autor quiere que se re-abra, mande un PM.
  2. Disculpa la demora. IP's: 46.105.46.97 74.86.68.204 Host's: http://master.multitheftauto.com/ase/mta/?v=%VERSION%&id=%ID% http://master.mtasa.com/ase/mta/?v=%VERSION%&id=%ID% http://1mgg.com/affil/mta Saludos.
  3. Bump Innecesario. Topic bloqueado por ser muy viejo.
  4. Are you using a Windows or a Linux distro?
  5. 0xCiBeR

    Warping

    local Enter = createMarker( -607.0859375 ,2600.5422363281 ,54.5, "cylinder", 1.5 ) local Exit = createMarker( -601.1005859375, 2600.1203613281, 53.0390625, "cylinder", 1.5 ) function EnterFunc( hitPlayer ) setElementPosition ( hitPlayer, -600.9814453125 ,-600.9814453125 ,55.5 ) end function ExitFunc( hitPlayer ) setElementPosition ( hitPlayer, -543.1064453125 ,2620.150390625 ,53.515625 ) end addEventHandler( "onMarkerHit", Enter,EnterFunc ) addEventHandler( "onMarkerHit", Exit,ExitFunc )
  6. Where is "player" defined? I mean the code that triggers that event.
  7. Sugiero que lo intentes, y si te topas con algún error, pides por ayuda. Tus compañeros mas arriba te han dado posibles soluciones, solo es cuestión de que te lances a por ello. Si no eres muy experimentado en scriptear, te sugiero que estudies bien cada una de las funciones que te escribieron mas arriba. Mis mejores deseos para vos. Saludos.
  8. Solo pegas eso en un archivo .lua y metes en el meta
  9. Aquí tienes uno: https://community.multitheftauto.com/index.php?p=resources&s=details&id=5101
  10. How ? There is no rotation argument on dxDrawRectangle i think. With some math it can be done..
  11. Try rotating the rectangle too.
  12. A 1.0 or 1.5 scale would solve the problem i think
  13. EJ: Server-Side function setear (yo,cmd,id) if id then setElementModel(yo,tonumber(id)) outputChatBox("Skin seteado correctamente al ID: "..tonumber(id),yo,255,0,0,true) else outputChatBox("ERROR: Debes usar el comando en esta forma: /skin ID",yo,255,0,0,true) end end addCommandHandler("skin",setear)
  14. Me pareció bastante bueno . Les deseo la mejor de las suertes, cuando abra de seguro me doy una vuelta! Saludos!
  15. setElementModel Es server-side. Por lo tanto, si le seteas el modelo a alguien con esta función, todos ven el cambio.
  16. Antes de eso no probaste Restaurar Sistema?... Bueno, lamento eso, Mas suerte la proxima! Saludos.
  17. Instalaste algo que pudiera afectar la PC?.. Como un antivirus nuevo, drivers nuevos, o algo similar?..
  18. Me parece que se refiere a que cuando un user selecciona una textura, esta es cambiada Client-Side nada mas, por lo tanto no es sincronizada con el servidor y los demás user ven el skin normal.. @Crow: Te refieres a Texturas o ID's de Skins?
  19. Veo que eres nuevo, y para hacer algo así te recomiendo leer un poco la wiki...De igual manera, recuerdo cuando era nuevo y me decían, lee la wiki bla bla bla.. Bueno, porque estoy de buenas, te hice un script. Los jugadores que quieres que sean policia deben estar en el ACL Policia. Lo que hace este script es que cuando un jugador mete el comando /911 todos los jugadores que estan en el ACL policia conectados, reciben el mensaje El jugador: "..nombre.." Necesita Ayuda!" function obtenerPolicias() local jugadores = { } for i, v in pairs(getElementsByType'player') do local es = getPlayerAccount(v) local cuenta = getAccountName(es) if not isGuestAccount(es) and isObjectInACLGroup ("user."..cuenta, aclGetGroup ( "Policia" ) ) then table.insert ( jugadores, v) end end return jugadores end addCommandHandler("911", function( yo ) local nombre = getPlayerName(yo) for i, v in ipairs(obtenerPolicias()) do outputChatBox ( "El jugador: "..nombre.." Necesita Ayuda!",v,255,0,0,true ) end end ) Saludos.! PD: El script lo escribí del celular y capaz tenga algun error.
  20. 0xCiBeR

    Cry Slothbot

    Again, you're not posting all the code. Where is pedX,pedY & pedZ defined? Remeber that that will make every bot that spawns cry. If you have several bot spawing it will make the effect you describe. Please post all the code, including how you create the bot. Regards, CiBeR.
  21. Actually it's not stolen it think. If i'm not mistaking it's part of @50p spawn resource wich you can find in the community. Regards, CiBeR.
  22. Si, o usas un runcode. /start runcode Tecleas esto dentro de la consola F8: srun exports [ "gang_system" ]:removeGang ( "Deslogeado" )
  23. Found a shader that fit's your needs: https://community.multitheftauto.com/index.php?p=resources&s=details&id=7349 P.S: Don't know if it would blur you're Login Gui.
×
×
  • Create New...