Jump to content
  • Servers

    TFF Logo
    TFF MAIN 20 players online
    Discord Logo
    Discord 1000+ members
  • Upcoming events

  • Topics

  • Posts

    • :root { --primary: #2c3e50; --secondary: #FF4500; --accent: #FF4500; --light: #ecf0f1; --dark: #2c3e50; --success: #2ecc71; --warning: #f39c12; } * { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; } .tournament-container { max-width: 1200px; margin: 0 auto; padding: 20px; } /* Simple text announcement */ .announcement-text { font-size: 1.1rem; line-height: 1.6; margin-bottom: 30px; color: var(--light); text-align: center; padding: 0 20px; } /* Winning Teams Box */ .winning-teams-box { background: rgba(255,255,255,0.05); border-radius: 15px; padding: 25px; margin: 25px 0; box-shadow: 0 5px 15px rgba(0,0,0,0.2); border: 1px solid rgba(255,255,255,0.1); position: relative; overflow: hidden; } .winning-teams-box:before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 5px; background: linear-gradient(to right, gold, silver, #cd7f32); } .winning-teams-title { text-align: center; font-size: 1.8rem; margin-bottom: 20px; color: var(--light); text-shadow: 0 2px 5px rgba(0,0,0,0.3); } .winner-spotlight { display: flex; justify-content: center; flex-wrap: wrap; gap: 20px; margin: 25px 0; } .winner-item { background: rgba(255,255,255,0.08); border-radius: 10px; padding: 20px; min-width: 200px; text-align: center; box-shadow: 0 5px 15px rgba(0,0,0,0.2); transition: transform 0.3s ease; border: 1px solid rgba(255,255,255,0.1); } .winner-item:hover { transform: translateY(-5px); } .winner-place { font-size: 1.3rem; font-weight: bold; margin-bottom: 8px; } .winner-team { font-size: 1.5rem; color: var(--secondary); font-weight: bold; margin-bottom: 10px; } .winner-message { font-size: 0.9rem; opacity: 0.9; } .tournament-stats { background: rgba(255,255,255,0.08); border-radius: 10px; padding: 15px; margin-top: 20px; font-weight: bold; color: var(--light); text-align: center; border: 1px solid rgba(255,255,255,0.1); } .tournament-header { text-align: center; padding: 30px 0; margin-bottom: 30px; border-bottom: 2px solid var(--secondary); } .tournament-title { font-size: 3rem; margin-bottom: 10px; text-shadow: 0 2px 5px rgba(0,0,0,0.3); background: linear-gradient(to right, var(--secondary), #FF8C00); -webkit-background-clip: text; background-clip: text; color: transparent; } .subtitle { font-size: 1.2rem; color: var(--light); opacity: 0.8; } .content-section { margin-bottom: 50px; animation: fadeIn 0.5s ease; } @keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } } .section-title { text-align: center; font-size: 2rem; margin-bottom: 25px; color: var(--light); position: relative; } .section-title:after { content: ''; display: block; width: 100px; height: 3px; background: var(--secondary); margin: 10px auto; } .champions-container { display: flex; justify-content: center; flex-wrap: wrap; gap: 30px; margin-bottom: 40px; } .champion-card { background: rgba(255,255,255,0.1); border-radius: 15px; padding: 25px; width: 320px; text-align: center; box-shadow: 0 10px 20px rgba(0,0,0,0.2); transition: transform 0.3s ease; position: relative; overflow: hidden; } .champion-card:hover { transform: translateY(-10px); } .champion-card:before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 5px; background: var(--secondary); } .first-place:before { background: gold; } .second-place:before { background: silver; } .third-place:before { background: #cd7f32; /* bronze */ } .placement { font-size: 1.5rem; font-weight: bold; margin-bottom: 10px; position: relative; } .winner-badge { position: absolute; top: -35px; left: 50%; transform: translateX(-50%); background: linear-gradient(45deg, gold, #FFD700); color: #000; padding: 5px 15px; border-radius: 20px; font-size: 0.9rem; font-weight: bold; box-shadow: 0 3px 10px rgba(255,215,0,0.5); z-index: 10; white-space: nowrap; } .second-badge { position: absolute; top: -35px; left: 50%; transform: translateX(-50%); background: linear-gradient(45deg, silver, #C0C0C0); color: #000; padding: 5px 15px; border-radius: 20px; font-size: 0.9rem; font-weight: bold; box-shadow: 0 3px 10px rgba(192,192,192,0.5); z-index: 10; white-space: nowrap; } .third-badge { position: absolute; top: -35px; left: 50%; transform: translateX(-50%); background: linear-gradient(45deg, #cd7f32, #b08d57); color: #000; padding: 5px 15px; border-radius: 20px; font-size: 0.9rem; font-weight: bold; box-shadow: 0 3px 10px rgba(205,127,50,0.5); z-index: 10; white-space: nowrap; } .team-name { font-size: 1.8rem; margin: 15px 0; color: var(--light); } .team-record { color: rgba(255,255,255,0.7); margin-bottom: 15px; } .team-prize { background: rgba(46, 204, 113, 0.2); padding: 10px; border-radius: 8px; margin: 15px 0; font-weight: bold; color: #2ecc71; border: 1px solid rgba(46, 204, 113, 0.3); } .prize-details { text-align: left; margin-top: 10px; font-size: 0.9rem; } .prize-item { margin: 5px 0; padding-left: 10px; } .team-players { margin-top: 15px; text-align: left; } .players-title { font-weight: bold; margin-bottom: 8px; color: var(--secondary); } .player-list { list-style-type: none; } .player-item { padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.1); display: flex; justify-content: space-between; } .player-item:last-child { border-bottom: none; } .player-points { color: var(--secondary); font-weight: bold; } /* Improved MVP Section */ .mvp-container { display: flex; justify-content: center; margin-bottom: 40px; } .mvp-card { background: rgba(255,255,255,0.1); border-radius: 15px; padding: 20px; display: flex; align-items: center; box-shadow: 0 5px 15px rgba(0,0,0,0.2); transition: transform 0.3s ease; max-width: 500px; width: 100%; border: 2px solid rgba(52, 152, 219, 0.3); } .mvp-card:hover { transform: translateY(-5px); } .mvp-avatar { width: 70px; height: 70px; border-radius: 50%; background: #3498db; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; margin-right: 20px; flex-shrink: 0; border: 2px solid #2980b9; } .mvp-info { flex-grow: 1; } .mvp-name { font-size: 2rem; margin-bottom: 5px; font-weight: bold; text-shadow: 0 2px 5px rgba(0,0,0,0.3); background: linear-gradient(to right, #3498db, #2980b9); -webkit-background-clip: text; background-clip: text; color: transparent; } .mvp-category { color: var(--secondary); font-weight: bold; margin-bottom: 5px; font-size: 1.1rem; } .mvp-prize { background: rgba(52, 152, 219, 0.3); padding: 5px 10px; border-radius: 6px; margin: 5px 0; font-weight: bold; color: var(--light); display: inline-block; font-size: 1rem; } .mvp-stats { display: flex; justify-content: space-between; margin-top: 10px; } .stat { text-align: center; } .stat-value { font-size: 1.2rem; font-weight: bold; color: #3498db; } .stat-label { font-size: 0.8rem; opacity: 0.7; } /* Match MVPs Section - Compact Design */ .match-mvps-container { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 12px; margin-bottom: 30px; } .match-mvp-card { background: rgba(255,255,255,0.08); border-radius: 8px; padding: 12px; text-align: center; box-shadow: 0 2px 8px rgba(0,0,0,0.15); transition: all 0.2s ease; border: 1px solid rgba(255,255,255,0.1); } .match-mvp-card:hover { background: rgba(255,255,255,0.12); transform: translateY(-2px); } .match-mvp-name { font-size: 0.9rem; margin-bottom: 4px; color: var(--light); font-weight: 600; } .match-mvp-team { color: #2ecc71; margin-bottom: 6px; font-weight: 500; font-size: 0.8rem; } .match-mvp-count { background: rgba(52, 152, 219, 0.2); padding: 4px 8px; border-radius: 12px; font-weight: 600; color: #3498db; display: inline-block; font-size: 0.8rem; } /* MVP Standings Section */ .mvp-standings-container { overflow-x: auto; margin-bottom: 40px; } .mvp-standings-table { width: 100%; border-collapse: collapse; background: rgba(255,255,255,0.05); border-radius: 10px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.2); min-width: 1000px; } .mvp-standings-table th { background: var(--secondary); padding: 15px 10px; text-align: center; font-weight: bold; color: white; } .mvp-standings-table td { padding: 12px 10px; border-bottom: 1px solid rgba(255,255,255,0.1); text-align: center; } .mvp-standings-table tr:last-child td { border-bottom: none; } .mvp-standings-table tr:hover { background: rgba(255,69,0,0.1); } .mvp-rank { font-weight: bold; width: 60px; } .mvp-player-cell { text-align: left; font-weight: bold; } .mvp-rewards-cell { text-align: center; color: #4CAF50; font-weight: bold; background: rgba(76, 175, 80, 0.1); border-left: 2px solid rgba(76, 175, 80, 0.3); } .points-table-container { overflow-x: auto; margin-bottom: 40px; } .points-table { width: 100%; border-collapse: collapse; background: rgba(255,255,255,0.05); border-radius: 10px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.2); min-width: 1000px; } .points-table th { background: var(--secondary); padding: 15px 10px; text-align: center; font-weight: bold; } .points-table td { padding: 12px 10px; border-bottom: 1px solid rgba(255,255,255,0.1); text-align: center; } .points-table tr:last-child td { border-bottom: none; } .points-table tr:hover { background: rgba(255,69,0,0.1); } .rank { font-weight: bold; width: 60px; } .team-cell { text-align: left; font-weight: bold; } .referees-container { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 20px; } .referee-card { background: rgba(255,255,255,0.1); border-radius: 10px; padding: 20px; text-align: center; box-shadow: 0 5px 15px rgba(0,0,0,0.2); } .referee-name { font-size: 1.3rem; margin-bottom: 10px; } .referee-role { color: #2ecc71; margin-bottom: 10px; font-weight: bold; } .referee-exp { font-size: 0.9rem; opacity: 0.8; } /* 2 Column Credits Section - All Mixed Together */ .credits-container { background: rgba(255,255,255,0.05); border-radius: 15px; padding: 30px; margin-top: 40px; box-shadow: 0 5px 15px rgba(0,0,0,0.2); } .credits-title { text-align: center; font-size: 1.8rem; margin-bottom: 25px; color: var(--light); position: relative; } .credits-title:after { content: ''; display: block; width: 80px; height: 3px; background: var(--secondary); margin: 10px auto; } .credits-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; } .credit-column { text-align: center; } .credit-list { list-style-type: none; } .credit-item { padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.1); } .credit-item:last-child { border-bottom: none; } .footer { text-align: center; margin-top: 50px; padding: 20px; border-top: 1px solid rgba(255,255,255,0.1); font-size: 0.9rem; opacity: 0.7; } @media (max-width: 768px) { .tournament-title { font-size: 2.2rem; } .announcement-text { font-size: 1rem; } .winner-item { min-width: 150px; padding: 12px; } .champion-card { width: 100%; max-width: 350px; } .mvp-card { flex-direction: column; text-align: center; } .mvp-avatar { margin-right: 0; margin-bottom: 15px; } .mvp-stats { flex-wrap: wrap; justify-content: space-around; } .stat { margin: 5px 10px; } .credits-grid { grid-template-columns: 1fr; gap: 15px; } .mvp-standings-table, .points-table { font-size: 0.9rem; } .mvp-standings-table th, .mvp-standings-table td, .points-table th, .points-table td { padding: 8px 5px; } .winner-badge, .second-badge, .third-badge { font-size: 0.8rem; padding: 4px 10px; } .match-mvps-container { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 10px; } } SHOOTER TRIO CHAMPIONSHIP II OUTCOME Hey everyone! Our tournament has officially come to an end, and I must say it was a real pleasure hosting it and seeing it all come together! Let's take a moment to congratulate our top 3 teams: Tournament Champions šŸ„‡ 1st Place chaos Congratulations on winning the second edition of STC! 🄈 2nd Place ARAYXS Amazing effort reaching the final and securing second place! šŸ„‰ 3rd Place Essence-of-Speed Great performance fighting all the way to the third place! We had a total of 20 teams registered, bringing together 80 players who gave their all across 52 intense matches. Every round was packed with excitement, great plays, and unforgettable moments! A huge thanks to everyone who joined, supported, or helped make this tournament happen, you truly made it something special. Rewards šŸ† TOURNAMENT CHAMPION šŸ† 1st Place chaos Wins: 6 | Losses: 1 • $60 Cash • 3 Months Donator Status • 1000 TFC per player Team Players: chs'astralĀ (C)189Ā pts chs'slinger132 pts chs'leavon129Ā pts chs'Teavon80 pts 🄈 ELITE FINALIST 🄈 2nd Place ARAYXS Wins: 6 | Losses: 1 • $30 Cash • 2 Months Donator Status • 500 TFC per player Team Players: .A'RoBy160 pts .A'Eleven160 pts .A'BazooKaĀ (C)152 pts .A'Boudi0 pts šŸ„‰ TOP CONTENDER šŸ„‰ 3rd Place Essence-of-Speed Wins: 6 | Losses: 1 • $20 Cash • 1 Month Donator Status • 250 TFC per player Team Players: EoS!Pedrin195 pts EoS!Natsu152Ā pts EoS!Apex98 pts EoS!SherazPapiĀ (C)80 pts Tournament MVP EoS PEDRIN Prize: $15 cash + $200,000 (in-game money) 27.8 Avg Points 195 Total PTS 188 Kills 90 Survivals 5 Match MvP MVP Standings Rank Player Kills Survivals Match MVPs Points Rewards 2 astral 211 107 3 189 $200,000 3 LuuKas 150 76 2 170 $150,000 4 RoBy 150 95 2 160 $100,000 5 Eleven 161 89 0 160 $75,000 6 BazooKa 152 76 1 152 $50,000 Teams Standings Rank Team Wins Losses Win Rate Kills Survivals Points 1 Chaos 6 1 85.7% 531 293 18 2 ARAYXS 6 1 85.7% 463 260 18 3 Essence-of-Speed 6 1 85.7% 455 277 18 4 NextRevolution 5 2 71.4% 400 221 15 5 Euphoria 4 1 80.0% 179 96 12 6 Wand and Sword 3 2 60.0% 223 117 9 7 kim kardashian 3 2 60.0% 206 109 9 8 BONKERS 3 2 60.0% 177 86 9 9 Mama Africa 2 2 50.0% 175 97 6 10 X-Valiants 2 2 50.0% 141 85 6 11 ZeroSkills 2 2 50.0% 87 35 6 12 Disability 1 3 25.0% 135 55 3 13 Team Laggers 1 3 25.0% 101 46 3 14 zovers 1 3 25.0% 98 24 3 15 Barbie Girls 1 3 25.0% 64 29 3 16 Valera 1 3 25.0% 55 17 3 17 Pavvlon 1 3 25.0% 46 23 3 18 Subhumans 0 4 0% 35 13 0 19 SUSSY BAKA 0 4 0% 14 4 0 20 Rusi 0 4 0% 10 4 0 Match MVPs Pedrin $125,000 5 MVPs astral $75,000 3 MVPs RoBy $50,000 2 MVPs Funs $50,000 2 MVPs sgtawyy $50,000 2 MVPs Natsu $50,000 2 MVPs LuuKas $50,000 2 MVPs XonevauS $25,000 1 MVP ShatoLato $25,000 1 MVP Ramssis $25,000 1 MVP Hedi $25,000 1 MVP Procrastinador $25,000 1 MVP Karma $25,000 1 MVP SherazPapi $25,000 1 MVP Viltrumite $25,000 1 MVP Rom4no $25,000 1 MVP iRex $25,000 1 MVP Dragon $25,000 1 MVP BOSS $25,000 1 MVP Aceu $25,000 1 MVP Aeo $25,000 1 MVP Jamor $25,000 1 MVP BazooKa $25,000 1 MVP c0ld $25,000 1 MVP Teavon $25,000 1 MVP Referees & Streamers Rewards Hedi $390,000 13 Matches as Referee xBlue $290,000 3 Matches as Referee - Streamer Eleven $240,000 8 Matches as Referee Dubbie $120,000 4 Matches as Referee iRex $120,000 4 Matches as Referee Pedrin $100,000 Recordings c0ld $90,000 3 Matches as Referee SherazPapi $30,000 1 Match as Referee Credits Eleven - Lead Organizer Pedrin - Lead Organizer & Recorder Dubbie - Assistant Hedi - Match Scheduling & Organization BazooKa - Organization Team xBlue - Streamer Referees SkreePy - Development Nao - Development Avi - Announcements & Management Maybe - Maps Fixing Skaarj - Design iProShooT - Design SponsorsĀ  Tournament Results Ā© 2025 | All rights reserved - Contact Leadership for rewards & Prizes
    • REFEREE Eleven'tff SCORE nR 0 - 2 EoS MVP EoS!Pedrin Match Score 1 NextRevolution 7 - 13 Essence-of-Speed 2 NextRevolution 5 - 15 Essence-of-Speed # Map Points Alive players Best of 3 - round 1 1 Azoo - El mzyom vibes 2 nR 0 - 1 EoS eos!apex, kirayumy, EoS!Pedrin 2 Katamaran - High Jump nR 0 - 2 EoS kirayumy, eos!apex 3 PREDATOR - Phenomenal 2 nR 1 - 2 EoS n/A, iproshoot, LuuKas 4 EDOS ft. Ron1 - Shooter II nR 1 - 3 EoS eos!apex, kirayumy 5 Ave - Water Canal nR 1 - 4 EoS EoS!Pedrin 6 WellingTon - Suspense nR 1 - 5 EoS eos!apex, kirayumy 7 EDOS ft. Ron1 - Shooter nR 2 - 5 EoS iproshoot, LuuKas 8 EDOS ft. Ron1 - Shooter nR 3 - 5 EoS iproshoot, LuuKas 9 Calcu ft. TurBo - Tactical Warfare nR 3 - 6 EoS eos!apex 10 TurBo ft. ZeroXy ft. Nebla - zNation! nR 3 - 7 EoS kirayumy 11 TurBo ft. ZeroXy ft. Nebla - zNation! nR 4 - 7 EoS n/A, LuuKas 12 RuzikA - ShoT in your Ass nR 4 - 8 EoS eos!apex, EoS!Pedrin 13 RuzikA - ShoT in your Ass nR 5 - 8 EoS n/A, iproshoot 14 RuzikA - ShoT in your Ass nR 5 - 9 EoS eos!apex, kirayumy, EoS!Pedrin 15 Tobster - The Castle 1 nR 5 - 10 EoS kirayumy, EoS!Pedrin 16 Tobster - The Castle 1 nR 5 - 11 EoS kirayumy, EoS!Pedrin 17 Tobster - The Castle 1 nR 6 - 11 EoS n/A 18 Tobster - Kamikaze nR 6 - 12 EoS kirayumy, EoS!Pedrin 19 Tobster - Kamikaze nR 6 - 13 EoS eos!apex, kirayumy, EoS!Pedrin 20 Tobster - Kamikaze nR 7 - 13 EoS LuuKas Best of 3 - round 2 1 Azoo - El mzyom vibes 2 nR 0 - 1 EoS eos!apex, kirayumy, EoS!Pedrin 2 Katamaran - High Jump nR 0 - 2 EoS kirayumy 3 PREDATOR - Phenomenal 2 nR 0 - 3 EoS kirayumy, EoS!Pedrin 4 EDOS ft. Ron1 - Shooter II nR 0 - 4 EoS eos!apex, EoS!Pedrin 5 Ave - Water Canal nR 1 - 4 EoS iproshoot, LuuKas 6 WellingTon - Suspense nR 2 - 4 EoS iproshoot, LuuKas 7 EDOS ft. Ron1 - Shooter nR 3 - 4 EoS LuuKas 8 EDOS ft. Ron1 - Shooter nR 4 - 4 EoS n/A, LuuKas 9 Calcu ft. TurBo - Tactical Warfare nR 4 - 5 EoS eos!apex, kirayumy 10 TurBo ft. ZeroXy ft. Nebla - zNation! nR 4 - 6 EoS eos!apex, kirayumy 11 TurBo ft. ZeroXy ft. Nebla - zNation! nR 4 - 7 EoS eos!apex, kirayumy 12 RuzikA - ShoT in your Ass nR 4 - 8 EoS eos!apex, kirayumy 13 RuzikA - ShoT in your Ass nR 5 - 8 EoS iproshoot 14 RuzikA - ShoT in your Ass nR 5 - 9 EoS eos!apex, EoS!Pedrin 15 Tobster - The Castle 1 nR 5 - 10 EoS eos!apex, kirayumy, EoS!Pedrin 16 Tobster - The Castle 1 nR 5 - 11 EoS eos!apex, kirayumy, EoS!Pedrin 17 Tobster - The Castle 1 nR 5 - 12 EoS eos!apex 18 Tobster - Kamikaze nR 5 - 13 EoS eos!apex, kirayumy 19 Tobster - Kamikaze nR 5 - 14 EoS eos!apex, EoS!Pedrin 20 Tobster - Kamikaze nR 5 - 15 EoS kirayumy, EoS!Pedrin Best of 3 - round 3 Player TOTAL KILLED SURVIVED EoS!Pedrin 54 38 16 kirayumy 52 31 21 eos!apex 48 28 20 LuuKas 37 28 9 iproshoot 22 15 7 n/A 22 17 5
    • Tell us about yourself. Hello guys, my name is Sergey, im 23 years old and im from Russia, Rostov-On-Don. What’s your MTA history? (2012-2014) I started playing MTA in 2012 on the FFS server. At first I played DD for about a year, then switched to OS/DM.I still remember the first map I finished, it was Aquil v1. (2014-2016) At this time I spent time on the popular Russian DM server, but then I started playing on TG. (2016-2019) I don’t remember this time well, but I remember playing on servers such as ER and Vultaic. At this time I was playing and enjoying the game. (2019-2022) I remember this time playing on FoXX and Lumiverse servers. I think this is my best time in this game. (2022-2025) During this time, I served in the army and now actively play on the TFF server. What clans have you been part of, and why did you leave them? UP| - Unlimited Power - Member - Closed [INT] - International Team - Member - Left xN# - Nitrous Racing - Member - Closed Syn. - Synergy - Member - Merged with TfF /TfF\ - The Favoured Few - Member - Left xz' - Zeitgeist - Member - Left eP! - Elite Players - Member(demoted to Trial bcs i was inactive) - Left Why do you want to join The Favoured Few? Honestly, many of my friends are already in TFF and I want to become a part of TFF too. I want to find more acquaintances and friends among you. What can you offer us? Now i spend a lot of time in this game and can play cws in different modes and also have fun chatting Anything else you'd like to add: YouTube : *link* Ā  here I sometimes post passing maps, my maps and funny moments. Thanks you for readingā£ļø
    • Tell us about yourself. My name is Vladislav and my nickname is Zoila, i am 22 years old. I live in Russia, Novosibirsk. What’s your MTA history? Well, I started my career at MTA 15 years ago. Once, when I was sitting with my friends on Skype, they invited me to play MTA on dm server with them. At that time, I didn't know what DM was. Well, I agreed, came and started learning how to play. What clans have you been part of, and why did you leave them? Seventh Try - closed 3R - dm squad closed xN - retired F1 - closed(cw wff manager) Why do you want to join The Favoured Few? What can you offer us? I've been searching the most suitable clan for a quite long time. I've realized that this clan has kindness and talented people. I do communicate with some of them and being a friend. I want to support this clan and make it better. Would assist in many different things you will you need me for.Ā As for the general cause, I would take part in to do my best hence to deal with clanwars and to represent your community in an excellent form.I will trying to best that i can. Anything else you'd like to add? I hope to find a team that really recognizes me and does not remember my early mistakes. I'm trying to get better, i apologize if I had offended anyone before. Thank You for Reading Discord: .zoila Ā 
    • Tell us about yourself. Ā  Hey, I'm Sam, though most people in-game know me as Corrupt. I'm 24 and based in Jordan. By day, I run my own company that focuses on things like graphic design, web development, and branding. That professional life grew directly out of the passions I discovered in MTA years ago. Lately, I've gotten really into Lua scripting. It led me to create VisionX, a high-performance draw-distance resource I built from scratch because I was frustrated with the performance of older ones. It was a serious challenge, but it's a good example of the kind of problem-solving I really enjoy. Ā  Ā  What’s your MTA history? Ā  My MTA story has been a long road with a lot of lessons, so I'll lay it all out to be perfectly clear. My journey began back in 2012, when I stumbled upon a random Arab Race server. I was completely new to the game but got hooked on that game mode immediately. After that server eventually shut down, I moved to a Race/DD/DM server where I got my first taste of responsibility and became an admin. I'll be blunt about it—I was young, got into an argument with other admins, and made a childish mistake ("faking a mapper") that got me banned. It was a hard lesson, but one that taught me a lot about maturity early on. For the next couple of years,Ā around 2014, I wasn't in any specific clan. Instead, I spent my time as a dedicated player on top-tier public servers like FFS and The Favoured Few. Most notably, I was a regular on the Twisted Gamers (TG) servers. While I was never an official member of their clan, it was in that environment that I first discovered the map editor and started my career in mapping and design. Ā  Around late 2015, real life and family issues required me to take a 9-month break from the game. I returned when a friend, Cheslav, invited me to join Most Valuable Players (MvP). That was an amazing experience; I became their web developer and felt like a genuinely valuable asset to the team. It was one of the best clans I've been a part of, but it unfortunately began to fade out after our lead developer, LuxonorN, left. Ā  In 2016, I took another detour from MTA and poured about 2,000 hours into CS:GO, playing with friends from my city. Ā  My path back to MTA was kickstarted in a strange way in 2017. I was playing a lot of GTA V and needed some design work done for a mod. I hired a graphic designer, and watching them work was a revelation. That single moment inspired me to learn the craft myself, and it's what ultimately launched my entire professional career. I returned to MTA in mid-2017 with a completely different mindset. I co-founded and led a new clan, Ultimate Power, alongside Every (who now leads l7). Running a clan from the ground up taught me a tremendous amount about leadership and the difficulty of keeping a roster motivated, which is ultimately why the clan didn't last. Ā  Ā  In January 2018, I was invited to join xN# as their web developer, where I worked on their website and designed their server with my friend Luminaire. After my time there ended, I had another brief stint here at The Favoured Few (TfF), taking on a role as a Designer for the community. Ā  However, by late 2018, my real-world career was demanding all of my attention. I had to make the tough choice to become inactive and step away from the game to focus on building my skills and eventually, my own company. This began a long hiatus. I tried to come back a couple of times, with short-lived returns in both 2022 and 2023, but the timing was never quite right to fully commit. Ā  That brings us to today. As of June 2025, I am now officially and fully back. My professional life is stable, my passion for the game is stronger than ever, and I'm here for the long haul. I have no plans to retire again unless the game itself dies out. Ā  Ā  What clans have you been part of, and why did you leave them? Ā  i will try to remember all the clans i have been in but this should be all the relevant clans i been in: XuG: Kicked. Most Valuable Players (MvP): The clan slowly became inactive after our lead developer left, and it just faded out. Ultimate Power (UP): As co-founder, I eventually had to move on. The roster became too inactive to be competitive. xN#: Left after my main collaborator and friend, Luminaire, decided to leave. The Favoured Few (TfF): This was back in 2018. My new career was demanding all my time, so I became inactive and had to step away. 90': Kicked due to some internal issues in the clan. l7: Left because of a serious disagreement with a developer over my mapping files. Ā  Ā  Ā  Why do you want to join The Favoured Few? What can you offer us? Ā  I'm at a point where I'm looking for more than just a clan tag; I'm looking for a long-term home. I’ve been watching TfF for a while, and the stable, respectful community you’ve all built is exactly what I’m searching for. I want to be part of a team that's committed to sticking together and growing. What I bring to the table is a pretty unique mix of professional skills and a deep passion for this game. I'm not just a player; I'm a creator. Whether it's designing a new logo, building a slick webpage, or scripting a custom resource like my VisionX project, I love to build things that make the community better. Running my own company means I live and breathe clear communication and teamwork, so I know how to work on projects, give and take feedback, and be a reliable member of the team. Ultimately, I want to invest my time and skills in a clan that's built to last. I'm ready to be a dedicated, active member and help TfF continue to succeed in any way I can. Ā  Ā  Anything else you'd like to add? Ā  I've tried to be as open as possible about my history so you know exactly who you're getting. I'm genuinely excited about the possibility of joining and contributing. Thanks for your time and for considering me. Ā  Ā  Ā  Thank You for Reading Through Discord: @Sheputy
  • Popular Contributors

  • Forum Statistics

    • Total Topics
      8.2k
    • Total Posts
      44.8k
  • Member Statistics

    • Total Members
      10460
    • Most Online
      1482

    Newest Member
    Deniz1010
    Joined
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.