Official Everybody Edits Forums

Do you think I could just leave this part blank and it'd be okay? We're just going to replace the whole thing with a header image anyway, right?

You are not logged in.

#1 Before February 2015

Koya
Fabulous Member
From: The island with those Brits
Joined: 2015-02-18
Posts: 6,310

[Tool] Guardian Kicker Plugin




DO NOT USE THIS PLUGIN





I thought I'd throw this out there <removed link> http://bit.ly/kickguardian3

[EventListener] private void OnJoin(object sender, JoinPlayerEvent e) {     CheckGuardian(e.Player); }  [EventListener] private void OnGuardian(object sender, GuardianModePlayerEvent e) {     CheckGuardian(e.Player); }  private void CheckGuardian(Player p)  {     if (p.IsGuardian)     {         this.Chatter.Kick(p.Username, "No guardians allowed.");     } }

Processor sorted out the code

Last edited by Metatron (Sep 10 2014 5:34:28 am)


Po9cnQh.png

PLNQVL8.png
Thank you eleizibeth ^

1SYOldu.png

I stack my signatures rather than delete them so I don't lose them
giphy.gif

WfSi4mm.png

Offline

#2 Before February 2015

mrjawapa
Corn Man 🌽
From: Ohio, USA
Joined: 2015-02-15
Posts: 5,840
Website

Re: [Tool] Guardian Kicker Plugin

The point in guardian is to help people eliminate harassment and spam. Not to abuse their "power". You all are way too worried about this...


Discord: jawp#5123

Offline

#3 Before February 2015

Koya
Fabulous Member
From: The island with those Brits
Joined: 2015-02-18
Posts: 6,310

Re: [Tool] Guardian Kicker Plugin

No I'm fine with koto being a guardian, nobody else.


Po9cnQh.png

PLNQVL8.png
Thank you eleizibeth ^

1SYOldu.png

I stack my signatures rather than delete them so I don't lose them
giphy.gif

WfSi4mm.png

Offline

#4 Before February 2015

Lictor666
Guest

Re: [Tool] Guardian Kicker Plugin

Thank you to share it !

#5 Before February 2015

mrjawapa
Corn Man 🌽
From: Ohio, USA
Joined: 2015-02-15
Posts: 5,840
Website

Re: [Tool] Guardian Kicker Plugin

Squad wrote:

No I'm fine with koto being a guardian, nobody else.

Why? If you trust Julian's choice to have KOTO as a guardian, why not me, NVD, and ultrabass. Actually, you don't need to answer why for ultrabass.


Discord: jawp#5123

Offline

#6 Before February 2015

Helvi
Member
Joined: 2015-04-06
Posts: 1,132

Re: [Tool] Guardian Kicker Plugin

JaWapa wrote:

The point in guardian is to help people eliminate harassment and spam. Not to abuse their "power". You all are way too worried about this...

Oh Lorde, thy power shall vanquish the whorships of daemoniac heights, howls and squawking ecstacies that tore and reverberated through nighted worlds like pestilential tempests from the gulfs of hell.

I am worried about a kid losing his/her mind in blind and idiotic selfbelieve caused from his/her intention to do "good".
On Topic: Thanks for sharing this Squad.

Last edited by Helvi (Aug 30 2014 11:38:10 am)


Hi.

Offline

#7 Before February 2015

hummerz5
Member
From: wait I'm not a secret mod huh
Joined: 2015-08-10
Posts: 5,852

Re: [Tool] Guardian Kicker Plugin

uhm
I don't cupcake, so

        public static function isGuardian(_arg1:String):Boolean{             return (((guardians[_arg1]) || (false)));         } [...]         case "add":              if (isGuardian(m.GetString(1)) && checkBox_KICK_GUARDIAN.Checked){              yourconnection.Send("say", "/kick " + m.GetString(1));         }         break;

Preparation:
Just add guardians!

Offline

#8 Before February 2015

Processor
Member
Joined: 2015-02-15
Posts: 2,246

Re: [Tool] Guardian Kicker Plugin

Squad wrote:

this.Chatter.Chat("/kick " + e.Player.Username + " No guardians allowed.");

Use Chatter.Kick? //forums.everybodyedits.com/img/smilies/big_smile

EDIT: Oh and your code doesn't do much because IsGuardian is only set if you are actually INSIDE the guardian mode. Listen for GuardianModePlayerEvent instead! //forums.everybodyedits.com/img/smilies/wink
EE only colors the guardians because they are hard coded into the game code.

Last edited by Processor (Aug 30 2014 12:24:12 pm)


I have never thought of programming for reputation and honor. What I have in my heart must come out. That is the reason why I code.

