Peršokti į turinį
  • ŽAIDIMAI
  • , ŽAIDIMAI
  • ŽAIDIMAI

Ši tema yra neaktyvi. Paskutinis pranešimas šioje temoje buvo prieš 2426 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

  • Parašė po 1 metų...

Ši tema yra neaktyvi. Paskutinis pranešimas šioje temoje buvo prieš 2426 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



×
×
  • Sukurti naują...