Innectis Community Forum

Author Topic: Guy1834  (Read 3753 times)

Vector

  • Owner
  • Administrator
  • Legendary Member
  • *****
  • Posts: 2153
  • Gender: Male
  • I am the exception, not the rule
    • View Profile
    • Code Speak
Guy1834
« on: May 12, 2013, 01:09:34 PM »
Banned for 5 days for advertising an IP.
  • AlphaBlend
    AlphaBlend
    AlphaBlend
I like to make things. That pretty much describes the kind of person I am.

l_iamW

  • Goldy VIP
  • Ancient Member
  • ****
  • Posts: 1140
  • Gender: Male
  • IT'S TIME TO DU-DU-DU-DU-DU-DU-DU-DU-DUEL
    • View Profile
Re: Guy1834
« Reply #1 on: May 12, 2013, 01:38:24 PM »
WAs this on Skype or the actual server? I saw you guys rambling on about how he posted on a skype chat.
  • l_iamW
    l_iamW
    l_iamW

Vector

  • Owner
  • Administrator
  • Legendary Member
  • *****
  • Posts: 2153
  • Gender: Male
  • I am the exception, not the rule
    • View Profile
    • Code Speak
Re: Guy1834
« Reply #2 on: May 12, 2013, 09:26:53 PM »
It was on the server. I think it was a PM.
  • AlphaBlend
    AlphaBlend
    AlphaBlend
I like to make things. That pretty much describes the kind of person I am.

luetzj

  • Retired Staff
  • Ancient Member
  • *****
  • Posts: 1045
    • View Profile
Re: Guy1834
« Reply #3 on: May 12, 2013, 11:08:18 PM »
Just wondering, but is it possible to have IDP autoban someone when they place an IP in chat?
  • luetzj
    luetzj
    luetzj

hungrybobby1

  • Goldy VIP
  • Sr. Member
  • ****
  • Posts: 309
  • Gender: Male
  • So.......wassup?
    • View Profile
    • My Webpage!
Re: Guy1834
« Reply #4 on: May 12, 2013, 11:52:05 PM »
Just wondering, but is it possible to have IDP autoban someone when they place an IP in chat?

That would be quite hard i believe.
Recognizing IP's yada yada yada.

But, what happens if someone does:
server.thats.not.real.org

  • hungrybobby1
    hungrybobby1
    hungrybobby1
Steam: Derpy :3 [Bill Gates]

Nosliw

  • Retired Staff
  • Rainbow Member
  • *****
  • Posts: 1722
  • Gender: Male
  • You can't hurt me, I'm a Jelly Fish..
    • View Profile
    • Uber Island
Re: Guy1834
« Reply #5 on: May 13, 2013, 04:03:43 AM »
Just wondering, but is it possible to have IDP autoban someone when they place an IP in chat?

That would be quite hard i believe.
Recognizing IP's yada yada yada.

But, what happens if someone does:
server.thats.not.real.org
We could attempt to connect to it on the default Minecraft port? That would be a good way to detect it, but that seems like a lot of pointless work to me, we can just stop it as we see it, advertising isn't normally much of an issue.
  • Nosliw
    Nosliw
    Nosliw
I'm here to help.. With the following exception:



@EventHandler(priority = EventPriority.LOW)
public void onPlayerJoin(PlayerJoinEvent event) {
    Player player = event.getPlayer();
    if (player.getName().equals("SGT_ADZ") {
        player.kickPlayer("Yeah... Nah!");
        return;
    }
}