[ BRINCADEIRA ] Ctrl + V

Discussão em 'Botecolandia' iniciado por FeroxMine Oficial, 28 Janeiro 2016.

Status do Tópico:
Não esta aberto para novas mensagens.
  1. TheFakeehR3G3N3R4

    Afiliado:
    27 Janeiro 2016
    Mensagens:
    62
    Curtidas Recebidas:
    3
    Curtiu:
    0
    Sexo:
    Masculino
    Localização:
    -5000-1110
    Cubos:
    89.00
    Nick:
    TheFakeeh
    Clan:
    VGB
    Facebook:
    Luan
    Skype:
    Pnc.ExE
    Twitter:
    Sei La
    ( •_•)
    \( (> Porque Ta Olhando Meu info ?
    / \

    (•_•) Vai Copiar E Colar Isso ?
    <) )╯
    / \

    (҂._.) Então Toma Bala
    <,︻╦╤─ ҉ - - - - - - -
    \ \
     
  2. Munich

    Munich Hardcore
    VIP

    Afiliado:
    13 Outubro 2014
    Mensagens:
    8,780
    Curtidas Recebidas:
    3,163
    Curtiu:
    2,571
    Sexo:
    Feminino
    Cubos:
    220.00
    Nick:
    Vanellope
    Clan:
    sVg
    After Effects must have keyframes selected from one layer in order to export them as text.
    Fazendo umas intros c:
     
  3. yMarley

    yMarley Razoavel
    Banido

    Afiliado:
    1 Dezembro 2015
    Mensagens:
    390
    Curtidas Recebidas:
    80
    Curtiu:
    0
    Sexo:
    Masculino
    Localização:
    /Gladiador
    Cubos:
    466.00
    Nick:
    Marley_23
    Clan:
    RDC
    8590267173682847613216708115084204767231
     
  4. iGustavo00

    iGustavo00 Excelente
    VIP

    Afiliado:
    8 Setembro 2015
    Mensagens:
    976
    Curtidas Recebidas:
    329
    Curtiu:
    348
    Sexo:
    Masculino
    Cubos:
    86.00
    Nick:
    iGustavo00
    Clan:
    GoD
    Era Um Ip De Um Servidor nao vou colar aki pra evitar bans :p
     
  5. Bangert

    Bangert Hardcore
    VIP

    Afiliado:
    21 Janeiro 2015
    Mensagens:
    15,437
    Curtidas Recebidas:
    2,709
    Curtiu:
    1,513
    Sexo:
    Masculino
    Localização:
    Itapoá-SC
    Cubos:
    2,281.36
    Nick:
    _Bangert_
    Discord:
    Bangert#3227
    adc

    Quem joga lol vai entender.
    q-q
     
  6. IgooorFR

    IgooorFR Excelente
    VIP

    Afiliado:
    6 Setembro 2013
    Mensagens:
    1,306
    Curtidas Recebidas:
    276
    Curtiu:
    227
    Sexo:
    Masculino
    Cubos:
    1,767.00
    Nick:
    IgooorFR
    Discord:
    igorfr
    Código:
    package me.igorfsilver.ivanish;
     
    import java.util.ArrayList;
    import org.bukkit.Bukkit;
    import org.bukkit.Server;
    import org.bukkit.command.Command;
    import org.bukkit.command.CommandSender;
    import org.bukkit.configuration.file.FileConfiguration;
    import org.bukkit.entity.Player;
    import org.bukkit.event.EventHandler;
    import org.bukkit.event.Listener;
    import org.bukkit.event.player.PlayerJoinEvent;
    import org.bukkit.event.player.PlayerQuitEvent;
    import org.bukkit.plugin.PluginManager;
    import org.bukkit.plugin.java.JavaPlugin;
     
    public class Main
      extends JavaPlugin
      implements Listener
    {
      private ArrayList<Player> vanished = new ArrayList();
      
      public void onEnable()
      {
        saveDefaultConfig();
        Bukkit.getServer().getPluginManager().registerEvents(this, this);
      }
      
      public boolean onCommand(CommandSender sender, Command cmd, String commandLabel, String[] args)
      {
        if (!(sender instanceof Player))
        {
          sender.sendMessage(getConfig().getString("Mensagem1").replace("&", "�"));
          return true;
        }
        Player p = (Player)sender;
        if (cmd.getName().equalsIgnoreCase("vanish"))
        {
          if (!sender.hasPermission("vanish.usar"))
          {
            sender.sendMessage(getConfig().getString("Prefixo").replace("&", "�") + " " + getConfig().getString("Mensagem2").replace("&", "�"));
            return true;
          }
          if (!this.vanished.contains(p))
          {
            Player[] arrayOfPlayer;
            int j = (arrayOfPlayer = Bukkit.getServer().getOnlinePlayers()).length;
            for (int i = 0; i < j; i++)
            {
              Player pl = arrayOfPlayer[i];
              pl.hidePlayer(p);
            }
            this.vanished.add(p);
            p.sendMessage(getConfig().getString("Prefixo").replace("&", "�") + " " + getConfig().getString("Mensagem3").replace("&", "�"));
            return true;
          }
          Player[] arrayOfPlayer;
          int j = (arrayOfPlayer = Bukkit.getServer().getOnlinePlayers()).length;
          for (int i = 0; i < j; i++)
          {
            Player pl = arrayOfPlayer[i];
            pl.showPlayer(p);
          }
          this.vanished.remove(p);
          p.sendMessage(getConfig().getString("Prefixo").replace("&", "�") + " " + getConfig().getString("Mensagem4").replace("&", "�"));
          return true;
        }
        return true;
      }
      
      @EventHandler
      public void onPlayerJoin(PlayerJoinEvent e)
      {
        for (Player p : this.vanished) {
          e.getPlayer().hidePlayer(p);
        }
      }
      
      @EventHandler
      public void onPlayerLeave(PlayerQuitEvent e)
      {
        this.vanished.remove(e.getPlayer());
      }
    }
     
    
     
  7. JVFC11

    JVFC11 Craftlandiano
    VIP

    Afiliado:
    12 Novembro 2012
    Mensagens:
    8,537
    Curtidas Recebidas:
    1,390
    Curtiu:
    0
    Sexo:
    Masculino
    Localização:
    Brasilia - DF
    Cubos:
    1,483.00
    Nick:
    JVFC11
    Facebook:
    https://www.facebook.com/TheJVFC11/
    Skype:
    luish203
  8. Camix

    Cubos:
    HÁ ERA MINHA SENHA KKKK
     
  9. Baseball

    Baseball Excelente
    VIP

    Afiliado:
    29 Novembro 2013
    Mensagens:
    1,176
    Curtidas Recebidas:
    325
    Curtiu:
    283
    Sexo:
    Masculino
    Localização:
    Tocantins
    Cubos:
    49.00
    Nick:
    baseballnick13
    Clan:
    ITs
    Discord:
    luizin #3825
    tenho camisinhas do carro
     
  10. tfscalioniBR

    Banido

    Afiliado:
    30 Janeiro 2015
    Mensagens:
    661
    Curtidas Recebidas:
    153
    Curtiu:
    0
    Sexo:
    Masculino
    Localização:
    Casa do Lipp
    Cubos:
    822.00
    Nick:
    zLunt
    Clan:
    TODOS QUE ME BANCA
    não vo robar mas também não vo por porque era um link do xvideos kkkkkkkkkkkkkkkkkkkk
     
    iTubot curtiu isso.
  11. Maaaaatteeus

    Maaaaatteeus Craftlandiano
    Designer VIP

    Afiliado:
    6 Outubro 2014
    Mensagens:
    2,733
    Curtidas Recebidas:
    756
    Curtiu:
    956
    Sexo:
    Masculino
    Ocupação:
    Designer
    Cubos:
    204.00
    Nick:
    Maaaaatteeus
    www.xNÃOPODE.com
     
  12. iTubot

    iTubot Bom
    VIP

    Afiliado:
    9 Setembro 2015
    Mensagens:
    2,084
    Curtidas Recebidas:
    110
    Curtiu:
    0
    Sexo:
    Masculino
    Cubos:
    2,279.00
    Nick:
    eowkeopwkeoekq
    Clan:
    SoP
    https://www.youtube.com/watch?v=_8x7kS3ioPQ
     
  13. FantasyGS

    FantasyGS Craftlandiano
    VIP

    Afiliado:
    19 Março 2013
    Mensagens:
    13,082
    Curtidas Recebidas:
    885
    Curtiu:
    2,950
    Sexo:
    Masculino
    Cubos:
    2,984.04
    Nick:
    FantasyGS
    Clan:
    BLS / QZL
    xo faze uma pergunta aq
    posta link de site porno da ban?
    pq se der ban eu nem mostro oq tem no meu CTRL V kkkkkkkkkkkk rimt
     
    Steve Austin curtiu isso.
  14. tfscalioniBR

    Banido

    Afiliado:
    30 Janeiro 2015
    Mensagens:
    661
    Curtidas Recebidas:
    153
    Curtiu:
    0
    Sexo:
    Masculino
    Localização:
    Casa do Lipp
    Cubos:
    822.00
    Nick:
    zLunt
    Clan:
    TODOS QUE ME BANCA
    ja to adc, pedi primeiro , adc ou feed
     
  15. O Inexistente

    O Inexistente Craftlandiano
    VIP

    Afiliado:
    24 Março 2015
    Mensagens:
    8,136
    Curtidas Recebidas:
    860
    Curtiu:
    0
    Localização:
    ---
    Cubos:
    226.00
    Nick:
    ---
    Clan:
    ---
    Crash Twinsanity


    vish
     
  16. Asuka

    Asuka Lendário
    VIP

    Afiliado:
    14 Novembro 2015
    Mensagens:
    13,427
    Curtidas Recebidas:
    4,085
    Curtiu:
    4,529
    Sexo:
    Feminino
    Cubos:
    539.05
    Nick:
    Loki ~ zLuiza
    Discord:
    Asuka#1174
  17. GengisKhanBr

    GengisKhanBr Hardcore
    VIP

    Afiliado:
    4 Janeiro 2012
    Mensagens:
    16,121
    Curtidas Recebidas:
    2,395
    Curtiu:
    2,183
    Sexo:
    Masculino
    Ocupação:
    Estudante...
    Localização:
    Curitiba - PR
    Cubos:
    96.00
    Nick:
    GengisKhanBr
    Clan:
    EcT
    Não tem nada pq acabei de ligar o pc kkkkkkkk
     
  18. zVini

    zVini Bom
    VIP

    Afiliado:
    17 Junho 2015
    Mensagens:
    1,499
    Curtidas Recebidas:
    122
    Curtiu:
    0
    Sexo:
    Masculino
    Localização:
    Bf
    Cubos:
    1,633.00
    Nick:
    Wichin / zVini_PvP
    Clan:
    Efeito Lendário
    Facebook:
    ----
    Skype:
    ----
    Twitter:
    ----
  19. xEmersonNOVAMENTE

    Banido

    Afiliado:
    20 Janeiro 2016
    Mensagens:
    193
    Curtidas Recebidas:
    6
    Curtiu:
    0
    Cubos:
    195.00
    Nick:
    EmersonRox
    Clan:
    SwR
    ia te zoar agora mais vou deixar queto
     
  20. iPantoja

    iPantoja Excelente
    VIP

    Afiliado:
    5 Janeiro 2016
    Mensagens:
    6,809
    Curtidas Recebidas:
    485
    Curtiu:
    1,023
    Sexo:
    Masculino
    Cubos:
    2,032.00
    Nick:
    Pantojaum
    Clan:
    CpM
    Facebook:
    Nobody Yes Door :/
    Skype:
    Dont Have
    Twitter:
    Dont have2
    mano esse grim é mt lindo
     
Status do Tópico:
Não esta aberto para novas mensagens.