Peršokti į turinį

[Free] VampireZ | from 1.7.8 to 1.11 1.11.5


Ši tema yra neaktyvi. Paskutinis pranešimas šioje temoje buvo prieš 2068 dienas (-ų). Patariame sukurti naują temą, o ne rašyti naują pranešimą.

Už neaktyvių temų prikėlimą galite sulaukti įspėjimo ir pranešimo pašalinimo!

Recommended Posts

[IMG]


What is the VampireZ?

The VampireZ is a mini-game that initially was a vanilla minecraft map.
When the game starts, two vampires are randomly selected (or one, if there is a low amount of players). They must kill all the survivors, who needs to survive 20 waves. Each wave zombies spawns, stronger and stronger, and everybody get money. (Gold for survivors, blood for vampires).

This money can be used in the shop (last slot of the hotbar) to get better items (Boosts / monsters for the vampires).
A game takes around 12-13mins to complete.



What does it do:
  • Configurable messages
  • Per-player language messages
  • Configurable minimum and maximum players
  • Configurable waiting time when minimum and maximum players reached
  • Sounds. Because it's cool.
  • Ingame shop
  • Scoreboard with zombies, vampires, survivors, wave and currency count
  • Permanent upgrades, and donator cosmetics like disguises
  • Survivor items and vampire boosts. (Featuring the bat form).
  • Easy guided creation of arena
  • Random chests in arena
  • Spectator mode!
  • If you move to a world that have the same name of an arena, you instantly join it
  • Saving the coins won, and the stats - Survivor wins / kills, etc..
  • Empowered zombies. Braiiiiiiiiiiiins!
  • Signs. Even if they are not as cool as a wonderful NPC Gui, they're here.
  • You can add yourself to the "white-list" (located in the messages.yml file) to have access to the /vampire add command. It gives you +1k of your "team" currency, allowing you to test the wonderful shop ;)
  • BungeeCord and SQL supports
  • And more!

Commands:
  • /vampire join <Arena name> : Join the specified arena
  • /vampire help : Show a list of the players commands
  • /vampire leave : Leave the current game
  • /vampire create <Arena name> : Create a new arena with the specified name. Someone entering a world wearing the same name as an arena will automaticly join it. (Permission: vampirez.admin)
  • /vampire setlobby : Set the destination of /vampire lobby (Permission: vampirez.admin)
  • /vampire setMap : Set the map name of an arena. Arguments: <Map name> if you're creating an arena, or: <Arena name> <Map name> if you're not. (Permission: vampirez.admin)
  • /vampire lobby : Go to the vampire lobby
  • /vampire forcestart : Force the game to start. You need at least 2 players in the game lobby.(Permission: vampirez.admin)
  • /vampire editmode : Allows you to edit the map and do other commands while in game (Permission: vampirez.admin)
  • /vampire setMinPlayers : Set the minimum amount of players required to start the game of a specific arena (Permission: vampirez.admin)
  • /vampire setMaxPlayers : Set the maximum amount of players for an arena (Permission: vampirez.admin)


How to setup a sign:

To setup a sign, just write the following on it:
Line 1: [VampireZ]
Line 2: <Arena name, without the quotes>
Line 3: Leave it empty
Line 4: Leave it empty



Cosmetics permissions:
  • Herobrine Disguise: vampirez.disguises.herobrine
  • Witch Disguise: vampirez.disguises.witch
  • Skeleton Disguise: vampirez.disguises.skeleton
  • White ingame messages: vampirez.whitemsg


To-do list:
  • Add an option in the waiting room to selected what you would like to be (Human or vampire)
  • Add the perks to get better chances to be what you want to be
  • Add more death messages, according to the original game.
[IMG]
[IMG]
[IMG]
[IMG]
[IMG]
[IMG]
[IMG]
[IMG]


WEB PHP LEADERBOARD (by As7iNoS)
Code:
<?PHP


/* SETTINGS */
/*________________________________________________________________________________________________________________*/

$_db_host = "localhost"; /* MYSQL host */
$_db_username = "root"; /* MYSQL username */
$_db_password = "minecraft"; /* MYSQL password */
$_db_database = "vampirez"; /* Mysql database */
$_db_table = "vampirez_players"; /* Database table */

