Mostrar Mensajes

Esta sección te permite ver todos los posts escritos por este usuario. Ten en cuenta que sólo puedes ver los posts escritos en zonas a las que tienes acceso en este momento.


Mensajes - C4BR3R4

Páginas: 1 ... 97 98 [99] 100 101 ... 140
1471
Plugins descartados / MetaCycler v1.8.4 → 1.8.4
« en: 18 de Febrero de 2017 a las 09:09 »
He conseguido actualizar el plugin siguiendo los siguientes pasos según las instrucciones de aquí.

Código: (Valores que corrige el parche) [Seleccionar]
$ java -jar BuildData/bin/SpecialSource-2.jar map -m CraftBukkit/deprecation-mappings.csrg -i "c:\MetaCycler.jar" -o "c:\MetaCycler-fixed.jar"
Unseen: org/bukkit/event/entity/EntityDamageEvent:setDamage (I)V -> _INVALID_setDamage
Unseen: org/bukkit/event/entity/EntityRegainHealthEvent:setAmount (I)V -> _INVALID_setAmount
Unseen: org/bukkit/event/vehicle/VehicleDamageEvent:getDamage ()I -> _INVALID_getDamage
Unseen: org/bukkit/event/entity/EntityRegainHealthEvent:getAmount ()I -> _INVALID_getAmount
Unseen: org/bukkit/entity/Damageable:damage (I)V -> _INVALID_damage
Unseen: org/bukkit/entity/Damageable:damage (ILorg/bukkit/entity/Entity;)V -> _INVALID_damage
Unseen: org/bukkit/entity/Minecart:setDamage (I)V -> _INVALID_setDamage
Unseen: org/bukkit/entity/Projectile:setShooter (Lorg/bukkit/entity/LivingEntity;)V -> _INVALID_setShooter
Unseen: org/bukkit/entity/Damageable:setHealth (I)V -> _INVALID_setHealth
Unseen: org/bukkit/entity/LivingEntity:getLastDamage ()I -> _INVALID_getLastDamage
Unseen: org/bukkit/entity/LivingEntity:setLastDamage (I)V -> _INVALID_setLastDamage
Unseen: org/bukkit/event/entity/EntityDamageEvent:getDamage ()I -> _INVALID_getDamage
Unseen: org/bukkit/event/vehicle/VehicleDamageEvent:setDamage (I)V -> _INVALID_setDamage
Unseen: org/bukkit/entity/Projectile:getShooter ()Lorg/bukkit/entity/LivingEntity; -> _INVALID_getShooter
Unseen: org/bukkit/entity/Damageable:getHealth ()I -> _INVALID_getHealth
Unseen: org/bukkit/entity/Minecart:getDamage ()I -> _INVALID_getDamage
Unseen: org/bukkit/entity/Damageable:getMaxHealth ()I -> _INVALID_getMaxHealth
Unseen: org/bukkit/entity/Damageable:setMaxHealth (I)V -> _INVALID_setMaxHealth

1472
Plugins descartados / MetaCycler v1.8.4-fixed → 1.8.4
« en: 18 de Febrero de 2017 a las 08:58 »
MetaCycler
herramienta para cambiar las texturas alternativas del paquete de recursos Conquest_
Código: [Seleccionar]
metacycler reload

Spigot: https://www.spigotmc.org/resources/metacycler.706/
Texturas alternativas: http://dl.dropbox.com/u/14812134/Forum/reference.jpg
Texturas por bioma: https://docs.google.com/spreadsheet/ccc?key=0AoZ614VRCfkRdFJLcmZkbVRMa25Za0lhajhpSHU4U0E&usp=sharing


https://youtu.be/S0cDaWgDGP4

1473
Mod's desactualizados / MrMeep’ Shaders (Optifine)
« en: 16 de Febrero de 2017 a las 19:36 »
MrMeep’ Shaders
Añade sombras, iluminación dinámica y efectos atmosféricos.




 

