servers-minecraft.net Open in urlscan Pro
2a06:98c1:3120::3  Public Scan

URL: https://servers-minecraft.net/server-pikanetwork.956
Submission: On July 28 via api from FI — Scanned from NL

Form analysis 2 forms found in the DOM

<form x-data="searchForm()" @submit.prevent="handleForm($store.searching.search_type)">
  <div class="relative" @click="results.length ? resultsActive = true : resultsActive = false" @click.away="resultsActive = false">
    <input type="text" id="quickSearch" class="font-bold py-3 px-5 xl:pl-12 bg-transparent text-white outline-none" x-model="query" @focusin="focused = true" @focusout="focused = false">
    <div class="icon absolute top-0 text-gray-500 p-[14px] hidden xl:block">
      <svg class="w-6 h-6" fill="currentColor" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
        <path fill-rule="evenodd" d="M8 4a4 4 0 100 8 4 4 0 000-8zM2 8a6 6 0 1110.89 3.476l4.817 4.817a1 1 0 01-1.414 1.414l-4.816-4.816A6 6 0 012 8z" clip-rule="evenodd"></path>
      </svg>
    </div>
    <label for="quickSearch" class="overlay font-bold text-gray-300 absolute top-[13px] text-base left-[50px] pointer-events-none transition-opacity" :class="{ 'opacity-0': focused || query.length > 0 }">quick search... </label>
  </div>
  <div class="absolute top-full right-0 z-50 bg-white shadow-md transition-opacity max-h-[350px] overflow-y-auto opacity-0" style="width: 308px;" :class="{ 'opacity-0': !resultsActive }">
    <template x-for="result in results">
      <a :href="result.url" class="py-2 block px-5 font-bold transition-all text-gray-350 hover:text-gray-900 hover:bg-gray-100" x-text="result.title"></a>
    </template>
  </div>
</form>

POST #

<form id="voteForm" action="#" method="post" class="max-w-lg mx-auto">
  <script>
    function voteSubmit() {
      $('form#voteForm').submit();
      /* $.ajax({
      	type: 'GET',
      	url: 'https://servers-minecraft.net/voteAd.php',
      	data: { username: document.getElementById("username").value },
      	success: function (raw) {
      		try {
      			var data = JSON.parse(raw);

      			if("error" in data) {
      				$('form#voteForm').submit();
      				return;
      			}

      			ramp.showRewardedVideo({
      				userId: data.user_id,
      				code: data.code,
      				callback:(response) => {
      					console.log("cheese");
      					$('form#voteForm').submit();
      				}
      			});
      		}
      		catch(err) {
      			$('form#voteForm').submit();
      		}
      	}
      });

      return false;*/
    }
    $(document).ready(function() {
      $("#voteSubmitBtn").click(function(event) {
        event.preventDefault();
        voteSubmit();
      });
    });
  </script>
  <input type="hidden" name="id" value="956">
  <div class="mb-6">
    <label for="username" class="block mb-2 font-bold text-sm text-gray-600">Minecraft Username</label>
    <input type="text" id="username" name="username" maxlength="16" required="" class="bg-white border border-gray-200 py-3 px-6 text-lg font-bold outline-none focus:border-green-500 w-full">
  </div>
  <section x-data="{ open: false, score: 5 }">
    <label class="mb-6 block">
      <input type="checkbox" name="post_review" x-model="open">
      <span class="mr-2 font-bold">Leave a review?</span>
    </label>
    <div x-show="open" style="display: none;">
      <div class="mb-6">
        <label for="review_text" class="block mb-2 font-bold text-sm text-gray-600">Rating (1-5)</label>
        <input type="hidden" name="review_score" x-model="score" readonly="" value="5">
        <div class="rounded-md bg-gray-50 inline-flex items-center text-gray-500">
          <button type="button" class="p-3 text-orange-500" :class="{ 'text-orange-500': score > 0 }" @click="score = '1'" aria-label="1 Star">
            <svg class="w-6 h-6" fill="currentColor" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
              <path
                d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371 1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54 1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1 1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z">
              </path>
            </svg>
          </button>
          <button type="button" class="p-3 text-orange-500" :class="{ 'text-orange-500': score > 1 }" @click="score = '2'" aria-label="2 Stars">
            <svg class="w-6 h-6" fill="currentColor" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
              <path
                d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371 1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54 1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1 1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z">
              </path>
            </svg>
          </button>
          <button type="button" class="p-3 text-orange-500" :class="{ 'text-orange-500': score > 2 }" @click="score = '3'" aria-label="3 Stars">
            <svg class="w-6 h-6" fill="currentColor" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
              <path
                d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371 1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54 1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1 1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z">
              </path>
            </svg>
          </button>
          <button type="button" class="p-3 text-orange-500" :class="{ 'text-orange-500': score > 3 }" @click="score = '4'" aria-label="4 Stars">
            <svg class="w-6 h-6" fill="currentColor" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
              <path
                d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371 1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54 1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1 1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z">
              </path>
            </svg>
          </button>
          <button type="button" class="p-3 text-orange-500" :class="{ 'text-orange-500': score > 4 }" @click="score = '5'" aria-label="5 Stars">
            <svg class="w-6 h-6" fill="currentColor" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
              <path
                d="M9.049 2.927c.3-.921 1.603-.921 1.902 0l1.07 3.292a1 1 0 00.95.69h3.462c.969 0 1.371 1.24.588 1.81l-2.8 2.034a1 1 0 00-.364 1.118l1.07 3.292c.3.921-.755 1.688-1.54 1.118l-2.8-2.034a1 1 0 00-1.175 0l-2.8 2.034c-.784.57-1.838-.197-1.539-1.118l1.07-3.292a1 1 0 00-.364-1.118L2.98 8.72c-.783-.57-.38-1.81.588-1.81h3.461a1 1 0 00.951-.69l1.07-3.292z">
              </path>
            </svg>
          </button>
        </div>
      </div>
      <div class="mb-6">
        <label for="review_text" class="block mb-2 font-bold text-sm text-gray-600">Your Detailed Review</label>
        <textarea type="text" id="review_text" name="review_text" class="bg-white border border-gray-200 py-3 px-6 outline-none focus:border-green-500 w-full" rows="3" placeholder="Write your review here!"></textarea>
      </div>
    </div>
  </section>
  <div style="height: 130px">
    <div class="mb-10 flex justify-center">
      <div class="g-recaptcha" style="width: 304px; height: 78px;" data-sitekey="6LenjUIgAAAAAEC38mbBc0MurhJgNuvzZlKmr3Xi"></div>
    </div>
  </div>
  <button type="submit" id="voteSubmitBtn" class="btn btn-main btn-lg w-full transition-opacity hover:opacity-75">
    <span>Submit Vote</span>
  </button>
