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.

#101 2022-12-07 20:59:58

Minimania
Moderation Team
From: PbzvatFbba 13
Joined: 2015-02-22
Posts: 6,386

Re: Everybody Edits Offline: Project M (1.1.1) [MERRY CHRISTMAS!]

MartenM wrote:

Heyyo, is there a file with the minimap colours of EEM?
Cannot seem to find it my self.

In ItemManager.as, block color is written at the end of the line of code for each new block. It would be a huge hassle for someone adding new assets to have to pick out every color individually, so most assets, including almost all of the Project M ones, use "-1" instead of a hex code. This makes the client pick a color automatically, a summation of all of the pixels in the asset.

So, unfortunately, this all means that the hex codes aren't in a list, and in order to get them, they have to be extracted by hand.


21cZxBv.png
Click the image to see my graphics suggestions, or here to play EE: Project M!

Offline

#102 2022-12-07 23:04:50, last edited by capasha (2022-12-08 14:44:25)

capasha
Member
Joined: 2015-02-21
Posts: 4,066

Re: Everybody Edits Offline: Project M (1.1.1) [MERRY CHRISTMAS!]

Minimania wrote:

So, unfortunately, this all means that the hex codes aren't in a list, and in order to get them, they have to be extracted by hand.

Nope, this can be made with programming. Loop through the list and grab minimap colors.

I could make a tool for this, but for what use is it?

Edit:

I think I can do it much more advanced, but this is easier.
Block-Data-u8k-BMi-Bcmv.png

Offline

Wooted by:

#103 2022-12-08 17:09:49, last edited by MartenM (2022-12-08 17:22:20)

MartenM
Member
From: The Netherlands
Joined: 2016-03-31
Posts: 966
Website

Re: Everybody Edits Offline: Project M (1.1.1) [MERRY CHRISTMAS!]

Minimania wrote:

In ItemManager.as, block color is written at the end of the line of code for each new block. It would be a huge hassle for someone adding new assets to have to pick out every color individually, so most assets, including almost all of the Project M ones, use "-1" instead of a hex code. This makes the client pick a color automatically, a summation of all of the pixels in the asset.

So, unfortunately, this all means that the hex codes aren't in a list, and in order to get them, they have to be extracted by hand.

Yeah definitely not going through that by hand //forums.everybodyedits.com/img/smilies/smile
If the client can do it programmatically so can we!

capasha wrote:

Nope, this can be made with programming. Loop through the list and grab minimap colors.

I could make a tool for this, but for what use is it?

Edit:

I think I can do it much more advanced, but this is easier.

That looks rather convenient. Mind sharing the tool or the exported list? Format doesn't really matter as long as it it's from block-id -> color values.

As for why this is useful, I want to recreate the image in C# for a bot I am developing. It works for the normal EE worlds but not yet for the PmLvls.

Edit: I'm trying to find the (project M) source code. Is it somewhere on Github?


lm3hgg8.jpg

Ingame: marten22        My steam: MartenM

Offline

Wooted by:

#104 2022-12-08 22:46:29

capasha
Member
Joined: 2015-02-21
Posts: 4,066

Re: Everybody Edits Offline: Project M (1.1.1) [MERRY CHRISTMAS!]

The source code can be found in the download drop down. If you want the code for converting images into color. I write it below.

private static uint GetBlockColor(Bitmap bmd) {
	uint r = 0, g = 0, b = 0;

	for (int x = 0; x < bmd.Height; x++){
		for (int y = 0; y < bmd.Width; y++){
			uint color = ColorToUInt(bmd.GetPixel(x, y));

			r += (color & 0xff0000) >> 16;
			g += (color & 0x00ff00) >> 8;
			b += (color & 0x0000ff);
		}
	}

	r /= (uint)(bmd.Width * bmd.Height); //256
	g /= (uint)(bmd.Width * bmd.Height); //256
	b /= (uint)(bmd.Width * bmd.Height); //256

	return 0xff000000 | (r << 16) | (g << 8) | (b << 0);
}

private static uint ColorToUInt(Color color) => (uint)((color.A << 24) | (color.R << 16) | (color.G << 8) | (color.B << 0));

Offline

Wooted by: (2)

#105 2022-12-09 23:15:17

MartenM
Member
From: The Netherlands
Joined: 2016-03-31
Posts: 966
Website

Re: Everybody Edits Offline: Project M (1.1.1) [MERRY CHRISTMAS!]

Got it up and running. Thanks a lot!


lm3hgg8.jpg

Ingame: marten22        My steam: MartenM

Offline

#106 2023-10-22 08:05:42

TowerOfDustAndDecay
Member
Joined: 2021-01-03
Posts: 85

