Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 12/04/24 in all areas

  1. About Us ArdicGaming Roleplay is an English-based MTA Server. The community is here to provide quality roleplay along with a welcoming experience. ArdicGaming has been in dormant existence from 2017, when a brief release was available to the public. Years later I co-owned a player's favorite, San Andreas Roleplay with Fernando (Nando) - a household name within MTA at this point. You can read more about San Andreas Roleplay (SA-RP) here. ArdicGaming is supposed to give that nostalgic feeling to players and a warm and welcoming community based in Red County (Los Santos County) to support newcomers, and oldtimers alike. We are here to ensure that we can keep the English MTA Roleplaying scene alive, even if it's only on a small scale! We are determined to show true passion towards the roleplaying scene. Goal Our goals are easy... create a community for all to enjoy, hang out, meet new friends and rekindle with old friends. The English RP community is something that is closely-knit and often brings familiar faces around. We're not here to compete against other gamemodes, we're just here to provide what the players want. With that being said, we are always happy to take suggestions and feedback so that we can provide a community that the players can call home. Staff Team Our staff team is combined with hardened veterans in the roleplaying community, along with newcomers. We have some interesting and talented folk that are with us on this project. Our staff team is the driving force behind the works, keeping the cogs turning so that players can enjoy a fluid experience. Some of our key staff members have returned to take the reigns once again to ensure that the players can achieve the experience they desire. Useful Information We have decided to stick with the SA-RP gamemode along with a day-of-closure database so that players can hop in-game and still have all of their characters and assets. Some players may not have their assets due to removal of powerplay factions and powerplay characters in an aid to balance the economics. This only affected a select few within the server so it's unlikely that you will be impacted by this if you played SARP. We hope to add media to this post so you can see what to expect from us when we officially open to showcase to those who didn't have the opportunity to visit SA-RP when it was around. Useful Links UCP: https://ardicgaming.com/ Forums: https://forums.ardicgaming.com/ Community Rules: https://wiki.ardicgaming.com/ Discord: https://ardicgaming.com/discord/ Server IP: mtasa://164.132.200.104:22003 Thank You! Thanks for taking the time to read. We hope that you stop by and check us out. We are always looking to interact with the community, because at the end of the day, without the people, a community is nothing. From the bottom of our hearts, the ArdicGaming Staff do truly appreciate the time that people take to play, interact and contribute to the community. If you have made it this far, thank you for reading. Your time and patience is greatly appreciated. We look forward to seeing you on launch! Please visit the Forums or our Discord to stay up to date for the server's release.
    1 point
  2. I see, thanks how do I make the gui that when i press the key again it closes? addEvent("playerOnClick", true) addEventHandler("playerOnClick", root, function() guiGridListClear ( w.gridList.main ) for i,veh in ipairs(getElementsByType("vehicle")) do if veh ~= vehicle then local row = guiGridListAddRow ( w.gridList.main ) local x,y,z = getElementPosition(veh) guiGridListSetItemText ( w.gridList.main, row, w.gridList.column1, getVehicleName ( veh ), false, false ) guiGridListSetItemText ( w.gridList.main, row, w.gridList.column2, x, false, false ) guiGridListSetItemText ( w.gridList.main, row, w.gridList.column3, y, false, false ) guiGridListSetItemText ( w.gridList.main, row, w.gridList.column4, z, false, false ) end end guiSetVisible(w.main, true) showCursor(true) end ) function hasPermission(key,keyState) if getElementData(localPlayer, "logedin") then triggerServerEvent("hasPermissionEvent",localPlayer,key,keyState) end end bindKey("p", "down", hasPermission) Edit : you can disregard these, I made if else statement and created to false. function playerOnClick(key,keyState) if (keyState == "down") then if (guiGetVisible(w.main) == false) then guiGridListClear ( w.gridList.main ) for i,veh in ipairs(getElementsByType("vehicle")) do if veh ~= vehicle then local row = guiGridListAddRow ( w.gridList.main ) local x,y,z = getElementPosition(veh) guiGridListSetItemText ( w.gridList.main, row, w.gridList.column1, getVehicleName ( veh ), false, false ) guiGridListSetItemText ( w.gridList.main, row, w.gridList.column2, x, false, false ) guiGridListSetItemText ( w.gridList.main, row, w.gridList.column3, y, false, false ) guiGridListSetItemText ( w.gridList.main, row, w.gridList.column4, z, false, false ) end end guiSetVisible(w.main, true) showCursor(true) else guiSetVisible(w.main, false) showCursor(false) end end end addEvent("playerOnClick",true) addEventHandler("playerOnClick",root,playerOnClick) but of course, If you can recommend a better way than what I did please feel free to share your opinion I would very much appreciate it.
    1 point
  3. Olá @Mischief-1, como vai? Adicione uma verificação adicional para garantir que os blips sejam removidos quando os jogadores deixarem os grupos. playerBlibs = {} amouunt = 0 function updateGPS() amouunt = 0 local gangname = getElementData(getLocalPlayer(), "gang") -- Remover todos os blips existentes for i, blip in ipairs(playerBlibs) do if isElement(blip) then destroyElement(blip) end end -- Verificar se o jogador pertence a um grupo if gangname == "none" then return end playerBlibs = {} -- Criar blips para os jogadores no mesmo grupo for i, player in ipairs(getElementsByType("player")) do if gangname == getElementData(player, "gang") and player ~= localPlayer then amouunt = amouunt + 1 playerBlibs[amouunt] = createBlipAttachedTo(player, 2, 2) setBlipVisibleDistance(playerBlibs[amouunt], 1000) end end end setTimer(updateGPS, 5000, 0) Acredito que isso ajude a resolver o problema. Qualquer dúvida, volte a perguntar. Tmj! Att,
    1 point
  4. Model encrypter BETA Protect your models easily. https://mtaclub.eu/pcrypt When it's done, don't forget to read HOW_TO_USE.txt! Please let me know if you find a bug!
    1 point
×
×
  • Create New...