- Sky
- Blueberry
- Slate
- Blackcurrant
- Watermelon
- Strawberry
- Orange
- Banana
- Apple
- Emerald
- Chocolate
- Charcoal
SuperSamir
Members-
Content Count
34 -
Joined
-
Last visited
Everything posted by SuperSamir
-
I wanted to make a window and I've been scrolling around. I found some stuff related to the term API, but I can't wrap my head around it. How would you use it?
-
I asked them if they could do anything and it doesn't seem possible. They gave me the same answer as you did earlier about increasing the total memory, but that wouldn't work.
-
The thing is, that's exactly what I'm doing. This table is just this large. Around 10 variables are contained in each block, and if there are around 13k blocks (24x24x24), the table becomes incredibly large.
-
In NuclearCraft, the Fission Reactor component has a .getReactorLayout() function, which produces a table with statistics of every single block inside the reactor. The fission reactor I'm testing out is 24x24x24 (max size) and the function produces an entirely too massive table for the computer to handle. "Unrecoverable Error, Out of Memory." How do I shrink this table before it's contents are displayed and not crash the computer?
-
I made this program in my single player SkyFactory 4 world and I thought I could share it here. I think it's a bit too big but I think it works. This is a program that allows you to check your NuclearCraft Fission Reactor stats and also has the ability to supply fuel to the reactor with the help of an ME System as well as having grid control for Mekanism's Induction Matrix. I'm not sure where to go with this program so if you have any suggestions, a comment would be greatly appreciated! https://pastebin.com/SDpjY7J2
-
I am working on a button system for a program I'm making, and i need help with identifying if a value is NOT greater than or less than something. The thing is, there is no operator that checks if something is not greater/less than, as there is only ~=, >=, and <=.
-
It's simply just io.read(2). It allows to me to keep typing past 2 characters which is what I don't want.
-
I tested using io.read(2) and it lets me keep typing after meeting the threshold.
-
But I would like to force io.read() to stop typing when it reaches 2 characters.
-
Do these methods allow the user to keep typing even after the max characters have been reached?
-
I would like to create a text box that has a character limit of 2. I don't know how to make the input box not be cut by io.read() however, as you can type as many characters as you want.
-
The method you have provided seems to work, which I thank you for. Please do tell me about this cursor library though, I can't seem to find it but it seems like a massive help for the thing I'm programming.
-
When you are able to test, can you show me an example? I'm a bit confused about what you mean by the processes window cursor.
-
local event = require("event") local term = require("term") function cursor(_, _, x, y) term.setCursor(x, y) end event.listen("touch", cursor)
-
I'm using event.listen("touch") to make wherever I touch to be where the cursor is. However, this only writes the cursor's state on the cursor, and leaves the cursor in the same place it was before. I would like the cursor to move where I click, and be able to write text from there, instead of just leaving the cursor state there.
-
Applied Energistics 2 without ME Controller
SuperSamir replied to SuperSamir's question in Programming
That's what I thought too, until I realized only the ME Interface and ME Controller can access the Common Network API. The ME Interface is currently bugged, so although the cable part will give the interface API, it will not give the Common Network API. The full block interface however cannot be used as a component as channels are disabled. -
Applied Energistics 2 without ME Controller
SuperSamir replied to SuperSamir's question in Programming
The thing is, the ME Controller quite literally DOES NOT EXIST in the modpack I'm playing. Like I said before, it's due to a lack of channels in AE2. -
I'm playing SkyFactory 4 and I want to use my computer along with an export bus, but I don't have access to the ME Controller due to a lack of channels. How do I go about transporting items using the export bus without the ME Controller?
-
I have a loop going on in my program that updates data to be displayed. Alongside this loop, I would like to run event.listen("touch"). However, it is either that event.listen never occurs due to it being after the loop, or event.listen interrupting the loop.
-
Differently colored text in the same line
SuperSamir replied to SuperSamir's question in Programming
Does this method also allow using gray as a color? -
Differently colored text in the same line
SuperSamir replied to SuperSamir's question in Programming
This was exactly what I was looking for. Thanks for your help. -
I've figured out how to change the color of the text, however I would like to make it so that there are multiple different colors in the same line. For example, instead of "Hello world!" being just blue, it could have "Hello" be blue and "world!" be red.
-
I want my program to create a file named "variable" if it cant detect a file with the same name in the same folder.