Re: Everybody Edits Offline: Project M (1.1.1) [MERRY CHRISTMAS!]

This might come off as incredibly stupid and not worth the gravedig, but would it be okay for this to get uploaded on Flashpoint by any chance? Other Flash emulators tend to be wonky.


2015-2018 - Beginning of the brain's decomposition.
2019 - Not knowing any better.
2020 - A disasterous return.
2021 - OW THE EDGE OW OW STOP IT HURTS
2022 - Actual redemption!
2023 - Remorse. Lots of it.

Offline

#107 2023-10-22 13:28:18

Snowester
Member
From: Mars
Joined: 2017-05-31
Posts: 637

Re: Everybody Edits Offline: Project M (1.1.1) [MERRY CHRISTMAS!]

TowerOfDustAndDecay wrote:

This might come off as incredibly stupid and not worth the gravedig, but would it be okay for this to get uploaded on Flashpoint by any chance? Other Flash emulators tend to be wonky.

Flash emulators? What OS are you using?
There's a flash projector for each of the 3 major OS, and it was actually given from Flashpoint iirc, but you could find them from EEO discord > #how-to-play

Offline

#108 2023-10-22 20:02:53, last edited by TowerOfDustAndDecay (2023-10-22 20:03:03)

TowerOfDustAndDecay
Member
Joined: 2021-01-03
Posts: 85

Re: Everybody Edits Offline: Project M (1.1.1) [MERRY CHRISTMAS!]

Snowester wrote:
TowerOfDustAndDecay wrote:

This might come off as incredibly stupid and not worth the gravedig, but would it be okay for this to get uploaded on Flashpoint by any chance? Other Flash emulators tend to be wonky.

Flash emulators? What OS are you using?
There's a flash projector for each of the 3 major OS, and it was actually given from Flashpoint iirc, but you could find them from EEO discord > #how-to-play

11. What, am I supposed to be on something earlier?


2015-2018 - Beginning of the brain's decomposition.
2019 - Not knowing any better.
2020 - A disasterous return.
2021 - OW THE EDGE OW OW STOP IT HURTS
2022 - Actual redemption!
2023 - Remorse. Lots of it.

Offline

#109 2023-12-26 01:38:48

Minimania
Moderation Team
From: PbzvatFbba 13
Joined: 2015-02-22
Posts: 6,386

Re: Everybody Edits Offline: Project M (1.1.1) [MERRY CHRISTMAS!]

Update 1.1.1

SZ8VZWD.png

Merry Christmas! I'm excited to share with you some new goodies! Let's just jump right into it

• The blocks in the Block Menu are now sorted much in the same way the Smiley Menu is. This should mean that similar packs thematically should appear closer together.

• Fixed a major glitch where the Builder's Club Effect was always being saved as Disable. If you've saved worlds with the Builder's Club Effect and would like to load them into this new update, please remove those effects in your worlds before attempting to load them in the new update.

• Ephemeral Ghost has been renamed to Flashing Ghost, and it is now animated; it flashes between the blue and white ghost stages.

• The following smileys and smiley variants have been added:

         - General by Toop
         - Fortune Teller, Seer, Medium, and Palm Reader by Toop
         - Ringleader by Toop
         - Barbershop Lead, Contratenor, Tenor, Contrabass, Bass, and Baritone by Toop
         - Pharaoh by Toop
         - Gold, Silver, and Bronze Medals by Toop
         - Genie by Toop
         - Clown Zombie by Minimania
         - Pharaoh by Toop
         - Archangel by MicChi
         - Faithful, Vehement, Watchful, and Vengeful Seraphs (Archangel wings by MicChi)
         - Illusionist and Magician by Cola1
         - Robo-Monster by Grilyon2
         - Welder by Toop
         - Natator by Toop and Boba
         - Voodoo Hexerei and Doll by Toop
         - Hazchem Suit by Toop
         - Jazz Player and Singer by Toop
         - Cyclops by Toop
         - Producer by Cola1
         - Newspaper Hat by Cola1
         - Bomb and Lit Bomb (Lit Bomb is animated) by Cola1
         - Project M Fan and Superfan by Cola1
         - Conquistador by Sleepy/Exidelo
         - Fan Girl by AzurePudding
         - Imp
         - Elephant by Genesis00
         - Gold Ghost by Seb135
         - Celebrity, Gardener, and Star Shades by Toop
         - Gearwork Robot by REDVE
         - New Years 2023 and 2024 smileys
         - Red Scarf by Toop
         - Operative by SmittyW
         - Night Owl by SmittyW
         - Legionnaire by SmittyW
         - Prospector by Weirdoverse
         - Reaper by Toop
         - Solar Festival (renamed from New Years) 2024 smiley by Toop
         - Santa Claus by Badoosh
         - Mrs. Claus by Badoosh
         - Anubis by seby bab