1474
Plugins descartados / OpenInv v3.1.2 → 1.11.2
« en: 15 de Febrero de 2017 a las 08:38 »
3.1.2
Fixed ConcurrentModificationException

3.1.1
Fixed incorrect handling for differences in shulker boxes between 1.11 and 1.11.2

1475
Plugins descartados / Parties v1.7.2 → 1.11
« en: 12 de Febrero de 2017 a las 12:18 »
Parties 1.7.2:

    Fixed load error if ProtocolLib doesn't exist

1476
Plugins descartados / VotingPlugin 5.4.6 → 1.11
« en: 12 de Febrero de 2017 a las 12:16 »
 5.4.6: Bug fixes

    Change Log:
    - Fixed a few bugs regarding MySQL
    - Reduced jar size

1477
Mis Mods SMF / Icono de respuesta igual que el primero
« en: 11 de Febrero de 2017 a las 13:23 »
Sources/Post.php
Modificaciones para establecer por defecto el icono de respuesta igual que el del primer mensaje.

Código: (Buscar) [Seleccionar]
CASE WHEN ml.poster_time > ml.modified_time THEN ml.poster_time ELSE ml.modified_time END AS last_post_time
Código: (Reemplazar) [Seleccionar]
CASE WHEN ml.poster_time > ml.modified_time THEN ml.poster_time ELSE ml.modified_time END AS last_post_time, mf.icon
Código: (Buscar) [Seleccionar]
list ($locked, $context['notify'], $sticky, $pollID, $context['topic_last_message'], $id_member_poster, $id_first_msg, $first_subject, $lastPostTime) = $smcFunc['db_fetch_row']($request);
Código: (Reemplazar) [Seleccionar]
list ($locked, $context['notify'], $sticky, $pollID, $context['topic_last_message'], $id_member_poster, $id_first_msg, $first_subject, $lastPostTime, $first_icon) = $smcFunc['db_fetch_row']($request);
Código: (Buscar) [Seleccionar]
// By default....
$context['use_smileys'] = true;
$context['icon'] = 'xx';
Código: (Reemplazar) [Seleccionar]
// By default....
$context['use_smileys'] = true;
$context['icon'] = !empty($first_icon) ? $first_icon : 'xx';

1478
Mis Mods SMF / Icono de Respuesta v1.0
« en: 10 de Febrero de 2017 a las 19:54 »
DESCARGAC4BR3R4

Icono de respuesta igual que el primero.


Descripción
Modificación para establecer de forma predeterminada el mismo icono de respuesta que el del primer mensaje.


Agradecimientos
Este mod no se hubiera podido realizar sin la ayuda de Gluz por encontrar ESTE mensaje de la aportación de margarett y a Príncipe_Azul por colaborar en ESTE tema.

1479
Plugins descartados / VotingPlugin 5.4.5 → 1.11
« en: 10 de Febrero de 2017 a las 08:12 »
5.4.5: Bug fixes

    Change Log:
    - Fixed bugs with timed/delayed rewards
    - Fixed a possible lag spike when voting
    - Fixed "/vote url" icons not working properly
    - Fixed daily/weekly totals not working when they should

1480
Plugins descartados / Statz v1.4.2 → 1.11
« en: 06 de Febrero de 2017 a las 08:43 »
 Statz update

    Hey there,

    I've received valuable feedback and many bug reports to squash. Here is a changelog:
    - Fix /statz list command not working even though a player had correct permissions
    - Add a patch system that will keep your database schema up-to-date with the latest changes (it will do this automatically).
    - Statz now records with what weapon a player killed a mob
    - Statz also records mob kills with a bow
    - Statz will now track how far a player has traveled with elytra wings


    BEFORE UPDATING, BACK UP YOUR STATZ FOLDER SO YOU CANNOT LOSE DATA.

    For those of you that wondered what happened to Statz 1.4.1: I skipped it as an internal version. Don't worry about it.

1481
Plugins descartados / VotingPlugin 5.4.4 → 1.11
« en: 06 de Febrero de 2017 a las 08:41 »
5.4.4: Bug fixes

    Change Log:
    - Fixed a bug with chances
    - Fixed errors regarding timed/delayed rewards


