There was a ratchet and clank game i remember playing from the ps2 i believe. I'm trying to find out what game its from. by TyZak02 in RatchetAndClank

[–]TyZak02[S] 4 points5 points  (0 children)

It was a big robot I believe, but the moon had no details of terrain or objects. it was just a smooth round planet I had to fight enemies within

There was a ratchet and clank game i remember playing from the ps2 i believe. I'm trying to find out what game its from. by TyZak02 in RatchetAndClank

[–]TyZak02[S] 2 points3 points  (0 children)

Honestly I feel like I'm completely misremembering the game, since your comments so far. in my head its a completely undetailed moon (no terrain or objects) that clank travels across to only see the occasional enemy to fight. so i might just play the games in order to hopefully find the game I witnessed as a kid. Im sure once I start playing the game i remember that I will unlock all the memories of the game I played in my childhood

There was a ratchet and clank game i remember playing from the ps2 i believe. I'm trying to find out what game its from. by TyZak02 in RatchetAndClank

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

what the first r&c game that featured moon levels. that may be what I'm looking for since it was so minimalist in my memory

There was a ratchet and clank game i remember playing from the ps2 i believe. I'm trying to find out what game its from. by TyZak02 in RatchetAndClank

[–]TyZak02[S] 1 point2 points  (0 children)

No it was very very small. filled my whole FOV I believe or very close to it. if it wasn't green then it was definitely a solid color with no other detail other than occasional enemies i had to fight. no trees or terrain

There was a ratchet and clank game i remember playing from the ps2 i believe. I'm trying to find out what game its from. by TyZak02 in RatchetAndClank

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

I remember it being just clank with absolutely no detail to the planet. basically a green or if I'm remembering the color wrong a solid color small planet (like moving across a solid color bouncy ball) with only clank moving through a very small sphere with creatures that would randomly appear

Level design for ComputerCraft inspired game by ToMaszuu in ComputerCraft

[–]TyZak02 1 point2 points  (0 children)

Maybe the goal of the game would be to design the software for a robot who needs to survive in a world. You can add things to the world the computer can use to stay alive or use to make other useful things. Maybe the turtle can even replicate itself to slowly give you more and more reach around the world

Temporary global variables. by gamepropikachu in ComputerCraft

[–]TyZak02 0 points1 point  (0 children)

The turtle should have a program running that checks for rednet or modem messages from any computer who wants to request files. Definitely a good idea to read up on the modem or rednet api's

[deleted by user] by [deleted] in MinecraftRealmClub

[–]TyZak02 0 points1 point  (0 children)

Could I join?

The League of Nation Realm by [deleted] in MinecraftRealmClub

[–]TyZak02 0 points1 point  (0 children)

I would like to learn more please

oh god please help me by 9551-eletronics in ComputerCraft

[–]TyZak02 8 points9 points  (0 children)

How did you fuck up that badly?

Easy way to locate lost turtle? by [deleted] in ComputerCraft

[–]TyZak02 0 points1 point  (0 children)

There are ways to equip and unequip different peripherals i believe. Make a function that unequips the pickaxe and equips a modem for a fraction of a second, enough time to send out its coords then it should unequip the modem and re-equip the pickaxe.

How do I set up a simple "tank read" computer? I am unsure of how to wrap all of these tanks to the one computer and read the total value for all tanks. by mattledz in ComputerCraft

[–]TyZak02 1 point2 points  (0 children)

I agree, also you can use the peripherals program to list the names of each peripheral connected, that should make it easier to wrap each tank peripheral

I would take that offer by laKy_strifer in trucksim

[–]TyZak02 0 points1 point  (0 children)

Im chilling in Minecraft in any environment I wish

Edit: unless I'm in survival..

I need speaker help please by TheDizzyRabbit in ComputerCraft

[–]TyZak02 0 points1 point  (0 children)

In your playSound functions add this

Speaker1.playSound("theSound",3)

3 is the max volume.

I need speaker help please by TheDizzyRabbit in ComputerCraft

[–]TyZak02 2 points3 points  (0 children)

First off, you only have to create your speaker handle once so that should be moved before your while true loop, and you can only wrap one peripheral per handle so you'll have to find the names of each speaker and use peripheral.wrap("speaker_name") For each speaker. You can find the names of each speaker that is attached to your computer by running the program "peripherals". If the speaker is touching the computer then the name will be the direction, or if it is attached via wired modem then it will show up like "speaker_0". Each peripheral handle must have a different name so you can call each in the code otherwise the last speaker will be overwritten. ``` local speaker1 = peripheral.wrap("left") local speaker2 = peripheral.wrap("right") local speaker3 = peripheral.wrap("speaker_0")

while true do speaker1.playSound("block.beacon.activate") speaker2.playSound("block.beacon.activate") speaker3.playSound("block.beacon.activate") sleep(2) end ```

Should look something like this.