I'm sure there is a more futuristic way for putting text on walls....

  • Please make sure you are posting in the correct place. Server ads go here and modpack bugs go here
  • The FTB Forum is now read-only, and is here as an archive. To participate in our community discussions, please join our Discord! https://ftb.team/discord

Ieldra

Popular Member
Apr 25, 2014
1,810
733
129
...than putting up wooden signss. I'm sure there are several mods which let me do that. But I don't know them, and I'm asking: where should I look, which mods should I consider.
 

rhn

Too Much Free Time
Nov 11, 2013
5,706
4,420
333
...than putting up wooden signss. I'm sure there are several mods which let me do that. But I don't know them, and I'm asking: where should I look, which mods should I consider.
Nuclear Controls "Information Panels" using Text cards. The advanced versions allows you to put them flat on a surface and do not require external redstone signals. You can increase the size of them by adding Extenders much like you would with CC monitors.

And that would be another solution: ComputerCraft monitors. But rather over the top IMO as you would need Computers for the Monitors and scripts for the text. But can easily be done.
 

epidemia78

New Member
Jul 29, 2019
1,810
-4
0
Nuclear Controls "Information Panels" using Text cards. The advanced versions allows you to put them flat on a surface and do not require external redstone signals. You can increase the size of them by adding Extenders much like you would with CC monitors.

And that would be another solution: ComputerCraft monitors. But rather over the top IMO as you would need Computers for the Monitors and scripts for the text. But can easily be done.

Me and information panels are bros 4 life.
 
  • Like
Reactions: rhn

Pyure

Not Totally Useless
Aug 14, 2013
8,334
7,191
383
Waterloo, Ontario
That reminds me...Ieldra, @rhn does some neat stuff where he displays his power storage. He's too modest or I'm sure he'd plug it himself.
http://forum.feed-the-beast.com/thr...nd-guide-collection.42664/page-11#post-686258

Also, Reika does a neat thing with column incrementers to light up a vertical stack of redstone lamps depending how much power is present. Looks better than it sounds, but I don't have a link offhand.

PS: if you haven't already, basically all of rhn's thread is worthwhile to steal ideas from.
 
  • Like
Reactions: pc_assassin

malicious_bloke

Over-Achiever
Jul 28, 2013
2,961
2,705
298
Thread reminded me of this:

ROMANES-EUNT-DOMUS.jpg
 
  • Like
Reactions: E_DM_B

rhn

Too Much Free Time
Nov 11, 2013
5,706
4,420
333
RotaryCraft also adds a display, which is what he was talking about.
Ahh I think I know which one you are thinking of now, the "Display screen"? AFAIK(not actually tried it) that displays the text as a free standing hologram, and not actually on a wall.
 

rhn

Too Much Free Time
Nov 11, 2013
5,706
4,420
333
That reminds me...Ieldra, @rhn does some neat stuff where he displays his power storage. He's too modest or I'm sure he'd plug it himself.
http://forum.feed-the-beast.com/thr...nd-guide-collection.42664/page-11#post-686258
If you mean those CC monitors displaying the stats of my Big Reactors reactors/turbines, it is something I nicked from someone else :p You can find links to it in the thread.

Have been meaning to do something similar to monitor my main energy storage(the EnderIO capacitor bank), just never got around to sitting down and writing the script for it :p
 

Ieldra

Popular Member
Apr 25, 2014
1,810
733
129
That reminds me...Ieldra, @rhn does some neat stuff where he displays his power storage. He's too modest or I'm sure he'd plug it himself.
http://forum.feed-the-beast.com/thr...nd-guide-collection.42664/page-11#post-686258

Also, Reika does a neat thing with column incrementers to light up a vertical stack of redstone lamps depending how much power is present. Looks better than it sounds, but I don't have a link offhand.

PS: if you haven't already, basically all of rhn's thread is worthwhile to steal ideas from.
Yeah, I've looked at some of that. Very nice! But what are column incrementers? I have some ideas about displaying the status of my subsystems, but nothing for power levels yet.

BTW, thanks to everyone for your answers!
 

rhn

Too Much Free Time
Nov 11, 2013
5,706
4,420
333
Yeah, I've looked at some of that. Very nice! But what are column incrementers? I have some ideas about displaying the status of my subsystems, but nothing for power levels yet.

BTW, thanks to everyone for your answers!
Remember Reika posting a thread somewhere about the proper use of those incrementers. But not where(you can probbly find it through a search).

@Tikkamasala posted a simle to use little CC script for visually monitoring power storage devices in my little thread:
http://forum.feed-the-beast.com/thr...and-guide-collection.42664/page-9#post-654978
Really easy to use, just smack down a Computer adjacent to the storage device and then the row of monitors adjacent to the computer. You might need to edit the directions in the script(directions of the storage and monitor compared to the computer).
 

Padfoote

Brick Thrower
Forum Moderator
Dec 11, 2013
5,140
5,898
563
Ahh I think I know which one you are thinking of now, the "Display screen"? AFAIK(not actually tried it) that displays the text as a free standing hologram, and not actually on a wall.

Correct, however with a bit of work with multiparts it's fairly easy to make it blend in with a wall. Not as flexible as Nuclear Control in terms of options though.
 

Pyure

Not Totally Useless
Aug 14, 2013
8,334
7,191
383
Waterloo, Ontario
Yeah, I've looked at some of that. Very nice! But what are column incrementers? I have some ideas about displaying the status of my subsystems, but nothing for power levels yet.

BTW, thanks to everyone for your answers!
See approximately 2:30 in.

I believe its from his ExpandedRedstone mod, but you could likely mimic the behavior using comparators and something like rednet cable (or redwire if you can keep lines separated, I forget)
 
  • Like
Reactions: Padfoote

steve g

New Member
Jul 29, 2019
445
0
0
drop a computercraft computer somewhere, make a wall of monitor blocks where one of the monitor blocks shares a face on the computer, and do something like this:

Code:
term.write("hello world!")

save that to "hello"

and launch it with: monitor <side> hello

where <side> is the face of the computer touching the monitor, being one of front, back, top, bottom, left or right, front being the black face with a cursor/prompt on the computer. if the text is too small or big, experiment with the setTextScale command to change the size of the text. if you use the advanced computers/monitors (the golden faced versions) then you can play with foreground/background colors and customize it