HCakn7v.png

• This update adds the following assets to Project M, all used with permission:

         - Autumn 2023 Pack
         - Desert Stronghold Pack by Toop/Brushfire
         - Desert Temple
               • Ancient Brick by Minimania
               • Temple Wall and Hieroglyphics by Sleepy/Exidelo
               • Temple Pyramid Decorations/Backgrounds by Sleepy/Exidelo
               • Sandstone by Toop/Brushfire
               • Sandstone Bricks by Grilyon2
               • Loose Sand by SmittyW
               • Hot Sands and Packed Sand by Sleepy/Exidelo
               • Temple Bricks by Sleepy/Exidelo
               • Pyramid Bricks by MicChi
               • Golden Beetle by seby bab
         - Ghost Town by Toop/Brushfire
               • Jail Bricks by Sleepy/Exidelo
         - Biome Pack
               • Soil by Toop/Brushfire
               • Moss by Toop/Brushfire
               • Underwater Sand by Toop/Brushfire
               • Snow Slush by MicChi
               • Gravel by MicChi
               • Sand by MicChi
         - Deep Sea extension
               • Ancient Brick by Minimania
               • Temple Wall by Sleepy/Exidelo
               • Temple Pyramid Decorations/Backgrounds by Sleepy/Exidelo
               • Carved Slab by Toop/Brushfire
               • Underwater Sandstone by Toop/Brushfire
               • Algae by Toop/Brushfire
               • Underwater Dungeon Stone by Grilyon2
         - Jungle Temple
               • Ancient Brick by Minimania
               • Temple Wall by Sleepy/Exidelo
               • Temple Pyramid Decorations/Backgrounds by Sleepy/Exidelo
               • Carved Temple Stone by Sleepy/Exidelo
               • Stone Temple Bricks and Mossy Bricks by Toop/Brushfire
               • Stone Temple Arch by Toop/Brushfire
               • Stone Pillar by Toop/Brushfire
               • Overgrown Temple Sod by Toop/Brushfire
               • Overgrown Pyramid Decorations by Toop/Brushfire
               • Ancient Jail Brick by Sleepy/Exidelo
               • Jungle Dungeon Stone by Grilyon2
         - Gravel by Minimania
         - Ingot by Minimania
         - Rainbow Mineral by Toop/Brushfire
         - Cut Emerald Jewel by Sleepy/Exidelo
         - Treehouse Blue and Cyan Leaves by Zoey2070
         - Additional Treehouse Block by Sleepy/Exidelo
         - Desert Bricks by Sleepy/Exidelo
         - Jelly Cakes by Toop
         - Pride Cake by Minimania
         - Glacial Pack by Toop/Brushfire
               • Glacial Ice/One-Way by Sleepy/Exidelo
         - Iceberg Pack
               • Blue Ice by Toop/Brushfire
               • Ice by Sleepy/Exidelo
         - Arctic Pack Extension by Toop/Brushfire
         - Restaurant Tables by Sleepy/Exidelo (Restaurant pack formed from originally Downtown assets)
         - Casino Pack
               • Suit Blocks by Cola1
               • Casino Block by Toop/Brushfire
               • Poker Chip Platforms by Toop/Brushfire
         - Downtown Decorations by Toop/Brushfire
         - Battleground Pack by Toop/Brushfire
         - Gothic Pack by Toop/Brushfire
         - Watermelon Tourmaline Magic Block by Cola1
         - Breakfast Pancake Toppings by Toop/Brushfire
         - Funfair Confetti by Toop/Brushfire
         - Funfair Targets by Toop/Brushfire
         - Paintball Pack by Toop/Brushfire
         - Treasury Pack by Toop/Brushfire
         - Bronze and Silver Variants of the Gold Membership Blocks
         - Satellite Solar Panels by Toop/Brushfire
         - Satellite and Deep Space Scaffolding
         - Deep Space Astrogation Screens by MicChi
         - Toxic Pack Blocks by Toop/Brushfire
         - Rustic Cushions and Support by Toop/Brushfire
         - Apocalyptic Pack by Toop/Brushfire
               • Dark Bricks by Sleepy/Exidelo
         - Arabesque Tiles by Toop/Brushfire
         - Purple Dark Citadel Blocks by Toop/Brushfire
         - Underworld Backgrounds by Toop/Brushfire
         - Lunar Festival Backgrounds by Toop/Brushfire
         - New Backgrounds of different shades and colors for multiple packs
         - More Waffle Cones by Minimania
         - Rainbow Sherbet by Minimania
         - Orange Sherbet by Minimania
         - Vanilla Caramel Fudge Ice Cream by Minimania
         - Rocky Road Ice Cream by Minimania
         - Cotton Candy Ice Cream by Minimania
         - Birthday Cake Ice Cream by Minimania
         - Chocolate Chip Ice Cream by Minimania
         - Pistachio Ice Cream by Minimania
         - Daiquiri Ice Cream by Minimania
         - Neon Pack by Minimania
         - TNT Crates by Minimania
         - Crate Flaps by Minimania
         - Lost City Support Beams by Minimania
         - Bayou Grass by Toop/Brushfire
         - Orange Easter Egg
         - More Christmas Stocking Colors by Toop/Brushfire
         - Christmas 2023 Pack by Toop/Brushfire
         - Coral Reef Sponge by Toop/Brushfire
         - Teal Adventure Leaves by SmittyW
         - Totem Pack by seby bab
         - Timber Torches by Minimania
         - Cactus NPC by seby bab
   

