Jump to content




[CC1.53][MC1.5.2] MiscPeripherals 3.3

turtle peripheral help peripheral

  • This topic is locked This topic is locked
1238 replies to this topic

#1001 Ferdy2003

  • New Members
  • 2 posts

Posted 07 June 2013 - 04:59 AM

Hey,

I tryed to use the Electronic Signal Controller but i can't get it to work. I can read all my Signals but I cant set them.

s = peripheral.wrap("bottom")

Read:

s.get(10,10,10) = blinkRed

Set:

s.set("green",10,10,10) = nothing it ist still blinking

(I linked the Signal and the controller)

I'am useing the direwolf pack.

Any Ideas?

#1002 MudkipTheEpic

  • Members
  • 639 posts
  • LocationWhere you'd least expect it.

Posted 07 June 2013 - 09:05 AM

View PostFerdy2003, on 07 June 2013 - 04:59 AM, said:

Hey,

I tryed to use the Electronic Signal Controller but i can't get it to work. I can read all my Signals but I cant set them.

s = peripheral.wrap("bottom")

Read:

s.get(10,10,10) = blinkRed

Set:

s.set("green",10,10,10) = nothing it ist still blinking

(I linked the Signal and the controller)

I'am useing the direwolf pack.

Any Ideas?

You got the 1000ty reply! Gratz!

#1003 Timeslice

  • New Members
  • 1 posts

Posted 07 June 2013 - 09:05 AM

Would you consider changing the standard level charge station recipe so that it doesn't use components that are unavailable to Buildcraft and Thermal Expansion?

#1004 RichardG867

  • Members
  • 196 posts

Posted 07 June 2013 - 11:54 AM

There's a BC recipe I never bothered to screenshot. 3.3 should have a TE recipe too.

3.3d released, just bugfixes! But most importantly I finally fixed speech not working for some users.

#1005 eyeonus

  • Members
  • 13 posts

Posted 07 June 2013 - 01:44 PM

Still getting the exact same error with 3.3d:
Spoiler

The location of the two files it's not finding:
Posted Image

#1006 RichardG867

  • Members
  • 196 posts

Posted 07 June 2013 - 02:23 PM

I just pushed an updated 3.3d which should force it, if not, print even more info.

#1007 eyeonus

  • Members
  • 13 posts

Posted 07 June 2013 - 02:38 PM

It looks like that may have done it. I haven't actually tested the speech yet, but I'm not that or any other error in the FML log anymore.

#1008 MomoNasty

  • New Members
  • 1 posts

Posted 08 June 2013 - 12:46 AM

Hey for some reason chunk loader module recipe is not showing up. Its enabled in config and I have railcraft 7.2.1.0

Edit: Would it be possible to add bc/te recipes for the higher tiers of the charge station? I dont have ic2 in my instance, so i had to spawn them in :/

#1009 Jarin

  • New Members
  • 2 posts

Posted 08 June 2013 - 02:47 AM

Hey, I'm trying to use the Thaum Scanner upgrade to read the levels of my local aura node. From the description, it seems like getAuraNode() should return a table, but it's just returning the integer "6997" instead. MiscPeripherals 3.1, Thaumcraft 3.0.3. (Current recommended versions for Direwolf20 Modpack on FTB). Am I doing something wrong here?

m=peripheral.wrap("right")
node=m.getAuraNode()

Using print(node) returns "6779" while a table-printing pairs loop tosses an error that table was expected, integer was returned.

Edit: Clueless. I like the newbie description here.

#1010 RichardG867

  • Members
  • 196 posts

Posted 08 June 2013 - 08:33 AM

The feature you have requested is not available for your version of Minecraft. Please try again later.

#1011 Jarin

  • New Members
  • 2 posts

Posted 08 June 2013 - 12:31 PM

Nuts, that's what I was afraid of. :(

#1012 iconmaster

  • Members
  • 17 posts

Posted 08 June 2013 - 07:48 PM

It seems when I try using the ME Bridge to craft things, I always get an error message like this:

lua:56: 2

This isn't a very helpful error message, to say the least. Am I doing anything wrong? I'm doing it like this:

ae = peripheral.wrap("front")
ae.craft(1,64)


#1013 Chaos_Therum

  • Members
  • 5 posts

Posted 09 June 2013 - 01:42 AM

So I'm trying to change the frequency of a tesseract and I can't seem to do it I used
p = peripheral.wrap("front")
turtle.select(16)
turtle.place()
p.setFreq(1)
sleep(5)
turtle.dig()
and all I get back is some weird error code any help would be great

#1014 huadianz

  • New Members
  • 1 posts

Posted 10 June 2013 - 07:51 PM

I can't seem to craft the advanced or higher charging stations. I have IC2_lf build 348, but the recipe doesn't show in NEI and if I try to craft it manually the recipe also doesn't appear.

#1015 theflogat

  • New Members
  • 1 posts

Posted 12 June 2013 - 11:50 AM

I have written a cool program for the smart helmet

tArgs={...}
check=true
argNum=2
helmet=peripheral.wrap("back")
local text="Sender:"
function checkArg(Args)
if Args==nil then return false end
end

if tArgs[1]==nil then tArgs[1]="I have nothing to say!"
else
while check do
  check=checkArg(tArgs[argNum])
  argNum=argNum+1
end
end
for i=1,argNum do
if tArgs[i]==nil then
else
  text=text.." "..tostring(tArgs[i])
end
end
helmet.send("smartHelmet",text)
print("You sent: "..text)


#1016 KFAFSP

  • Members
  • 42 posts
  • LocationGermany

Posted 12 June 2013 - 02:52 PM

I've searched a lot online, but I still didn't figure out anything about the Iron Noteblocks capability to, appearantly, .playSound(). It is listed as a valid peripheral method, but of course nothing more. It is not mentioned in the wikis nor here. The search also doesnt bring up anything. If someone had i little more detailed information on the matter, I would appreciate their answer. Thanks.

#1017 dxbydt

  • Members
  • 4 posts

Posted 12 June 2013 - 06:49 PM

Has anyone tried making an Advanced Charge Station or better? I'm using FTB 1.5.2 with MiscPeripherals 3.3 and the recipes doesn't work.

#1018 CrissHill

  • Members
  • 3 posts

Posted 13 June 2013 - 02:07 PM

View Postdxbydt, on 12 June 2013 - 06:49 PM, said:

Has anyone tried making an Advanced Charge Station or better? I'm using FTB 1.5.2 with MiscPeripherals 3.3 and the recipes doesn't work.

I'm wanting this to be fixed also!

#1019 Blacksun

  • New Members
  • 2 posts

Posted 14 June 2013 - 08:24 AM

Hello there !
can you help some random newbie with question how to get messaged due to chat box ?
i tried msg=n.chat but that returns nil (n is wrapped peripheral). How to get the message properly?

#1020 CoderPuppy

  • Members
  • 121 posts

Posted 14 June 2013 - 10:35 AM

Try:
_, player, msg = os.pullEvent('chat_message')






4 user(s) are reading this topic

0 members, 4 guests, 0 anonymous users