This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8"?> | |
<resources> | |
<string name="app_name">Boardwalk</string> | |
<string name="login_username_hint">Nombre de usuario o e-mail de Mojang</string> | |
<string name="login_password_hint">Password</string> | |
<string name="login_is_demo_account">Esta cuenta no parece tener un usuario de Minecraft afiliado a ella. ¿Compraste Minecraft? Puedes jugar la versión Demo con el botón de abajo llamado "Jugar Demo".</string> | |
<string name="login_logging_in">Iniciando sesión en…</string> | |
<string name="login_error">Imposible iniciar sesión:</string> | |
<string name="login_button">Iniciar sesión</string> | |
<string name="login_extra_info_text">Esta versión de Boardwalk es muy experimental - la generación de un mundo puede tardar más de 5 minutos, el modo multijugador solamente funciona en servidores offline, y ejecutar esta aplicación en el fondo causa que Minecraft se colapse.\n |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<string name="minecraft_version_not_supported">This version of Minecraft PE is not supported by this version of BlockLauncher.\nYou have Minecraft PE MINECRAFT_VERSION, but BlockLauncher only supports Minecraft PE SUPPORTED_VERSION. Please update your copy of Minecraft PE.</string> | |
<string name="minecraft_version_not_supported">Esta versión de Minecraft PE no es soportada por esta versión de BlockLauncher.\nTu tienes de momento Minecraft PE MINECRAFT_VERSION, pero esta versión de BlockLauncher solo soporta Minecraft PE SUPPORTED_VERSION. Por favor actualiza tu copia de Minecraft PE.</string> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Parameters: | |
ArmorMaterial(int maxDamageFactor, int armorSlotsHelmet, int armorSlotsChestplate, int armorSlotsLeggings, int armorSlotsBoots); | |
Originals: CLOTH(5, 1, 3, 2, 1), CHAIN(15, 2, 5, 4, 1), IRON(15, 2, 6, 5, 2), GOLD(7, 2, 5, 3, 1), DIAMOND(33, 3, 8, 6, 3) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
EntityType strings for EntityTypeFromString | |
Arrow: "arrow" | |
Snowball: "snowball" | |
Egg: "thrownegg" | |
Painting: "painting" | |
Minecart: "minecartrideable" | |
Large Fireball: "largefireball" | |
Small Fireball: "smallfireball" | |
Throwable Potion: "thrownpotion" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <idc.idc> | |
static symbol(addr, sym) { | |
MakeFunction(addr, BADADDR); | |
if(MakeNameEx(addr, sym, SN_NOWARN)) return; | |
auto i; | |
for(i = 0; i < 999; i++) if(MakeNameEx(addr, form("%s_%d", sym, i), SN_NOWARN)) return; | |
} | |
static main() { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Creeper | |
if (key == "mmb.creeper.type.name") { | |
return "Type"; | |
} | |
if (key == "mmb.creeper.type.normal.name") { | |
return "Normal"; | |
} | |
if (key == "mmb.creeper.type.charged.name") { | |
return "Charged"; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#pragma once | |
class Material { | |
public: | |
int materialType; // 0, thanks to byteandahalf | |
bool isFlammable; // 4 | |
bool isNeverBuildable; // 5, alt name: isSolidBlocking | |
bool isAlwaysDestroyable; // 6 | |
bool isReplaceable; // 7 | |
bool isLiquid; // 8 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class TextEntity : Entity | |
{ | |
public TextEntity(Level level, string text, Vector3 pos) : base(64, level) | |
{ | |
NameTag = text; | |
KnownPosition = new PlayerLocation(pos); | |
HealthManager = new NoDamageHealthManager(this); | |
} | |
public override void OnTick() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[Plugin("CoreCommands", "The core commands for MiNET", "1.0", "MiNET Team")] | |
public class CoreCommands : Plugin | |
{ | |
[Command] | |
public void Login(Player player, string password) | |
{ | |
UserManager<User> userManager = player.Server.UserManager; | |
if (userManager != null) | |
{ | |
if (player.Username == null) return; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
namespace MiNET | |
{ | |
public enum LevelEventType : short | |
{ | |
SoundClick = 1000, | |
SoundClickFail = 1001, // try also with data 1200 for Dispenser sound | |
SoundShoot = 1002, | |
SoundDoorClose = 1003, // spooky sound with data 20 | |
SoundFizz = 1004, | |
SoundTNTFuse = 1005, |
OlderNewer