EJALort.png

         - Syrup is a new liquid which can remove all kinds of magical curses on the player. As mythbusters have tested, swimming in syrup is just about as fast as swimming in water, so it won't slow you down any.

QB8hkGi.png

         - Awesome Sauce (originally suggested by JackXtrm, made by Toop, is a new liquid which lets you swim so much faster than any other liquid that came before it!

WBOzz9e.png

         - I'd like to give a huge thank you to supporters of Project M that have been working with me to help bring you this update. In particular, I have high praises to sing for seby bab, Toop, RavaTroll, and REDVE for working to make Project M that much more special with their active participation and support in updating the game! Thank you guys so much!

LCjVUWR.png

         - I'd also like to highlight some new worlds that were made using Project M! Feel free to try them out if you'd like! Huge special thanks to RavaTroll, Toop, and AllenCaspe9510 for making these!



It's Christmas 2023! by Toop

3vIO4cs.png

Download - Google Drive PYbgvcS.png





Practice World by vAllenCaspe9510v

X8fas7T.png

Download - Google Drive PYbgvcS.png





Battle HighCastle by RavaTroll

9DK2COo.png

Download - Google Drive PYbgvcS.png



• The lobby background has been changed, and now features the following worlds:

         - It's Christmas 2023! by Toop
         - You Are The Universe by Minimania
         - EEO Collab by Minimania and Zoey2070

w3qjgLu.png

---------------------------------------------------------

Download

Notice: Everybody Edits Offline: Project Modification uses a custom file extension, .pmlvl and .pmlvls. Any world(s) saved using Project M will become .pmlvl or .pmlvls files, and these worlds cannot be loaded into vanilla Everybody Edits Offline. However, Project M can still be used to read .eelvl or .eelvls files.

Download

yFsLRd9.png


21cZxBv.png
Click the image to see my graphics suggestions, or here to play EE: Project M!

Offline

Wooted by: (3)

#110 2023-12-26 23:34:23

N1KF
Wiki Mod
From: ဪဪဪဪဪ From: ဪဪဪဪဪ From: ဪဪဪဪဪ
Joined: 2015-02-15
Posts: 11,052
Website

Re: Everybody Edits Offline: Project M (1.1.1) [MERRY CHRISTMAS!]

This is incredible. This has SO much stuff now. It did take like a year but I can tell this update has like a year's worth of content.

I did notice two possible errors though. The Clown Zombie is named Clown Zombe Ie in-game. The blue and red Timed doors and gates are tagged with grey and gray, but not their actual colors.


Everybody Edits is Fred

Offline

#111 2023-12-27 03:13:51

Minimania
Moderation Team
From: PbzvatFbba 13
Joined: 2015-02-22
Posts: 6,386

Re: Everybody Edits Offline: Project M (1.1.1) [MERRY CHRISTMAS!]

N1KF wrote:

This is incredible. This has SO much stuff now. It did take like a year but I can tell this update has like a year's worth of content.

I did notice two possible errors though. The Clown Zombie is named Clown Zombe Ie in-game. The blue and red Timed doors and gates are tagged with grey and gray, but not their actual colors.

Thank you for letting me know! When I get home I'll work on pushing out some typo fixes so if you find anymore, just let me know


21cZxBv.png
Click the image to see my graphics suggestions, or here to play EE: Project M!

Offline

Minimania1703643231798272

Board footer

Powered by FluxBB

[ Started around 1711672424.277 - Generated in 0.143 seconds, 12 queries executed - Memory usage: 1.61 MiB (Peak: 1.84 MiB) ]