[Game] BlockColor

Games that have been abandoned and no longer work properly with the latest version of Minetest.
User avatar
StarNinjas
Member
Posts: 411
Joined: Wed Mar 14, 2018 00:32
GitHub: starninjas
IRC: StarNinjas
In-game: J1
Location: Terrarca
Contact:

Re: [Game] BlockColor

by StarNinjas » Post

My Sister has been playing quit a bit looking great!
Don't go to bed tonight, without knowing what would happen if you died. https://thegospelfilm.org/

Chiantos
Member
Posts: 377
Joined: Sun Jan 15, 2017 09:04

Re: [Game] BlockColor

by Chiantos » Post

Deleted message
Last edited by Chiantos on Mon Sep 30, 2019 06:18, edited 1 time in total.

Chiantos
Member
Posts: 377
Joined: Sun Jan 15, 2017 09:04

Re: [Game] BlockColor

by Chiantos » Post

Deleted message
Last edited by Chiantos on Mon Sep 30, 2019 06:18, edited 1 time in total.

Chiantos
Member
Posts: 377
Joined: Sun Jan 15, 2017 09:04

Re: [Game] BlockColor

by Chiantos » Post

Deleted message
Last edited by Chiantos on Mon Sep 30, 2019 06:18, edited 1 time in total.

Chiantos
Member
Posts: 377
Joined: Sun Jan 15, 2017 09:04

Re: [Game] BlockColor

by Chiantos » Post

Deleted message
Last edited by Chiantos on Mon Sep 30, 2019 06:18, edited 1 time in total.

User avatar
azekill_DIABLO
Member
Posts: 7507
Joined: Wed Oct 29, 2014 20:05
GitHub: azekillDIABLO
In-game: azekill_DIABLO
Location: OMICRON
Contact:

Re: [Game] BlockColor

by azekill_DIABLO » Post

Hey, ne fiche pas tout en l'air ok. Je respecte ta décision, elle ne me dérange pas mais pense tu vraiment que ça vaille le coup pour un truc parti d'une idiotie? Après ça me va mais j'étais détérminé à t'aider.
Gone, but not dead. Contact me on discord: azekill_DIABLO#6565
DMs are always open if you want to get in touch!

Chiantos
Member
Posts: 377
Joined: Sun Jan 15, 2017 09:04

Re: [Game] BlockColor

by Chiantos » Post

Deleted message
Last edited by Chiantos on Mon Sep 30, 2019 06:18, edited 1 time in total.

User avatar
azekill_DIABLO
Member
Posts: 7507
Joined: Wed Oct 29, 2014 20:05
GitHub: azekillDIABLO
In-game: azekill_DIABLO
Location: OMICRON
Contact:

Re: [Game] BlockColor

by azekill_DIABLO » Post

lol
Gone, but not dead. Contact me on discord: azekill_DIABLO#6565
DMs are always open if you want to get in touch!

Chiantos
Member
Posts: 377
Joined: Sun Jan 15, 2017 09:04

Re: [Game] BlockColor

by Chiantos » Post

Deleted message
Last edited by Chiantos on Mon Sep 30, 2019 06:17, edited 1 time in total.

Chiantos
Member
Posts: 377
Joined: Sun Jan 15, 2017 09:04

Re: [Game] BlockColor

by Chiantos » Post

Deleted message
Last edited by Chiantos on Mon Sep 30, 2019 06:17, edited 1 time in total.

Chiantos
Member
Posts: 377
Joined: Sun Jan 15, 2017 09:04

Re: [Game] BlockColor

by Chiantos » Post

Deleted message
Last edited by Chiantos on Mon Sep 30, 2019 06:17, edited 1 time in total.

Chiantos
Member
Posts: 377
Joined: Sun Jan 15, 2017 09:04

Re: [Game] BlockColor

by Chiantos » Post

Deleted message
Last edited by Chiantos on Mon Sep 30, 2019 06:16, edited 1 time in total.

Chiantos
Member
Posts: 377
Joined: Sun Jan 15, 2017 09:04

Re: [Game] BlockColor

by Chiantos » Post

Deleted message
Last edited by Chiantos on Mon Sep 30, 2019 06:16, edited 1 time in total.

u34

Re: [Game] BlockColor

by u34 » Post

Great idea, awesome sub-game, keep on the good work!!

OSS : j-for-f
Image
Attachments
Texture149.png
Texture149.png (922.88 KiB) Viewed 3421 times

User avatar
Drachenbauer32
Member
Posts: 105
Joined: Wed Aug 28, 2019 18:11

Re: [Game] BlockColor

by Drachenbauer32 » Post

Is there any way to get the early style with the bright colors back?

How about this way:

Code: Select all