$sort = "name"; /* Default sort (wins, games, kills, deaths, beds) */

/*________________________________________________________________________________________________________________*/

/* DO NOT EDIT */
if(@$_GET['order']){
$order = @$_GET['order'];
}else{
$order = @$_GET['order'] = $sort;
}
$_link = mysql_connect($_db_host, $_db_username, $_db_password);
mysql_select_db($_db_database, $_link);
$_sql = "SELECT * FROM `$_db_table` ORDER BY `$order` DESC";
$_resultat = mysql_query($_sql, $_link);

?>
<html>
<head>
<link rel="stylesheet" href="https://bootswatch.com/readable/bootstrap.css" media="screen">
<link rel="stylesheet" href="https://bootswatch.com/assets/css/bootswatch.min.css">
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css">
</head>
<body>
<div class="container" style="background-color: white;-20pxmargin-top: -20px;margin-bottom: -20px;border-left: 4px solid #e74c3c;border-right: 4px solid #e74c3c;">
<table class="table table-striped">
<thead>
<tr>
<th><a href="?order=name">Player <?PHP if(@$_GET['order'] == 'name'){ echo "<i class=\"fa fa-arrow-up\"></i>"; }?></th>
<th><a href="?order=humanWins">Human Wins <?PHP if(@$_GET['order'] == 'humanWins'){ echo "<i class=\"fa fa-arrow-up\"></i>"; }?></a></th>
<th><a href="?order=humanKills">Human Kills <?PHP if(@$_GET['order'] == 'humanKills'){ echo "<i class=\"fa fa-arrow-up\"></i>"; }?></a></th>
<th><a href="?order=vampireWins">Vampire Wins <?PHP if(@$_GET['order'] == 'vampireWins'){ echo "<i class=\"fa fa-arrow-up\"></i>"; }?></a></th>
<th><a href="?order=vampireKills">Vampire Kills <?PHP if(@$_GET['order'] == 'vampireKills'){ echo "<i class=\"fa fa-arrow-up\"></i>"; }?></a></th>
<th><a href="?order=vampireWins">Zombie Kills <?PHP if(@$_GET['order'] == 'zombieKills'){ echo "<i class=\"fa fa-arrow-up\"></i>"; }?></a></th>
<th><a href="?order=coins">Coins <?PHP if(@$_GET['order'] == 'coins'){ echo "<i class=\"fa fa-arrow-up\"></i>"; }?></a></th>
</tr>
</thead>
<tbody>
<?PHP while ($row = @mysql_fetch_array( $_resultat, MYSQL_ASSOC)) {?>
<tr>
<td><img src="http://cravatar.eu/helmhead/<?php echo $row['name']; ?>/35.png"> <?php echo $row['name']; ?></td>
<td><?php echo $row['humanWins']; ?></td>
<td><?php echo $row['humanKills']; ?></td>
<td><?php echo $row['vampireWins']; ?></td>
<td><?php echo $row['vampireKills']; ?></td>
<td><?php echo $row['zombieKills']; ?></td>
<td><?php echo $row['coins']; ?></td>
</tr>
<?PHP } ?>
</tbody>
</table>
<p><a class="btn btn-default" href="http://176.12.49.94" role="button">Go Back</a></p>
</div>


Any comment, suggestion, idea, feedback or help will be appreciated! ;)


SOFT DEPENDENCY: LibsDisguises
This plugin allows the VampireZ to morph the vampires into bats when they fly, or to use their disguises cosmetics (witch, skeleton etc..). It's only a soft dependency, and is not required to launch games. However, this may make the game experience way better. Especially for the survivors.
Oh wait, who cares about these guys?

DEPENDENCY: PlayerLanguageAPI
Since the update 0.3, you need this API for a per-player language message.

VampireZ.rar

Nuoroda į komentarą
Dalintis per kitą puslapį

  • Parašė po 1 metų...

Ši tema yra neaktyvi. Paskutinis pranešimas šioje temoje buvo prieš 2068 dienas (-ų). Patariame sukurti naują temą, o ne rašyti naują pranešimą.

