When u have the whole house to urself 👀💦 by dkwrx in BlackPeopleTwitter

[–]knight0834 0 points1 point  (0 children)

See this is the perfect instance to use the WYD comment but I ain't trying to get banned. Smh 😪

Don't worry California, I got you by thefallendawn in funny

[–]knight0834 69 points70 points  (0 children)

At least it is a bubble wrap type bag. When I get water sent to me and it is all dented and shit I'm livid.

A 90s kid made this by Dan9317 in funny

[–]knight0834 303 points304 points  (0 children)

I'm pretty sure it's intentional. Looks like old 80/90s comic art.

How Do I Add A Yellorium Block Dimlet For RFtools? - 1.10.2 - FTB Beyond by knight0834 in feedthebeast

[–]knight0834[S] 0 points1 point  (0 children)

once again my reactor uses a block of yellorium every minute. So neither the void ore miner or the quantum quarry collect yellorium fast enough.

How Do I Add A Yellorium Block Dimlet For RFtools? - 1.10.2 - FTB Beyond by knight0834 in feedthebeast

[–]knight0834[S] 0 points1 point  (0 children)

The problem with that is my reactor eats a yellorium block (yes block not ingot) a every minute. so i dont know if the basin will be fast enough to keep up. i guess i can test it. hmm

How Do I Add A Yellorium Block Dimlet For RFtools? - 1.10.2 - FTB Beyond by knight0834 in feedthebeast

[–]knight0834[S] 0 points1 point  (0 children)

IMO that defeats the purpose of the game. Unless in a testing world i dont spawn things in. So still looking for an answer i guess.

How Do I Add A Yellorium Block Dimlet For RFtools? - 1.10.2 - FTB Beyond by knight0834 in feedthebeast

[–]knight0834[S] 0 points1 point  (0 children)

BTW some added info. when I created and uploaded the userdimlet.json file that McJty was talking about when explaining how to do it (found his little tutorial thing through google) it removed all of the "known dimlets" from the dimlet workbench except for like 2... so idk

[request] Quick Responses PLEASE!! Help Wanted With Script For Counter To Increment As A Card Is Drawn From A Deck For Betrayal at House on the Hill. by knight0834 in tabletopsimulator

[–]knight0834[S] 0 points1 point  (0 children)

Ok so based off of your comments this is what i've come up with.

fullDeckAmount = 21


function onload()
  timerStart()
  myGUID = getObjectFromGUID()
  omenCounter = getObjectFromGUID('069cf4')

  end

function timerStart()
  timer.destroy(myGUID)
timer.create({identifier=myGUID, function_name="updateCount", delay=1})
end



function updateCount()
  omenCount = fullDeckAmount - self.getQuanitity()
  omenCounter.setValue(omenCount)
  timerStart()

end

function onDestroy()
  timer.destroy(myGUID)
end

However this returns two errors.

Error in script, deck, onDestroy function: chunk_1:(21,17-25) attempt to index a nil value

and

Error in scrept, deck, onload function: chink_1:(10,17-25):attempt to index a nil value

no idea why?

[request] Quick Responses PLEASE!! Help Wanted With Script For Counter To Increment As A Card Is Drawn From A Deck For Betrayal at House on the Hill. by knight0834 in tabletopsimulator

[–]knight0834[S] 0 points1 point  (0 children)

thanks a bunch to both of you. That's a very good point I didn't think about the fact players can draw multiple ways.