5.4.3: Bug fixes

    Change Log:
    - Fixed a bug that could lead to a crash in rare cases
    - Added ability to change the item for all sites in VoteURL


5.4.2: Bug fixes

    Change Log:
    - Fixed a warning message going off when it shouldn't
    - Added an option to disable no votesite with service site message
    - Fixed a few other bugs


5.4.1: Minor bug fixes

    Change Log:
    - Fixed a few minor bugs regarding signs


5.4: MySQL, More Powerful Reward System, And More!

    Change Log:
    - Added MySQL Support
    - Added More Powerful reward system (More on this below)
    - Allowed enchants higher then what is normally allowed
    - Fixed send scoreboard option not doing anything
    - Added site display names
    - Added ability to override what lore is shown in VoteGUI
    - A lot of other bugs fixed
    - Removed the GAL Converter, no one really uses it, plus it kinda breaks with the reward changes

    More Powerful Reward System:
    This is something I felt like was needed, so I decided I would do it. If you already have rewards from previous versions don't worry, that will still work, I just added more options to it. Take a look here.

1483
Paquetes del Foro / Characters remaining of post v1.0.4 → 2.0.12
« en: 03 de Febrero de 2017 a las 19:46 »
Characters remaining of post
Muestra el número de caracteres máximo y restantes mientras se escribe un mensaje, al igual que en la firma de usuario.


SMF: http://custom.simplemachines.org/mods/index.php?mod=3722

1485
Plugins descartados / Colored Tags v2.1.3 → 1.11
« en: 30 de Enero de 2017 a las 08:44 »
Colored Tags
Añade los grupos y el nombre del jugador con colores sobre sus cabezas y en la lista de jugadores
Código: [Seleccionar]
ctags reload

Bukkit: https://dev.bukkit.org/projects/colored-tags

Es incompatible con el plugin FeatherBoard


Código: (config.yml) [Seleccionar]
#.
#.             ColoredTags by Filoghost
#.
#. This is the main configuration of the plugin.
#. Website: http://dev.bukkit.org/bukkit-plugins/colored-tags
#.
change-tab-names: true
update-notification: true
fix-death-messages: true
auto-refresh:
  enabled: true
  seconds: 60

Código: (groups.yml) [Seleccionar]
#.
#.    ######################
#.    #       GROUPS       #
#.    ######################
#.
#. These are the names of the groups defined in you permissions plugin.
#. If a user has multiple groups, the group with the highest rank will
#. be chosen, as your chat plugin does.
#.
#. Prefixes or suffixes CANNOT be longer than 16 chars, including colors.
#.
#. <name> is the separator of prefix and suffix. If you don't include it,
#. the string will used as prefix.
#.
Ente: '&fEnte &b'
Mendigo: '&8Mendigo &b'
Mendiga: '&8Mendiga &d'
Esclavo: '&8Esclavo &b'
Esclava: '&8Esclavo &d'
Liberto: '&9Liberto &b'
Liberta: '&9Liberta &d'
Colono: '&9Colono &b'
Colona: '&9Colona &d'
Aldeano: '&3Aldeano &b'
Aldeana: '&3Aldeana &d'
Ciudadano: '&3Ciudadano &b'
Ciudadana: '&3Ciudadana &d'
Hidalgo: '&aHidalgo &b'
Hidalga: '&aHidalga &d'
Noble: '&aNoble &b'
Nobla: '&aNoble &d'
Terrateniente: '&5Terrateniente &b'
Terratenienta: '&5Terrateniente &d'
Duque: '&6Duque &b'
Duquesa: '&6Duquesa &d'
DuqueVIP: '&6Duque &b'
DuquesaVIP: '&6Duquesa &d'
Bufón: '&cBufón &b'
Rey: '&4Rey &b'
Emperador: '&4Emperador &b'
Dios: '&fDios &b'

Páginas: 1 ... 97 98 [99] 100 101 ... 140