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.

#51 2015-10-19 01:28:15

W24
Member
From: USA
Joined: 2015-05-30
Posts: 591
Website

Re: [Release] EE Image Editor - v2.0 (BIG UPDATE)

Btw, ninjasupeatsninja, you might want to fix the moderator aura. //forums.everybodyedits.com/img/smilies/tongue


yqSDpmp.png

Offline

#52 2015-10-19 03:42:32

SirJosh3917
Formerly ninjasupeatsninja
From: USA
Joined: 2015-04-05
Posts: 2,095

Re: [Release] EE Image Editor - v2.0 (BIG UPDATE)

was24 wrote:

Btw, ninjasupeatsninja, you might want to fix the moderator aura. //forums.everybodyedits.com/img/smilies/tongue

i don't know how //forums.everybodyedits.com/img/smilies/sad

Offline

Wooted by:

#53 2015-10-19 22:44:00

W24
Member
From: USA
Joined: 2015-05-30
Posts: 591
Website

Re: [Release] EE Image Editor - v2.0 (BIG UPDATE)

ninjasupeatsninja wrote:
was24 wrote:

Btw, ninjasupeatsninja, you might want to fix the moderator aura. //forums.everybodyedits.com/img/smilies/tongue

i don't know how //forums.everybodyedits.com/img/smilies/sad

Also, please fix the bug where numbers don't work in the username. //forums.everybodyedits.com/img/smilies/tongue


yqSDpmp.png

Offline

#54 2015-10-27 03:59:55

Axelpong1104
Member
Joined: 2015-10-25
Posts: 25

Re: [Release] EE Image Editor - v2.0 (BIG UPDATE)

In EE IMage Editor
How Can I add Smileys On the Bot like i wanted to Add Santa my Friend supermega wanted santa smiley with admin Aura?


eYTuol7.png

Believe me With Admin Aura and Orange Name?Try It....

Offline

#55 2015-10-27 04:03:13

Axelpong1104
Member
Joined: 2015-10-25
Posts: 25

Re: [Release] EE Image Editor - v2.0 (BIG UPDATE)

How can I add Santa Smiley to the bot?


eYTuol7.png

Believe me With Admin Aura and Orange Name?Try It....

Offline

#56 2015-10-27 15:47:18

SirJosh3917
Formerly ninjasupeatsninja
From: USA
Joined: 2015-04-05
Posts: 2,095

Re: [Release] EE Image Editor - v2.0 (BIG UPDATE)

Axelpong1104 wrote:

How can I add Santa Smiley to the bot?

Well, go into the folder pic/smiley, and then (for example) get the santa smiley, go into the smile.png file, and replace the image there with the santa smiley. Once done, go ahead and save and close smile.png, and run EE Image Editor. Then when you want to use the smiley, in the smiley box select the Happy smiley. Then your santa smiley is there.

Offline

#57 2015-10-27 16:41:42, last edited by lrussell (2015-10-27 16:48:38)

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

Re: [Release] EE Image Editor - v2.0 (BIG UPDATE)

Using this image, you can make smiley access much easier. When EE updates, you must only replace the one image.

Just run the following code when your program starts, and then use, for example:

Smiley[0]

to get a 26x26 Bitmap of //forums.everybodyedits.com/img/smilies/smile.

Bitmap[] Smileys = new Bitmap[0];

// Split the smileys into individual images.
            if (Smileys.Length == 0)
            {
                List<Bitmap> lstSmileys = new List<Bitmap>();

                using (Bitmap bmpSmileys = Properties.Resources.smileys) // Replace with smiley image location.
                {
                    for (int x = 0; x < bmpSmileys.Width; x += 26)
                    {
                        Bitmap bmpSmiley = bmpSmileys.Clone(new Rectangle(x, 0, 26, 26), PixelFormat.DontCare);
                        lstSmileys.Add(bmpSmiley);
                    }
                }

                Smileys = lstSmileys.ToArray();
            }

Offline

Wooted by: (4)

#58 2015-10-27 21:43:22

ewoke
Member
Joined: 2015-02-20
Posts: 412

Re: [Release] EE Image Editor - v2.0 (BIG UPDATE)

i have this wonderfull idea, where you hardcode the smileys along with the hardcoded letters

genius right


if you can read this....good for you

Offline

#59 2015-11-07 21:48:38

SirJosh3917
Formerly ninjasupeatsninja
From: USA
Joined: 2015-04-05
Posts: 2,095

Re: [Release] EE Image Editor - v2.0 (BIG UPDATE)

2.0 is now out!
Now you can click to place a smiley, and click (dragging works) to place blocks.
Mod & Admin & White auras are all now centered properly.
You need to know block Ids though, because the program ran out of memory when attempting something like Capasha's smiley picker with blocks.

Offline

#60 2015-11-07 22:07:49

W24
Member
From: USA
Joined: 2015-05-30
Posts: 591
Website

Re: [Release] EE Image Editor - v2.0 (BIG UPDATE)

did you sneak some virus into your latest update? My anti virus thinks its a virus, the other versions, my anti virus did not detect.


yqSDpmp.png

Offline

#61 2015-11-07 22:13:34, last edited by SirJosh3917 (2015-11-07 22:21:52)

SirJosh3917
Formerly ninjasupeatsninja
From: USA
Joined: 2015-04-05
Posts: 2,095

Re: [Release] EE Image Editor - v2.0 (BIG UPDATE)

was24 wrote:

did you sneak some virus into your latest update? My anti virus thinks its a virus, the other versions, my anti virus did not detect.