Offline

#9 Before February 2015

Koya
Fabulous Member
From: The island with those Brits
Joined: 2015-02-18
Posts: 6,310

Re: [Tool] Guardian Kicker Plugin

Processor wrote:
Squad wrote:

this.Chatter.Chat("/kick " + e.Player.Username + " No guardians allowed.");

Use Chatter.Kick? //forums.everybodyedits.com/img/smilies/big_smile

EDIT: Oh and your code doesn't do much because IsGuardian is only set if you are actually INSIDE the guardian mode. Listen for GuardianModePlayerEvent instead! //forums.everybodyedits.com/img/smilies/wink
EE only colors the guardians because they are hard coded into the game code.

This?

private void GuardianJoin(object sender, GuardianModePlayerEvent e) {     if (e.Player.IsGuardian)     {         this.Chatter.Kick(e.Player.Username, "No guardians allowed.");     } }

Sorry, I'm brand new to CupCake


Po9cnQh.png

PLNQVL8.png
Thank you eleizibeth ^

1SYOldu.png

I stack my signatures rather than delete them so I don't lose them
giphy.gif

WfSi4mm.png

Offline

#10 Before February 2015

Processor
Member
Joined: 2015-02-15
Posts: 2,246

Re: [Tool] Guardian Kicker Plugin

Squad wrote:

This?

private void GuardianJoin(object sender, GuardianModePlayerEvent e) {     if (e.Player.IsGuardian)     {         this.Chatter.Kick(e.Player.Username, "No guardians allowed.");     } }

Sorry, I'm brand new to CupCake

Better now //forums.everybodyedits.com/img/smilies/smile You might also want to check if there are any existing players that are already in guardian mode as well.

Like this: //forums.everybodyedits.com/img/smilies/smile

[EventListener] private void OnJoin(object sender, JoinPlayerEvent e) {     CheckGuardian(e.Player); }  [EventListener] private void OnGuardian(object sender, GuardianModePlayerEvent e) {     CheckGuardian(e.Player); }  private void CheckGuardian(Player p)  {     if (p.IsGuardian)     {         this.Chatter.Kick(p.Username, "No guardians allowed.");     } }


I have never thought of programming for reputation and honor. What I have in my heart must come out. That is the reason why I code.

Offline

#11 Before February 2015

Koya
Fabulous Member
From: The island with those Brits
Joined: 2015-02-18
Posts: 6,310

Re: [Tool] Guardian Kicker Plugin

Processor wrote:
Squad wrote:

This?

private void GuardianJoin(object sender, GuardianModePlayerEvent e) {     if (e.Player.IsGuardian)     {         this.Chatter.Kick(e.Player.Username, "No guardians allowed.");     } }

Sorry, I'm brand new to CupCake

Better now //forums.everybodyedits.com/img/smilies/smile You might also want to check if there are any existing players that are already in guardian mode as well.

Like this: //forums.everybodyedits.com/img/smilies/smile

[EventListener] private void OnJoin(object sender, JoinPlayerEvent e) {     CheckGuardian(e.Player); }  [EventListener] private void OnGuardian(object sender, GuardianModePlayerEvent e) {     CheckGuardian(e.Player); }  private void CheckGuardian(Player p)  {     if (p.IsGuardian)     {         this.Chatter.Kick(p.Username, "No guardians allowed.");     } }

Thank you very much

I have a better understanding on the player system now.
New .dll http://bit.ly/kickguardian3

Last edited by Metatron (Aug 30 2014 4:35:26 pm)


Po9cnQh.png

PLNQVL8.png
Thank you eleizibeth ^

1SYOldu.png

I stack my signatures rather than delete them so I don't lose them
giphy.gif

WfSi4mm.png

Offline

#12 Before February 2015

lrussell
Member
From: Saturn's Titan
Joined: 2015-02-15
Posts: 843
Website

Re: [Tool] Guardian Kicker Plugin

I was going to make a similar bot to rid my worlds of guardians if they become reality. I even had a plan in place in case you can't actually kick them. //forums.everybodyedits.com/img/smilies/smile

Offline

#13 Before February 2015

hummerz5
Member
From: wait I'm not a secret mod huh
Joined: 2015-08-10
Posts: 5,852

Re: [Tool] Guardian Kicker Plugin

So, this isn't working now?

The most I could see is make a bot and then say "no u can't have"

Offline

#14 Before February 2015

XxAtillaxX
Member
Joined: 2015-11-28
Posts: 4,202

Re: [Tool] Guardian Kicker Plugin

You can't kick them, it'll 'backfire' as it does with the moderators.
There's no actual solution to this other than quitting the game, which I can proudly say I've done as well.


