minecraft-server-list.com Open in urlscan Pro
172.66.43.150  Public Scan

Submitted URL: http://vote4.twerion.net/
Effective URL: https://minecraft-server-list.com/server/500087/vote/
Submission: On May 08 via api from US — Scanned from NL

Form analysis 2 forms found in the DOM

POST /searcher/

<form action="/searcher/" method="POST" id="topsearch">
  <input type="text" name="search" style="width:300px;" placeholder="Search by server name or description" value="">
  <button class="button1" type="submit" style="width:50px!important;fill:#fff;cursor:pointer;text-indent:0;"><svg width="13" height="13" viewBox="0 0 13 13">
      <title>search</title>
      <path
        d="m4.8495 7.8226c0.82666 0 1.5262-0.29146 2.0985-0.87438 0.57232-0.58292 0.86378-1.2877 0.87438-2.1144 0.010599-0.82666-0.28086-1.5262-0.87438-2.0985-0.59352-0.57232-1.293-0.86378-2.0985-0.87438-0.8055-0.010599-1.5103 0.28086-2.1144 0.87438-0.60414 0.59352-0.8956 1.293-0.87438 2.0985 0.021197 0.8055 0.31266 1.5103 0.87438 2.1144 0.56172 0.60414 1.2665 0.8956 2.1144 0.87438zm4.4695 0.2115 3.681 3.6819-1.259 1.284-3.6817-3.7 0.0019784-0.69479-0.090043-0.098846c-0.87973 0.76087-1.92 1.1413-3.1207 1.1413-1.3553 0-2.5025-0.46363-3.4417-1.3909s-1.4088-2.0686-1.4088-3.4239c0-1.3553 0.4696-2.4966 1.4088-3.4239 0.9392-0.92727 2.0864-1.3969 3.4417-1.4088 1.3553-0.011889 2.4906 0.45771 3.406 1.4088 0.9154 0.95107 1.379 2.0924 1.3909 3.4239 0 1.2126-0.38043 2.2588-1.1413 3.1385l0.098834 0.090049z">
      </path>
    </svg></button>
</form>

POST #vote

<form method="post" action="#vote" id="voteform">
  <input name="ipennn" value="172.70.111.54" type="hidden">
  <input name="iden" value="500087" type="hidden">
  <input name="ignn" type="text" placeholder="Minecraft playername" style="width:215px;" onclick="if (!window.__cfRLUnblockHandlers) return false; this.focus();this.select();" autocomplete="on" id="ignn" maxlength="16"><br>
  <input type="hidden" id="g-recaptcha-response" name="g-recaptcha-response"
    value="03AFcWeA6WSfH1CQ9ay1jHXakekbYCYANsD0hh0HkHuwRyq_QAzxsstHdcKlJyfdULmMYR0-Pa9vQVaByMksSHWN8zRkJkKehEIAQSztOBAsUgcF8K7mhAU8gL544Ufc7uA7_PMJu45ZX7H2X6YgI9Rh9ZgR_cpkCliwkI990HknMCCabui8bHsT5l-Wlc0pPXAXdKXvQai2-GqSLVTotiNei0xfYkI-b6x3swdptgDnXPOiTrwo0UQ-Ikf3NeWPLeR7zE3CAPy31u6fsdbYDVoOPY6WYnE9E8zRqWYtSy5voEjbRcrgqVFq5mtGS87RX4847K7aWb6XzHNOjOiYc1TLmHXKQ4EpccGVUjLOIejlo1DRAVuZUZI4rWJ7aS4QvVYUigjf9sm00uQtfpyjl6rD-jA0FUYcl3eAlNmyoSctQSoD69oZ-8a2b--s8lNftxDHNUkdAYsPZPzdaT_D0s0_cDWodPQi7st15oQAI4ty5H287iB_QtlGj-kx1AikNLefcUjBo4EUE3omE0AtL4TCnD8PgHnL7zTwb9O58sXshsDCAjqk1_WfSkYo5BEVKhgoMmMbn23cvk-BxGfBlkdQpUKheJKJQspY2YlVVElweqJBlH2OJLmyRWAfeHxFXzgiCP7z-lTeuOsWv0F7Z4VW_PMpqW8i5FQqeMixt2iXvF_IFVcuKe1iEVIkfpAbCKhoKBg1z_JC9C">
  <div id="reviewSection" class="hidden">
    <div class="rating">
      <span class="star1" data-value="5">★</span>
      <span class="star1" data-value="4">★</span>
      <span class="star1" data-value="3">★</span>
      <span class="star1" data-value="2">★</span>
      <span class="star1" data-value="1">★</span>
      <input type="hidden" name="star_rating" id="star_rating">
    </div>
    <textarea id="review" name="review" rows="3" cols="50" placeholder="Write a review - let us know what you loved and what could be better about this server."></textarea>
    <div id="progressContainer" style="width: 100%; background-color: #ddd;">
      <div id="progressBar" style="width: 0%; height: 20px; background-color: #4CAF50;"></div>
    </div>
    <div id="wordCountMessage"></div>
    <p style="font-size:0.8em">Kindly maintain respect while sharing your thoughts. Comments are subject to moderation.</p>
  </div>
  <script type="text/javascript">
    const minWords = 10;
    document.getElementById('review').addEventListener('input', function() {
      const reviewText = this.value.trim();
      const wordCount = reviewText.length > 0 ? reviewText.split(/\s+/).length : 0;
      const progress = Math.min((wordCount / minWords) * 100, 100);
      const progressBar = document.getElementById('progressBar');
      progressBar.style.width = progress + '%';
      const wordCountMessage = document.getElementById('wordCountMessage');
      if (wordCount < minWords) {
        wordCountMessage.textContent = `Please add at least ${minWords - wordCount} more word(s) to meet the minimum requirement.`;
      } else {
        wordCountMessage.textContent = '';
      }
    });
    document.addEventListener('DOMContentLoaded', function() {
      document.getElementById('leaveReviewCheckbox').addEventListener('click', function() {
        const reviewSection = document.getElementById('reviewSection');
        if (this.checked) {
          reviewSection.classList.remove('hidden');
        } else {
          reviewSection.classList.add('hidden');
        }
      });
      document.querySelectorAll('.star1').forEach(star => {
        star.addEventListener('click', function() {
          const ratingValue = this.getAttribute('data-value');
          document.getElementById('star_rating').value = ratingValue;
          // Remove the previous selected star's color
          document.querySelectorAll('.star1').forEach(s => {
            s.style.color = '#ccc';
          });
          // Highlight the selected star and all the stars after it
          this.style.color = '#f90';
          let nextSibling = this.nextElementSibling;
          while (nextSibling) {
            nextSibling.style.color = '#f90';
            nextSibling = nextSibling.nextElementSibling;
          }
        });
      });
    });
  </script>
  <br>
  <input type="button" id="voteButton" name="button" nounce="2x17g26c47f26c1" onclick="if (!window.__cfRLUnblockHandlers) return false; saveVote(23970285)" value="Click to Vote" class="buttons" style="background-color: #4caf50;"><br>
  <label><input type="checkbox" id="leaveReviewCheckbox" name="leaveReviewCheckbox"> <strong>Review and Rate</strong>: Interested in sharing your thoughts on this server? Click here to leave a review and rate your experience. (Note: This step is
    optional and is not necessary to receive your vote reward)</label>
