Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 08/05/22 in all areas

  1. Argentina Roleplay - Servidor de Rol En Marzo del 2020 se inauguraba el servidor dando lugar a una comunidad que iría creciendo y mejorando continuamente. Es un servidor que ha evolucionado mucho en estos últimos años, resultando un servidor completamente distinto a cuando se abrió. Gracias a toda la experiencia adquirida en este tiempo hemos conseguido formar una comunidad única. Contamos con un equipo Staff del que estamos muy orgullosos, y una comunidad que nos respalda y nos anima a seguir trabajando. Llevamos años trabajando en seguir mejorando y, hemos demostrado responsabilidad, constancia y esfuerzo por mejorar cada día. Contamos con jugadores de todo el mundo, principalmente de países de habla hispana. Nuestro servidor está basado en Argentina como desempeño del rol. En el servidor encontrarás sistemas únicos, buena atención del equipo Staff, y administradores responsables. Hay actualizaciones frecuentes, eventos todos los meses, colaboraciones con marcas (Hemos colaborado con TENCENT), atención del Staff diaria, disponibilidad del servidor 24 horas al día, 7 días a la semana, 365 días al año. Y muchas cosas más, pero, ¿qué gracia tendría si te mostramos todo? Por eso queremos invitarte a que te unas y lo descubras tú mismo en una experiencia original y única. Esto es Argentina Roleplay, únete y crea tu historia, únete y diviértete, únete y juega. Vídeo del servidor Discord: https://discord.gg/argenrp Foro: www.argentinaroleplay.com Ip: mtasa://51.81.48.91:22003 Gracias por su tiempo.
    1 point
  2. السلام عليكم ورحمة الله تعالى وبركاته أخباركم جميعاً عساكم بخير ------------------------------------------- اليوم جيت أتكلم عن الأشخاص بعض الكلمات المنتشرة كـ "مزح " وهي محرمه ومنتشره للأسف -------------------------------------------- أولاً: التحريف بأسماء الله عز وجل مثل " واللهي " , " سبهان الله " , "اللههه" للأسف هذا الشي منتشر عند الناس و يجب كتابة لفظ الجلالة بالشكل الصحيح ---------------------------------------------- ثانيا: سب الدهر (والعياذ بالله) مثل يلعن الوقت الي إحنا فيه(استغفر الله) حرام ولا يجوز لأن الله هو الدهر عن أبي هريرة رضي الله عنه قال: قال رسول الله صلى الله عليه وسلم: قال الله تعالى: يؤذيني ابن آدم يسبّ الدّهر وأنا الدّهر أقلّب الليل والنهار -------------------------------------------- والسلام عليكم ورحمة الله وبركاته
    1 point
  3. 1 point
  4. Appeals can be submitted in https://forum.multitheftauto.com/forum/195-discord-ban-appeals/. Please follow the instructions at the top of its page
    1 point
  5. You're welcome to appeal the ban https://forum.multitheftauto.com/forum/195-discord-ban-appeals/
    1 point
  6. It would be unfair to ignore such a developing server. Good luck.
    1 point
  7. Hello. I've moved your advert into the Servers to play on section. Please include your server IP address in the original post - for more information, see our posting guidelines for this section: https://forum.multitheftauto.com/topic/93773-rules-and-formatting-for-this-section/
    1 point
  8. Hey @dollar I've moved your thread into the Modelling section. You can find guides on modding in MTA here: https://forum.multitheftauto.com/forum/179-tutorials/ https://forum.multitheftauto.com/forum/185-user-guides/ If you have any specific questions please feel free to ask here! We also have a #modelling channel in our Discord server.
    1 point
  9. I hope you reach a good audience
    1 point
  10. I made the full script and it works, thank you IIYama!
    1 point
  11. sx,sy = guiGetScreenSize() addEvent("CHack_V",true) local rotX,rotY = 0,0 local mouseFrameDelay = 0 PI = math.pi lplayer = getLocalPlayer() local ayudatxt = [[Bienvenido al modo de Version Libre! Usa los botones de tu teclado numerico y tu Mouse para mover la camara! PARA SALIR USA LA TECLA ENTER]] local cHOpciones = { sen = 0.01, vel = 2 } local camHack function CamhackOn() if camHack then camHack = false setElementData(lplayer,"camHack",false) setElementData(lplayer,"Ocupado",false) --setPlayerHudComponentVisible("all",true) showChat(true) toggleAllControls(true, true, false) removeEventHandler("onClientCursorMove",root,moverMouse) removeEventHandler("onClientPreRender",root,moverCamara) setCameraTarget(lplayer) unbindKey("h","down",mostrarGUICam) unbindKey("enter","down",salirCam) destroyElement(camHackGUI) if controlsEnableGM or controlsEnableAlpha then toggleControl ( "fire", false) end else setElementData(lplayer,"camHack",true) setElementData(lplayer,"Ocupado",true) camHack = true setPlayerHudComponentVisible("all",false) showChat(false) toggleAllControls(false, true, false) local x,y,z,lx,ly,lz = getCameraMatrix() setCameraMatrix(x,y,z,lx,ly,lz) addEventHandler("onClientCursorMove",root,moverMouse) addEventHandler("onClientPreRender",root,moverCamara) aviso("Vista Libre\nPuedes ver la ayuda y opciones con la tecla 'H'") cargarGUICam() bindKey("enter","down",salirCam) end verificarCheckPanel() end addEventHandler("CHack_V",root,CamhackOn) function salirCam() CamhackOn() end function moverMouse(_,_,aX,aY) if isCursorShowing() or isMTAWindowActive() then mouseFrameDelay = 5 return elseif mouseFrameDelay > 0 then mouseFrameDelay = mouseFrameDelay - 1 return end local width, height = guiGetScreenSize() aX = aX - width / 2 aY = aY - height / 2 rotX = rotX + aX * cHOpciones.sen rotY = rotY - aY * cHOpciones.sen if rotX > PI then rotX = rotX - 2 * PI elseif rotX < -PI then rotX = rotX + 2 * PI end if rotY > PI/2 then rotY = PI/2-0.001 elseif rotY < -PI/2 then rotY = -PI/2+0.001 end end function moverCamara() local x,y,z,lx,ly,lz = getCameraMatrix() local angZ = math.sin(rotY) local angY = math.cos(rotY) * math.cos(rotX) local angX = math.cos(rotY) * math.sin(rotX) local speed = 0 local speedr = 0 if getKeyState("w") then speed = cHOpciones.vel elseif getKeyState("s") then speed = -cHOpciones.vel end if getKeyState("a") then speedr = cHOpciones.vel elseif getKeyState("d") then speedr = -cHOpciones.vel end if getKeyState("q") then z = z - cHOpciones.vel elseif getKeyState("e") then z = z + cHOpciones.vel end local DisX = x - lx local DisY = y - ly local angleLength = math.sqrt(DisX^2+DisY^2) lx = x + angX * 100 ly = y + angY * 100 lz = z + angZ * 100 x = x + angX * speed y = y + angY * speed z = z + angZ * speed x = x + (DisY / angleLength) * speedr y = y + -(DisX / angleLength) * speedr setCameraMatrix(x,y,z,lx,ly,lz) end local color = 255 local adtxt = "" local timer function cargaraviso() if color > 0 then color = color - 5 end dxDrawRectangle(0,sy/2-30,sx,60,tocolor(0,color,color,200),false) dxDrawText(adtxt,0,sy/2-30,sx,60,tocolor(0,255,0,255),2,"default","center") end function aviso(texto) color = 200 adtxt = texto if not timer then addEventHandler("onClientRender",root,cargaraviso) timer = setTimer(function() removeEventHandler("onClientRender",root,cargaraviso) timer = nil end,3000,1) else killTimer(timer) timer = setTimer(function() removeEventHandler("onClientRender",root,cargaraviso) timer = nil end,3000,1) end end function cargarGUICam() camHackGUI = guiCreateWindow(sx/2-204,sy/2-121,409,242,"Opciones de Vista Libre",false) guiSetVisible(camHackGUI,false) local tabCamHack = guiCreateTabPanel(11,21,389,212,false,camHackGUI) local tCamAyuda = guiCreateTab("Ayuda",tabCamHack) guiCreateMemo(3,6,378,179,ayudatxt,false,tCamAyuda) local tCamOpciones = guiCreateTab("Opciones",tabCamHack) guiCreateLabel(13,12,66,17,"Velocidad:",false,tCamOpciones) addEventHandler("onClientGUIChanged",guiCreateEdit(84,10,118,22,tostring(cHOpciones.vel),false,tCamOpciones),function() local txt = guiGetText(source) if not tonumber(txt) then local point txt = txt:gsub(".",function(x) if x=="." and not point then point = true elseif not tonumber(x) then return "" end end) if txt == guiGetText(source) then return end guiSetText(source,txt) end cHOpciones.vel = txt end,false) guiCreateLabel(13,40,66,17,"Sensibilidad:",false,tCamOpciones) addEventHandler("onClientGUIChanged",guiCreateEdit(84,38,118,22,tostring(cHOpciones.sen),false,tCamOpciones),function() local txt = guiGetText(source) if not tonumber(txt) then local point txt = txt:gsub(".",function(x) if x=="." and not point then point = true elseif not tonumber(x) then return "" end end) if txt == guiGetText(source) then return end guiSetText(source,txt) end cHOpciones.sen = txt end,false) bindKey("h","down",mostrarGUICam) end function mostrarGUICam() if guiGetVisible(camHackGUI) then guiSetVisible(camHackGUI,false) showCursor(false,false) else guiSetVisible(camHackGUI,true) showCursor(true) end end
    1 point
  12. Hi You were correctly banned for cheating, but I'm happy to let you know it expires May 8 at 21:18 UTC
    0 points
×
×
  • Create New...