Hi GamerNebulae,
The Answer to your Question can be found here: (
http://www.computercraft.info/forums2/index.php?/topic/4587-cc153mc152-miscperipherals-33/)
When you scroll down to Nuclear Information Reader you find this.
Spoiler
- get(slot): Gets information from the sensor cards in the specified slot (first slot is 1, second is 2…). Returns:
- Card UUID (uniquely identifies the card's type) or nil if invalid card
- Card state, OK means everything is right
- Card title, as given in the Information Panel GUI
- Table with the card information
That means if you Use get(slot) you always get 4 Variables back, cause the API is Designed like this.
1st variable contains UUID
2nd variable contains the card state
3rd Variable contains the card title
4th variable contains a table with the card information.
you can name them all 4 however you like if a,b,c,data or q,w,e,r does not matter.
the 4th one will always contain your data and if you need the data you have to use 4 variables.
on the other side if you only need the UUID you could use only one variable cause the UUID is the first entity returned.
if you need card title only you can use only 3 variables and so on.
I hope this helps you to understand that thing a bit better.
Greets
Loki