</form>

Text Content

Discord
 * Sponsored Slots
 * Login
 * Create Account

 * Servers
 * Skins
 * Optifine
 * Forge
 * Articles

Servers
SERVERS SKINS

quick search...



PIKANETWORK SERVER IP & REVIEWS | #1 MINECRAFT SERVERS LIST

PikaNetwork Minecraft Server IP address, version and information. View this page
for more information about the PikaNetwork Minecraft Server.

Minecraft New Servers Minecraft 1.20 Servers Minecraft 1.19 Servers Minecraft
Survival Servers Minecraft Skyblock Servers Minecraft Prison Servers Minecraft
Earth Servers Minecraft Pixelmon Servers Minecraft SMP Servers Minecraft Bedrock
Servers Minecraft Factions Servers Minecraft Bedwars Servers Minecraft Parkour
Servers Minecraft Lifesteal Servers Minecraft CityBuild Servers Minecraft PvP
Servers Minecraft Cobblemon Servers Minecraft Creative Servers Minecraft Skywars
Servers Minecraft Anarchy Servers Minecraft Towny Servers Minecraft Vanilla
Servers Minecraft OPPrison Servers Minecraft Hardcore Servers Minecraft MCMMO
Servers Minecraft Mini Games Servers Minecraft Oneblock Servers Minecraft OP
Servers Minecraft Crossplay Servers Minecraft Crypto Servers Minecraft Metaverse
Servers Minecraft FTB Servers Minecraft Roleplay Servers Minecraft Cracked
Servers Minecraft Economy Servers Minecraft Tekkit Servers Minecraft PvE Servers
Minecraft Family Friendly Servers Minecraft P2E Servers Minecraft Gens Servers
Minecraft Clicker Servers Minecraft 1.8 Servers Minecraft Minehut Servers


Our website is made possible by displaying online advertisements to our
visitors. Please consider supporting us by disabling your ad blocker.


Explore
 * Minecraft Servers
 * Cracked Servers
 * PikaNetwork

PikaNetwork
smo.pika.host
Add to Bedrock Server List

Online 1.20
2536 / 6500 players
4.9 / 5 (31727)

--------------------------------------------------------------------------------

PikaNetwork
2536 / 6500 players
IP smo.pika.host Bedrock IP bedrock.pika.host Bedrock Port 19132 Owner
craftigames Location United States Uptime 100% Last Check 2 minute(s) ago Total
votes 79438 Website Visit

--------------------------------------------------------------------------------

Twitter Store

--------------------------------------------------------------------------------

GAMEMODE TYPES
CrackedMini GamesSkywarsFactionsPrisonSkyblockSurvivalBedwarsBedrockLifesteal

--------------------------------------------------------------------------------

Unique IP Copies
 * 139 today

Share this Minecraft Server!

33 Shares
Share
Tweet
Snap
Email
Share
 * Vote
 * Info
 * Reviews (31727)

PikaNetwork is a Cracked Minecraft server! Open to both Regular and Cracked
players. Our server's player base is intermittently growing since it's first
released, users around all over the world playing our amazing gamemodes and
enjoying their time here with our beloved community. Can't wait to play? Join
play.pika-network.net now!

We have an amazing Bedwars server, Skywars, Factions, OP Prisons, Custom
Skyblock, KitPvP and more!

Minigames servers offer extremely fun content for players of all ages to enjoy
on a single network. Players start on these servers in a hub and then select the
particular minigame they would like to play. Some gamemodes consist of building,
pvping, mining, and more.