signature.png
*u stinky*

Offline

#15 Before February 2015

Koya
Fabulous Member
From: The island with those Brits
Joined: 2015-02-18
Posts: 6,310

Re: [Tool] Guardian Kicker Plugin

XxAtillaxX wrote:

You can't kick them, it'll 'backfire' as it does with the moderators.
There's no actual solution to this other than quitting the game, which I can proudly say I've done as well.

if guardian enters
     kick everyone else


Po9cnQh.png

PLNQVL8.png
Thank you eleizibeth ^

1SYOldu.png

I stack my signatures rather than delete them so I don't lose them
giphy.gif

WfSi4mm.png

Offline

#16 Before February 2015

TiKen
Member
Joined: 2015-02-24
Posts: 298

Re: [Tool] Guardian Kicker Plugin

Squad wrote:
XxAtillaxX wrote:

You can't kick them, it'll 'backfire' as it does with the moderators.
There's no actual solution to this other than quitting the game, which I can proudly say I've done as well.

if guardian enters
     kick everyone else

and clear/save world (do backups before tho)

Offline

#17 Before February 2015

ABC Boy
Guest

Re: [Tool] Guardian Kicker Plugin

lrussell wrote:

I was going to make a similar bot to rid my worlds of guardians if they become reality. I even had a plan in place in case you can't actually kick them. //forums.everybodyedits.com/img/smilies/smile

And now we need the plan.

#18 Before February 2015

Koya
Fabulous Member
From: The island with those Brits
Joined: 2015-02-18
Posts: 6,310

Re: [Tool] Guardian Kicker Plugin

ABC Boy wrote:
lrussell wrote:

I was going to make a similar bot to rid my worlds of guardians if they become reality. I even had a plan in place in case you can't actually kick them. //forums.everybodyedits.com/img/smilies/smile

And now we need the plan.

I'm curious as to what it is.


Po9cnQh.png

PLNQVL8.png
Thank you eleizibeth ^

1SYOldu.png

I stack my signatures rather than delete them so I don't lose them
giphy.gif

WfSi4mm.png

Offline

#19 Before February 2015

lrussell
Member
From: Saturn's Titan
Joined: 2015-02-15
Posts: 843
Website

Re: [Tool] Guardian Kicker Plugin

Basically a self-destruct mode. Guardian enters, world is cleared, everyone is kicked, chat is emptied.
Or... you could have a lobby level before the main level. You could teleport all non-guardians to a world portal. //forums.everybodyedits.com/img/smilies/wink

#WhyAreGuardians2014

Offline

#20 Before February 2015

Different55
Forum Admin
Joined: 2015-02-07
Posts: 16,574

Re: [Tool] Guardian Kicker Plugin

notbad.gif

but what's the point? do we hate guardians that much?


"Sometimes failing a leap of faith is better than inching forward"
- ShinsukeIto

Offline

#21 Before February 2015

hummerz5
Member
From: wait I'm not a secret mod huh
Joined: 2015-08-10
Posts: 5,852

Re: [Tool] Guardian Kicker Plugin

Interesting idea. Then, when the guardians "guardian-mode" to the portal, put it in a new location.

Then again, repeat, repeat, etc...   (ofc, that system wouldn't have the assistance of the world list... unless you named the main-not-lobby world something like "join world: unique873" and had some perfectly timed /visible false system.)
Ofc, being the prominent figures of EE, they surely wouldn't stoop to hacked clients/hacking. (lol maybe?)
Could work.

I like that plan.

Last edited by hummerz5 (Sep 10 2014 7:07:45 pm)

Offline

#22 Before February 2015

ABC Boy
Guest

Re: [Tool] Guardian Kicker Plugin

Freeze (like in NBot) Guardians? This may work if the Guardians (or Guardian-mode) aren't immune to tele's, combined with lrussell's plan

#UsingOne'sFeatureAgainstOneself

#23 Before February 2015

hiimsomething
Guest

Re: [Tool] Guardian Kicker Plugin

@abc boy, guardians can use god mode and ignore freeze.

EDIT: nvm, he meant freeze notes. Ignore the first line

Last edited by hiimsomething (Sep 18 2014 7:55:52 am)

#24 Before February 2015

Cyclone or Meredith
Guest

Re: [Tool] Guardian Kicker Plugin

The freeze notes will still disable them.

Koya1423758688202744

Board footer

Powered by FluxBB

[ Started around 1714853848.0439 - Generated in 0.083 seconds, 12 queries executed - Memory usage: 1.74 MiB (Peak: 1.99 MiB) ]