- Sky
- Blueberry
- Slate
- Blackcurrant
- Watermelon
- Strawberry
- Orange
- Banana
- Apple
- Emerald
- Chocolate
- Charcoal
-
Content Count
45 -
Joined
-
Last visited
-
Days Won
1
Everything posted by Cat
-
Gogo utilities. Fairly simplistic.
-
Shouldn't be slow at all honestly unless there was an issue with CPU usage and OC. It should be almost instantaneous; after all NP++ and VS can do it. On Key Press update string and result=searchSuggestions(string) end On Draw Event do setColor(255,255,255) write(string) if result ~= "" then setColor(80,80,255) write(result) setColor(255,255,255) end I am here to have discussion, I have my own project too (it's in C#). I'm also here to give suggestions. If you feel like trying to implement, feel free.
-
Sounds good. (wonder if this post belongs elsewhere due to no code...) Here is one of my suggestions, how about a fill-in suggestion thing as you type? Like: I'm typing in - os.e and the suggestion would be os.execute and if I press ENTER it would make the input os.execute. (A general idea on display: os.execute)
-
Nice! I'll take a look at the Pure Lua server and also take a look at cross-server communications because That is just simply Fun! Might have to make a multiplayer game for OC now... hm.
-
Is there an IRC based program for OC in its standard API? I'm a total noob to IRC.
-
More programs on the forum = Better though :c AfterLifeLochie hates my guts, but helped me out with deleting my entirety of accounts on the ComputerCraft.info website when I needed it deleted. He is fairly nice, hosted Epic's CCNet for free too. He just... gets upset really easily.
-
Simple program debug, looks correct but won't run
Cat replied to redstorm64's question in Programming
You caught that? Whelp, I'm not good at debugging without my loyal NP++ -
That's the only thing I know that can do that in CC anyways. I don't know much about the OC networking API.
-
Simple program debug, looks correct but won't run
Cat replied to redstorm64's question in Programming
Only *possible* problem in the program I see is "local mode" on Line 30. Maybe try local mode = "" or something similar. I've read through this code 6 times and can't find anything else *Possibly* wrong. I don't really understand the local mode part of the code in a sense of debugging, but that looks like the only thing I don't understand. Try it and tell me the results, thanks. -
Could just make a small edit to your topic or to your program.
-
Ok, that's a bit useful. I might test this API out later by creating an experimental Beatmania game.
-
Still not really explained from my end. Oh well. "Configuration and programming", meaning, changing the pitch and also setting up music and stuff like that, yes?
-
Disclaimer: I read this thread. Can you please tell me what this does? Giving "support to programs" is rather vague.
-
Here is a link to the Github issue Ender mentioned: https://github.com/MightyPirates/OpenComputers/issues/637
-
Nice work. Using computer.beep might be sloppy sound wise but hey, it's a bit creative to use what you have to make things fun.
-
Thanks, I'll talk to someone on IRC about it. Hopefully can get someone to take a look at it better than I can.
-
Thanks for the links. I know there is a Love2D emulator for CC and heard some talk about possible emulation for OC too, guess not then.
-
Dang, that'd be a nice additional feature for making graphics. I use that in Love2D a lot for my Button APIs. Isn't there a Love2D OC thing out or something? I remember reading something about that.
-
Seems simplistic. A button API would be quite simple to make since all you're doing is this little bit of math: if (mouse.x >= button.x and mouse.x <= button.x+button.w) and (mouse.y >= button.y and mouse.y <= button.y+button.h) then return true else return false end Honestly, if you want to make this improved, you could go with better Button graphics. Such as background-image, text-color ( you might already have this ), border-color, border-size, also if mouse.x is able to be checked without a click event, you could do Button highlights as people move their mouse over t
-
Have you tried following the robot around and watching for When it disappears? From how you written the post I'm presuming you ran a program that makes the robot move accordingly to the program and will go around then come back. If they Do keep coming back, either it's something with your program, or it's something to due with chunk loading.