We aim for a fun and enjoyable player experience, with lag-free servers
Server Trailer
Play


WHAT IS THE SERVER IP FOR PIKANETWORK?

The IP address for PikaNetwork is smo.pika.host. You can use this IP Address to
start playing on the PikaNetwork Minecraft Server now. This is the most recent,
accurate, and working IP Address you will find as of 2023.


HOW DO I PLAY ON THE PIKANETWORK MINECRAFT SERVER?

Open the Minecraft launcher, next click the "Play" button, then select
"Multiplayer" from the main menu.

Click the "Add Server" button to open the server information form then input the
the IP Address smo.pika.host in the "Server Address" box then press click on
"Done" button.

Once the connection to the server is verified by Mojang session servers and is
available, the connection icon will turn green and you can click on the "Join
Server" button to play on PikaNetwork and experience their latest updates and
gamemodes!


WHAT MINECRAFT GAME VERSION DOES PIKANETWORK SERVER SUPPORT?

PikaNetwork supports Minecraft game version: 1.20, however keep in mind that
many Minecraft servers allow players to use older or newer versions so please
make sure to check PikaNetwork Discord or Website for more information on
version compatibility.


WHERE IS THE PIKANETWORK MINECRAFT SERVER BEING HOSTED?

The PikaNetwork server is currently hosted in United States and has a great
connection as of the 28 of Jul at 04:47 EST, 2023.


WHAT GAMEMODES CAN I PLAY ON THE PIKANETWORK MINECRAFT SERVER?

You can play Cracked, Mini Games, Skywars, Factions, Prison, Skyblock, Survival,
Bedwars, Bedrock, Lifesteal, on the PikaNetwork Minecraft Server. This gamemode
list was updated by the server owner on the 28 of Jul at 04:47 EST, 2023


WHAT IS THE DISCORD SERVER FOR THE PIKANETWORK MINECRAFT SERVER?

You can join the Discord server for PikaNetwork by clicking on the following
invite link: You can chat with other players, request support, and read about
the latest updates in PikaNetwork's Discord Server.


WHAT IS THE WEBSITE FOR THE PIKANETWORK MINECRAFT SERVER?

The website link for the PikaNetwork server is https://pika-network.net/play. On
the website, you will find the forums, store, and news for the server.



YOU CAN VOTE ONCE A DAY!

IP: smo.pika.host
Minecraft Username
Leave a review?
Rating (1-5)

Your Detailed Review

Submit Vote

Water_Quater146
July 28, 2023
(5 / 5 stars)
Best server ever
Caecas
July 28, 2023
(5 / 5 stars)
great server
FranPez_
July 28, 2023
(5 / 5 stars)
very nioce svecer to palčy
kinghhh
July 28, 2023
(5 / 5 stars)
best server for ever i seen i love it
mmicokotejebo
July 28, 2023
(5 / 5 stars)
nice server good gamemodes
velbae101
July 28, 2023
(5 / 5 stars)
Great server
SashaBezSlov
July 28, 2023
(5 / 5 stars)
nice server
brueu
July 28, 2023
(5 / 5 stars)
good server
Skowck
July 28, 2023
(5 / 5 stars)
so good sever
aweeksa
July 28, 2023
(5 / 5 stars)
good server
Viewing the latest 10 reviews

Minecraft Survival Servers Minecraft Skyblock Servers Minecraft Prison Servers
Minecraft Earth Servers Minecraft Pixelmon Servers Minecraft SMP Servers
Minecraft Bedrock Servers Minecraft Factions Servers Minecraft Bedwars Servers
Minecraft Parkour Servers Minecraft Lifesteal Servers Minecraft CityBuild
Servers Minecraft PvP Servers Minecraft Cobblemon Servers Minecraft Creative
Servers Minecraft Skywars Servers Minecraft Anarchy Servers Minecraft Towny
Servers Minecraft Vanilla Servers Minecraft OPPrison Servers Minecraft Hardcore
Servers Minecraft MCMMO Servers Minecraft Mini Games Servers Minecraft Oneblock
Servers Minecraft OP Servers Minecraft Crossplay Servers Minecraft Crypto
Servers Minecraft Metaverse Servers Minecraft FTB Servers Minecraft Roleplay
Servers Minecraft Cracked Servers Minecraft Economy Servers Minecraft Tekkit
Servers Minecraft PvE Servers Minecraft Family Friendly Servers Minecraft P2E
Servers Minecraft Gens Servers Minecraft Clicker Servers


FOLLOW US ON SOCIAL MEDIA


 * Discord Profile Picture Viewer
 * Official Minecraft Website
 * Optifine Downloads
 * Minecraft Forge
 * Minecraft Forums
 * Cobblemon Servers
 * Versions
 * Gamemode Types
 * Countries
 * Server Status Checker
 * About Us
 * Privacy Policy
 * Terms of Service
 * Partners
 * Votifier Tester
 * Add Server

We are not affiliated with Mojang AB. Disclaimer: The top 10 servers are
sponsored placements.

Manage Cookie Settings