</form>

Text Content

search



 * NEW SERVERS
 * COUNTRY
 * ADD SERVER
 * LOGIN
 * FAQ
 * HELP


You are here:
 1. Minecraft Servers
    »
 2. Survival Servers
    »
 3. MCSL.TWERION.NET
    »
 4. Vote


VOTE FOR MCSL.TWERION.NET
JAVA SERVER IP ⟹MCSL.TWERION.NET
BEDROCK IP/PORT ⟹ MCSL.TWERION.NET:19132



1052 Players have voted for this server in May.
36946 Votes - All time



Top Voters


★ ★ ★ ★ ★



Kindly maintain respect while sharing your thoughts. Comments are subject to
moderation.



Review and Rate: Interested in sharing your thoughts on this server? Click here
to leave a review and rate your experience. (Note: This step is optional and is
not necessary to receive your vote reward)


TOP VOTERS

 * FortuneMidnight - 8 votes
 * totKing - 8 votes
 * ureee - 7 votes
 * FiveDwarf725676 - 7 votes
 * G3G4NTOS - 7 votes
 * Flaschenzug - 7 votes
 * LaReina - 7 votes
 * outhenpapa - 7 votes
 * bkcommando6969 - 7 votes
 * AmelMaster - 7 votes

Server Website
Discord
Store




RECENT COMMENTS & REVIEWS (384) RESET LOAD MORE

DARKCARNAGE99

2024-05-03 16:20:05
★ ★ ★ ★ ★

The best server that I have played on. THE BEST

GEPLOPPT

2024-05-02 11:31:50
★ ★ ★ ★ ★

12323 wdad awd g eg ht jt hsf sfed esfe sfes

GEPLOPPT

2024-05-01 13:27:30
★ ★ ★ ★ ★

dwa dwad wa dwa grgr g ef awdasd wad wfw faw

OCEANCATLIFE

2024-05-01 09:02:33
★ ★ ★ ★ ★

nice server thanks i like it so much so thanks

GEPLOPPT

2024-04-29 09:32:15
★ ★ ★ ★ ★

dwad wf g g wad wadw dwa rg ewad wad was

FIVEDWARF725676

2024-04-28 17:57:29
★ ★ ★ ★ ★

the server is reali cool and not langwilig jes sui




Server IP - Copy to Minecraft Client to Play: mcsl.twerion.net

🌟 Join the epic world of Twerion.net! 🌟

🚀 Unique Minecraft Universe! Immerse yourself in the thrilling realm of
Twerion, where adventure and innovation unite! Experience unique game modes that
will revolutionize your Minecraft journey.

🛠️ Build, Fight, Explore! Whether you're a builder, warrior, or explorer,
Twerion offers endless possibilities. Construct monumental structures, face the
toughest foes in breathtaking PvP battles, or explore the infinite expanses of
our worlds.

💎 Exclusive Features and Community Events! Enjoy special plugins and mods found
only on Twerion.net. Take part in our unique community events that will
continuously surprise and delight you.

🤝 Friends and Rivals! Forge new friendships or challenge rivals. In our vibrant
community, everyone finds their place.



⚡ Continuous Updates and Improvements! We're constantly evolving Twerion.net to
provide you with the best gaming experience. Your ideas and suggestions are
always welcome!

🌐 Join now! Discover the secret of Twerion.net and become part of a world that
challenges and rewards your creativity and skills. Don't wait any longer – the
adventure calls!

🔗 IP: mcsl.twerion.net

🎮 Version: 1.8-1.20.4

Are you ready for the adventure of a lifetime? See you on Twerion.net! 🌈🏰🛡️

tags: skypvp bedwars citybuild survival minecraft server German Craft Attack
German freebuild oneblock skyblock english cracked









Privacy Policy | About | Advertise | Terms of Use | Update Log | Contact | ©
Copyright 2010-2024. All Rights Reserved.
The game Minecraft is created by Mojang AB and is not affiliated with this site.

Website created and maintained by: Koala Designs ApS


✓
Bedankt voor het delen
AddToAny
Meer…