Už neaktyvių temų prikėlimą galite sulaukti įspėjimo ir pranešimo pašalinimo!

Prisijungti prie diskusijos

Palikti atsakymą galite iš karto, o užsiregistruoti vėliau. Jeigu jau turite paskyrą mūsų forume, Prisijunkite.

Svečias
Atsakyti šioje temoje...

×   Įklijuotas tekstas turi teksto formatavimą.   Pašalinti teksto formatavimą

  Galimi tik 75 veidukai.

×   Nuoroda buvo automatiškai įterpta.   Įterpti nuorodą paprastai

×   Jūsų ankstesnis pranešimas buvo atkurtas.   Išvalyti redaktorių

×   Jūs negalite įkelti nuotraukas tiesiogiai.Įkelkite arba įdėkite nuotraukas iš URL.

  • Šiame puslapyje naršo:   0 nariai

    • Nėra registruotų narių peržiūrinčių šį forumą.

Skelbimai


    • tarpininkai
    • tarpininkai
    • tarpininkai

    • apgavikai
    • apgavikai
    • apgavikai

  • Naujausios temos

  • Naujausi būsenos atnaujinimai
    • Nustatymai

    • spiritdust

      Sveiki‎

       ‎ ‎ ‎ ‎ ‎ ‎ ‎ 

      ‎ ‎ ‎ ‎ 

      ‎ ‎ ‎ 

      ‎ 

      ‎ 

       ‎ ‎ ‎ ‎ ‎ ‎ ‎ 

      ‎ ‎ ‎ ‎ 

      ‎ ‎ ‎ 

      ‎ 

      ‎ 

       ‎ ‎ ‎ ‎ ‎ ‎ ‎ 

      ‎ ‎ ‎ ‎ 

      ‎ ‎ ‎ 

      ‎ 

      ‎ 

       ‎ ‎ ‎ ‎ ‎ ‎ ‎ 

      ‎ ‎ ‎ ‎ 

      ‎ ‎ ‎ 

      ‎ 

      ‎ 

       ‎ ‎ ‎ ‎ ‎ ‎ ‎ 

      ‎ ‎ ‎ ‎ 

      ‎ ‎ ‎ 

      ‎ 

      ‎ 

       ‎ ‎ ‎ ‎ ‎ ‎ ‎ 

      ‎ ‎ ‎ ‎ 

      ‎ ‎ ‎ 

      ‎ 

      ‎ 

       ‎ ‎ ‎ ‎ ‎ ‎ ‎ 

      ‎ ‎ ‎ ‎ 

      ‎ ‎ ‎ 

      ‎ 

      ‎ 

       ‎ ‎ ‎ ‎ ‎ ‎ ‎ 

      ‎ ‎ ‎ ‎ 

      ‎ ‎ ‎ 

      ‎ 

      ‎ 

       ‎ ‎ ‎ ‎ ‎ ‎ ‎ 

      ‎ ‎ ‎ ‎ 

      ‎ ‎ ‎ 

      ‎ 

      ‎ 

       ‎ ‎ ‎ ‎ ‎ ‎ ‎ 

      ‎ ‎ ‎ ‎ 

      ‎ ‎ ‎ 

      ‎ 

      ‎ 

       ‎ ‎ ‎ ‎ ‎ ‎ ‎ 

      ‎ ‎ ‎ ‎ 

      ‎ ‎ ‎ 

      ‎ 

      ‎ 

       ‎ ‎ ‎ ‎ ‎ ‎ ‎ 

      ‎ ‎ ‎ ‎ 

      ‎ ‎ ‎ 

      ‎ 

      ‎ 

       ‎ ‎ ‎ ‎ ‎ ‎ ‎ 

      ‎ ‎ ‎ ‎ 

      ‎ ‎ ‎ 

      ‎ 

      ‎ 

       ‎ ‎ ‎ ‎ ‎ ‎ ‎ 

      ‎ ‎ ‎ ‎ 

      ‎ ‎ ‎ 

      ‎ 

      ‎ 

       ‎ ‎ ‎ ‎ ‎ ‎ ‎ 

      ‎ ‎ ‎ ‎ 

      ‎ ‎ ‎ 

      ‎ 

      ‎ 

       ‎ ‎ ‎ ‎ ‎ ‎ ‎ 

      ‎ ‎ ‎ ‎ 

      ‎ ‎ ‎ 

      ‎ 

      ‎ 

       ‎ ‎ ‎ ‎ ‎ ‎ ‎ 

      ‎ ‎ ‎ ‎ 

      ‎ ‎ ‎ 

      ‎ 

      ‎ 

       ‎ ‎ ‎ ‎ ‎ ‎ ‎ 

      ‎ ‎ ‎ ‎ 

      ‎ ‎ ‎ 

      ‎ 

      ‎ 

       ‎ ‎ ‎ ‎ ‎ ‎ ‎ 

      ‎ ‎ ‎ ‎ 

      ‎ ‎ ‎ 

      ‎ 

      ‎ 

       ‎ ‎ ‎ ‎ ‎ ‎ ‎ 

      ‎ ‎ ‎ ‎ 

      ‎ ‎ ‎ 

      ‎ 

      ‎ 

       ‎ ‎ ‎ ‎ ‎ ‎ ‎ 

      ‎ ‎ ‎ ‎ 

      ‎ ‎ ‎ 

      ‎ 

      ‎ 

       ‎ ‎ ‎ ‎ ‎ ‎ ‎ 

      ‎ ‎ ‎ ‎ 

      ‎ ‎ ‎ 

      ‎ 

      ‎ 

       ‎ ‎ ‎ ‎ ‎ ‎ ‎ 

      ‎ ‎ ‎ ‎ 

      ‎ ‎ ‎ 

      ‎ 

      ‎ 

       ‎ ‎ ‎ ‎ ‎ ‎ ‎ 

      ‎ ‎ ‎ ‎ 

      ‎ ‎ ‎ 

      ‎ 

      ‎ 

       ‎ ‎ ‎ ‎ ‎ ‎ ‎ 

      ‎ ‎ ‎ ‎ 

      ‎ ‎ ‎ 

      ‎ 

      ‎ 

       ‎ ‎ ‎ ‎ ‎ ‎ ‎ 

      ‎ ‎ ‎ ‎ 

      ‎ ‎ ‎ 

      ‎ 

      ‎ 

       ‎ ‎ ‎ ‎ ‎ ‎ ‎ 

      ‎ ‎ ‎ ‎ 

      ‎ ‎ ‎ 

      ‎ 

      ‎ 

       ‎ ‎ ‎ ‎ ‎ ‎ ‎ 

      ‎ ‎ ‎ ‎ 

      ‎ ‎ ‎ 

      ‎ 

      ‎ 

       ‎ ‎ ‎ ‎ ‎ ‎ ‎ 

      ‎ ‎ ‎ ‎ 

      ‎ ‎ ‎ 

      ‎ 

      ‎ 

       ‎ ‎ ‎ ‎ ‎ ‎ ‎ 

      ‎ ‎ ‎ ‎ 

      ‎ ‎ ‎ 

      ‎ 

      ‎ 

       ‎ ‎ ‎ ‎ ‎ ‎ ‎ 

      ‎ ‎ ‎ ‎ 

      ‎ ‎ ‎ 

      ‎ 

      ‎ 

       ‎ ‎ ‎ ‎ ‎ ‎ ‎ 

      ‎ ‎ ‎ ‎ 

      ‎ ‎ ‎ 

      ‎ 

      ‎ 

       ‎ ‎ ‎ ‎ ‎ ‎ ‎ 

      ‎ ‎ ‎ ‎ 

      ‎ ‎ ‎ 

      ‎ 

      ‎ 

       ‎ ‎ ‎ ‎ ‎ ‎ ‎ 

      ‎ ‎ ‎ ‎ 

      ‎ ‎ ‎ 

      ‎ 

      ‎ 

       ‎ ‎ ‎ ‎ ‎ ‎ ‎ 

      ‎ ‎ ‎ ‎ 

      ‎ ‎ ‎ 

      ‎ 

      ‎ 

       ‎ ‎ ‎ ‎ ‎ ‎ ‎ 

      ‎ ‎ ‎ ‎ 

      ‎ ‎ ‎ 

      ‎ 

      ‎ 

       ‎ ‎ ‎ ‎ ‎ ‎ ‎ 

      ‎ ‎ ‎ ‎ 

      ‎ ‎ ‎ 

      ‎ 

      ‎ 

       ‎ ‎ ‎ ‎ ‎ ‎ ‎ 

      ‎ ‎ ‎ ‎ 

      ‎ ‎ ‎ 

      ‎ 

      ‎ 

       ‎ ‎ ‎ ‎ ‎ ‎ ‎ 

      ‎ ‎ ‎ ‎ 

      ‎ ‎ ‎ 

      ‎ 

      ‎ 

       ‎ ‎ ‎ ‎ ‎ ‎ ‎ 

      ‎ ‎ ‎ ‎ 

      ‎ ‎ ‎ 

      ‎ 

      ‎ 

       ‎ ‎ ‎ ‎ ‎ ‎ ‎ 

      ‎ ‎ ‎ ‎ 

      ‎ ‎ ‎ 

      ‎ 

      ‎ 

       ‎ ‎ ‎ ‎ ‎ ‎ ‎ 

      ‎ ‎ ‎ ‎ 

      ‎ ‎ ‎ 

      ‎ 

      ‎ 

       ‎ ‎ ‎ ‎ ‎ ‎ ‎ 

      ‎ ‎ ‎ ‎ 

      ‎ ‎ ‎ 

      ‎ 

      ‎ 

       ‎ ‎ ‎ ‎ ‎ ‎ ‎ 

      ‎ ‎ ‎ ‎ 

      ‎ ‎ ‎ 

      ‎ 

      ‎ 

       ‎ ‎ ‎ ‎ ‎ ‎ ‎ 

      ‎ ‎ ‎ ‎ 

      ‎ ‎ ‎ 

      ‎ 

      ‎ 

       ‎ ‎ ‎ ‎ ‎ ‎ ‎ 

      ‎ ‎ ‎ ‎ 

      ‎ ‎ ‎ 

      ‎ 

      ‎ 

       ‎ ‎ ‎ ‎ ‎ ‎ ‎ 

      ‎ ‎ ‎ ‎ 

      ‎ ‎ ‎ 

      ‎ 

      ‎ 

       ‎ ‎ ‎ ‎ ‎ ‎ ‎ 

      ‎ ‎ ‎ ‎ 

      ‎ ‎ ‎ 

      ‎ 

      ‎ 

       ‎ ‎ ‎ ‎ ‎ ‎ ‎ 

      ‎ ‎ ‎ ‎ 

      ‎ ‎ ‎ 

      ‎ 

      ‎ 

       ‎ ‎ ‎ ‎ ‎ ‎ ‎ 

      ‎ ‎ ‎ ‎ 

      ‎ ‎ ‎ 

      ‎ 

      ‎ 

       ‎ ‎ ‎ ‎ ‎ ‎ ‎ 

      ‎ ‎ ‎ ‎ 

      ‎ ‎ ‎ 

      ‎ 

      ‎ 

       ‎ ‎ ‎ ‎ ‎ ‎ ‎ 

      ‎ ‎ ‎ ‎ 

      ‎ ‎ ‎ 

      ‎ 

      ‎ 

       ‎ ‎ ‎ ‎ ‎ ‎ ‎ 

      ‎ ‎ ‎ ‎ 

      ‎ ‎ ‎ 

      ‎ 

      ‎ 

       ‎ ‎ ‎ ‎ ‎ ‎ ‎ 

      ‎ ‎ ‎ ‎ 

      ‎ ‎ ‎ 

      ‎ 

      ‎ 

       ‎ ‎ ‎ ‎ ‎ ‎ ‎ 

      ‎ ‎ ‎ ‎ 

      ‎ ‎ ‎ 

      ‎ 

      ‎ 

       ‎ ‎ ‎ ‎ ‎ ‎ ‎ 

      ‎ ‎ ‎ ‎ 

      ‎ ‎ ‎ 

      ‎ 

      ‎ 

       ‎ ‎ ‎ ‎ ‎ ‎ ‎ 

      ‎ ‎ ‎ ‎ 

      ‎ ‎ ‎ 

      ‎ 

      ‎ 

       ‎ ‎ ‎ ‎ ‎ ‎ ‎ 

      ‎ ‎ ‎ ‎ 

      ‎ ‎ ‎ 

      ‎ 

      ‎ 

       ‎ ‎ ‎ ‎ ‎ ‎ ‎ 

      ‎ ‎ ‎ ‎ 

      ‎ ‎ ‎ 

      ‎ 

      ‎ 

    • So Good√ιק

      https://t.me/zedprofit

      Telegram grupė, kurioje dalinuosi naujausiais Uždarbiais, Airdrop'ais iš kurių galit uždirbti pinigų!

      Taip pat vyksta diskusijos apie Crypto, Forex, Trading bot'us.

      Dalinuosi visa info tam, kad uždirbtumėte ir jūs! 🤑

    • debista

      Parduodu

      csgoroll level 41

      RustClash level 66

      +csgo prime

      Pasiulimus siuskit discord

      @debista

       

       

       

    • yhiunkis

      pardavineju cs2 prime acc po 7,5e FA - premier ready

    • Bemwas

      **MystiqueRP: Naujas Pasaulis Lūkesčiams**

      Sveiki atvykę į MystiqueRP, kur sukuriame nepaprastą pasaulį, leidžiantį jums išgyventi savo svajones ir sukurti savo istoriją. Mūsų serveris siūlo išskirtinę FiveM roleplay patirtį, praturtintą detalių, įvairovės ir įtakos jūsų pasirinktam vaidmeniui.

      **Įvairių Veiklos Galimybių Sankirtoje**

      Nesvarbu, ar norite tapti miesto policininku, žvalgybininku, kurie tylioms gatvėms suteikia saugumą, ar prekybininku, kuris kūrelius savo imperiją, mūsų serveris suteikia platų vaidmenų pasirinkimą, kiekvienam žaidėjui atitinkant jo lūkesčius. Mūsų įvairovė leidžia jums įsitraukti į skirtingas veiklos sritis ir kurti savo pasaulį, kuris jums patinka.

      Išbaigta Ekonomika ir Turinio Sistemos

      Mūsų serverio ekonomika ir turinio sistemos yra subalansuotos ir giliai suprojektuotos, kad suteiktų jums autentišką patirtį. Nuo nekilnojamojo turto investicijų iki verslo verslo plėtros ir net legalių ir nelegalių sandėlių operavimo, galimybių gausa yra riba. Jūsų finansų valdymas, rinkos analizė ir verslo strategija yra pagrindiniai serverio aspektai, kurie jums padeda siekti sėkmės.

      Bendruomenės Dvasia ir Sąveika

      MystiqueRP yra ne tik žaidimo platforma, bet ir draugiška bendruomenė, kurioje prisijungę žaidėjai gali jaustis kaip namie. Mūsų administracija yra pasirengusi padėti, mokyti ir remti naujokus, siekdama užtikrinti, kad visi mūsų žaidėjai turėtų malonią ir įtraukiančią patirtį.

      Norėdami išlaikyti mūsų bendruomenės aktyvumą ir įdomumą, reguliariai organizuojame įvairius renginius, konkursus ir veiklas. Tai gali būti nuotykių ieškojimai, miesto festivaliai, automobilių lenktynės ar netgi nelegalių gaujų konfliktai. Kiekvienas renginys atneša naujų iššūkių ir skatina bendruomenės sąveiką.

      Prisijunkite prie MystiqueRP ir išbandykite gilias ir įtraukiančias FiveM roleplay patirtis, kurios neatskleidžia savo ribų ir leidžia jums būti, kuo tik norite!

      |Serverio discord| || https://discord.com/invite/mystique ||

  • Populiariausi nariai


×
×
  • Sukurti naują...