What?
I didn't even obsfucate it D:
Running a test on virus total right now, but your antivirus must be very cautious.
I have no reason to believe that it is a virus:

long sourcecode

EDIT: Virus total done
0/53
https://www.virustotal.com/en/file/7552 … 446930654/

Offline

#62 2015-11-07 23:05:31

W24
Member
From: USA
Joined: 2015-05-30
Posts: 591
Website

Re: [Release] EE Image Editor - v2.0 (BIG UPDATE)

Yep, my antivirus is overprotective.


yqSDpmp.png

Offline

#63 2015-11-07 23:44:44

Prodigy
Member
From: The United States of America
Joined: 2015-07-15
Posts: 2,613

Re: [Release] EE Image Editor - v2.0 (BIG UPDATE)

Im not going to download it until its virus free and mod aura is fixed.... I think


h0qIF0q.png

Offline

#64 2015-11-07 23:51:30

W24
Member
From: USA
Joined: 2015-05-30
Posts: 591
Website

Re: [Release] EE Image Editor - v2.0 (BIG UPDATE)

@prodigy5996 The mod is aura fixed.


yqSDpmp.png

Offline

#65 2015-11-07 23:52:54

Prodigy
Member
From: The United States of America
Joined: 2015-07-15
Posts: 2,613

Re: [Release] EE Image Editor - v2.0 (BIG UPDATE)

was24 wrote:

@prodigy5996 The mod is aura fixed.

Ok now I need it to be virus free //forums.everybodyedits.com/img/smilies/smile


h0qIF0q.png

Offline

#66 2015-11-08 00:26:23

SirJosh3917
Formerly ninjasupeatsninja
From: USA
Joined: 2015-04-05
Posts: 2,095

Re: [Release] EE Image Editor - v2.0 (BIG UPDATE)

Prodigy5996 wrote:
was24 wrote:

@prodigy5996 The mod is aura fixed.

Ok now I need it to be virus free //forums.everybodyedits.com/img/smilies/smile

It is virus free - virus total found nothing:

https://www.virustotal.com/en/file/7552 … 446930654/

Offline

#67 2015-11-08 01:18:29

Prodigy
Member
From: The United States of America
Joined: 2015-07-15
Posts: 2,613

Re: [Release] EE Image Editor - v2.0 (BIG UPDATE)

ninjasupeatsninja wrote:
Prodigy5996 wrote:
was24 wrote:

@prodigy5996 The mod is aura fixed.

Ok now I need it to be virus free //forums.everybodyedits.com/img/smilies/smile

It is virus free - virus total found nothing:

https://www.virustotal.com/en/file/7552 … 446930654/

Ok I will now download it //forums.everybodyedits.com/img/smilies/smile


h0qIF0q.png

Offline

#68 2015-11-08 01:50:25

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

Re: [Release] EE Image Editor - v2.0 (BIG UPDATE)

ninjasupeatsninja wrote:
was24 wrote:

did you sneak some virus into your latest update? My anti virus thinks its a virus, the other versions, my anti virus did not detect.

What?
I didn't even obsfucate it D:
Running a test on virus total right now, but your antivirus must be very cautious.
I have no reason to believe that it is a virus:

long sourcecode

EDIT: Virus total done
0/53
https://www.virustotal.com/en/file/7552 … 446930654/

It's interesting to see the code you didn't write, and what purposes they serve.
(the comments tell all)

Offline

#69 2015-11-08 12:25:36

den3107
Member
From: Netherlands
Joined: 2015-04-24
Posts: 1,025

Re: [Release] EE Image Editor - v2.0 (BIG UPDATE)

hummerz5 wrote:

It's interesting to see the code you didn't write, and what purposes they serve.
(the comments tell all)

So just because he commented every line of a certain part he didn't make it himself?

I got nearly every cluster and here and there a couple individual lines commented, yet still write all of it myself.

Mostly harder parts or things I've never done before I comment, since that way I can more easily fix the bugs, or still know what the f*** I did after a couple weeks/months.

Offline

#70 2015-11-08 15:41:19

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

Re: [Release] EE Image Editor - v2.0 (BIG UPDATE)

Offline

Wooted by:

#71 2015-11-08 18:48:24, last edited by den3107 (2015-11-08 18:48:47)

den3107
Member
From: Netherlands
Joined: 2015-04-24
Posts: 1,025

Re: [Release] EE Image Editor - v2.0 (BIG UPDATE)

Welp, beat me there.

Still: No shame in using things like that, unless it's entire slices of code (that's more a snippet).

Otherwise what do you have to say to the ones using botbits?

Offline

#72 2015-11-08 19:10:59

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

Re: [Release] EE Image Editor - v2.0 (BIG UPDATE)

I'm not making the argument for legal issues, nor ethics. Clearly botbits is released for use, and clearly people handing out code expect it to be used... though some might expect attribution.

That's not my issue, though.

Instead of arguing ethics, I'm simply hinting towards inexperience.

Offline

#73 2015-11-09 01:59:19

SirJosh3917
Formerly ninjasupeatsninja
From: USA
Joined: 2015-04-05
Posts: 2,095

Re: [Release] EE Image Editor - v2.0 (BIG UPDATE)

hummerz5 wrote:

I'm simply hinting towards inexperience.

Mainly because I've had trouble drawing text before.

Offline

SirJosh39171447030759556875

Board footer

Powered by FluxBB

[ Started around 1715075706.9244 - Generated in 0.330 seconds, 10 queries executed - Memory usage: 1.85 MiB (Peak: 2.18 MiB) ]