local dyes = {
	{"red",        "Red",        {a=255, r=255, g=  0, b=  0}},
	{"orange",     "Orange",     {a=255, r=255, g=127, b=  0}},
	{"yellow",     "Yellow",     {a=255, r=255, g=255, b=  0}},
	{"green",      "Green",      {a=255, r=  0, g=255, b=  0}},
	{"blue",       "Blue",       {a=255, r=  0, g=  0, b=255}},
	{"pink",       "Pink",       {a=255, r=255, g=173, b=183}},
	{"white",      "White",      {a=255, r=255, g=255, b=255}},
	{"black",      "Black",      {a=255, r= 95, g= 95, b= 95}}
}

for i = 1, #dyes do
	local name, desc, dye = unpack(dyes[i])

	minetest.register_node("wool:" .. name, {
		description = desc .. " Wool",
		color = dye,
		tiles = {"wool.png"},
This is the beginning of my modifyed wool-blocks in the minetest_game
i deleted some lines in the colors-list here in the post to show it with only eight colors (i have actually 16 in my mod),

You also can replace

Code: Select all

{"pink",       "Pink",       {a=255, r=255, g=173, b=183}},
with

Code: Select all

{"purple",     "Purple",     {a=255, r=159, g=  0, b=255}},
in the code, because your "pink" blocks looked more purple in the early bright colored version.

Chiantos
Member
Posts: 377
Joined: Sun Jan 15, 2017 09:04

Re: [Game] BlockColor

by Chiantos » Post

Deleted message
Last edited by Chiantos on Mon Sep 30, 2019 06:16, edited 1 time in total.

u34

Re: [Game] BlockColor

by u34 » Post

Chiantos wrote:Hello,

Blockcolor use html color (you can choice 8 colors), you can modify color with conf. color1= , color2= ... color8= .

I have stop support the game in CDB Minetest and Blockcolor Engine, I am redoing the game under Unity.

Image

Image

Image

The code will not be opened, it will avoid the abuses.

Good Day.
Goodbye and hopefully testing the unity version when it is done?!

User avatar
Drachenbauer32
Member
Posts: 105
Joined: Wed Aug 28, 2019 18:11

Re: [Game] BlockColor

by Drachenbauer32 » Post

Maybe i can recratr the colors in the instance of the game, i downloaded for minetest, and clean up all the colored textures, because only the white ones are needed.

Chiantos
Member
Posts: 377
Joined: Sun Jan 15, 2017 09:04

Re: [Game] BlockColor

by Chiantos » Post

Deleted message

User avatar
Drachenbauer32
Member
Posts: 105
Joined: Wed Aug 28, 2019 18:11

Re: [Game] BlockColor

by Drachenbauer32 » Post

Who turned the flying carpet-mot into a hotairballoon?

Is there a blend-file of the model anywhere?

Eran
Member
Posts: 123
Joined: Fri May 03, 2019 16:46

Re: [Game] BlockColor

by Eran » Post

The model is from this thread viewtopic.php?f=9&t=16042&hilit=hotairballoon.
Sadly it doesn't seem to include a blender file though.

User avatar
Drachenbauer32
Member
Posts: 105
Joined: Wed Aug 28, 2019 18:11

Re: [Game] BlockColor

by Drachenbauer32 » Post

i found a way to edit it.

Now i have a very simple tip to get bright colors back:

Every where, where you have this behind a texture-file-name:

Code: Select all

^[colorize:#"..colour..":70
.
Replace it with:

Code: Select all

^[multiply:#"..colour
.
This is the modifyer for bright coloring

User avatar
Wuzzy
Member
Posts: 4786
Joined: Mon Sep 24, 2012 15:01
GitHub: Wuzzy2
IRC: Wuzzy
In-game: Wuzzy
Contact:

Re: [Game] BlockColor

by Wuzzy » Post

Why was the first post erased, and (almost) all traces of this game wiped out? WTF????

User avatar
rubenwardy
Moderator
Posts: 6972
Joined: Tue Jun 12, 2012 18:11
GitHub: rubenwardy
IRC: rubenwardy
In-game: rubenwardy
Location: Bristol, United Kingdom
Contact:

Re: [Game] BlockColor

by rubenwardy » Post

Looks like they've either used a script or too much time to erase most of their posts from the forums
Renewed Tab (my browser add-on) | Donate | Mods | Minetest Modding Book

Hello profile reader

User avatar
Hume2
Member
Posts: 709
Joined: Tue Jun 19, 2018 08:24
GitHub: Hume2
In-game: Hume2
Location: Czech Republic

Re: [Game] BlockColor

by Hume2 » Post

I remember that he has once posted a thread explaining why he left opensource. Maybe that's why he did it.
If you lack the reality, go on a trip or find a job.

Post Reply

Who is online

Users browsing this forum: No registered users and 2 guests