- ComputerCraft | Programmable Computers for Minecraft
- → ReBraLaCC's Content
ReBraLaCC's Content
There have been 76 items by ReBraLaCC (Search limited from 10-February 22)
#260005 Rate the Above User's Avatar!
Posted by
ReBraLaCC
on 28 September 2016 - 10:31 AM
in
Forum Games
#254312 CCEmuRedux - ComputerCraft Emulator Redux
Posted by
ReBraLaCC
on 20 June 2016 - 11:11 AM
in
General
Xtansia, on 20 June 2016 - 09:38 AM, said:
Ahh okay, I'll see it popping up soon then
Maybe a suggestion for it, add a place with an interface for modems and monitors... doing it manually is kinda hard sometimes
#253195 Pine3D - Best performing 3d graphics library for CC!
Posted by
ReBraLaCC
on 06 June 2016 - 08:53 PM
in
APIs and Utilities
#255504 Circles 2 - A Simple API that draws circles
Posted by
ReBraLaCC
on 04 July 2016 - 08:00 PM
in
APIs and Utilities
function filledCircle(rad,centerx,centery,color) for i = 1,rad do draw(rad-i+1,centerx,centery,color) end end
maybe it works but its a prototype
nice api!
#260312 TT.OS - The ultimate OS in CC!
Posted by
ReBraLaCC
on 06 October 2016 - 07:09 PM
in
Operating Systems
#260051 returns of os.loadAPI()
Posted by
ReBraLaCC
on 29 September 2016 - 03:46 PM
in
Ask a Pro
here was the code i had:
local gamePath = "Jetpack/"
local apiPath = gamePath.."api/"
apis = {"log"}
os.loadAPI(apiPath.."log")
local add = log.add
log.set(gamePath.."logs","log-"..os.day(),".gl")
function loadAPIs()
str = ""
add("Loading APIs...")
for k,v in pairs(fs.list(apiPath)) do
if v ~= "log" then
os.loadAPI(apiPath..v)
table.insert(apis,v)
end
total = k
end
for k,v in pairs(apis) do
str = v..","..str
end
add("Loaded:",str)
add("Total APIs: #"..total)
end
loadAPIs()
maybe i could just make a function in each API to get the version but i was wondering if there was a way
-- ReBraLa
** Indention was better, website edited it like this
*** Have a return in the API as
local version = 1.3213123 return version
#260055 returns of os.loadAPI()
Posted by
ReBraLaCC
on 29 September 2016 - 04:14 PM
in
Ask a Pro
ReBraLaCC, on 29 September 2016 - 04:01 PM, said:
Solved the getting version with this
local file = fs.open(gamePath.."api-versions","r") local versions = textutils.unserialise(file.readAll()) file.close() function getVersion(api) if versions[api] then return versions[api] else return 0 end end
#260054 returns of os.loadAPI()
Posted by
ReBraLaCC
on 29 September 2016 - 04:01 PM
in
Ask a Pro
KingofGamesYami, on 29 September 2016 - 03:54 PM, said:
Okay, I'll think about something! question know any reason why it won't add the str from
for k,v in pairs(apis) do
str = v..","..str
end
add("Loaded:",str)
add("Total APIs: #"..total)
to the log?
#254311 2.5D paint images
Posted by
ReBraLaCC
on 20 June 2016 - 09:47 AM
in
Ask a Pro
Bomb Bloke, on 20 June 2016 - 07:12 AM, said:
But converting the images to CC compatible files? I have a program for it, but it only it only works with monitors and work with bLittle API, I am going to use it... if you're okay with it... Should be possible then... only need to find out how the positions work exactly
#254300 2.5D paint images
Posted by
ReBraLaCC
on 20 June 2016 - 04:56 AM
in
Ask a Pro
Bomb Bloke, on 20 June 2016 - 12:57 AM, said:
You'll have trouble making them look decent on a regular CC display, though. A decent-sized external monitor could pull it off (meaning your game would need to be entirely mouse-driven), but otherwise you just won't have sufficient display resolution. You'll also need to account for whether you're using "full sized" characters per "pixel" (in which case you'll want to squash your diamond to a third of its width), or whether you're using the teletext drawing characters (in which case half is probably best).
Also don't try to draw them in CC's Paint. Use some external application and then port the graphics into CC later.
Okay, well with what external program will i be able to do this exactly?
Lignum, on 19 June 2016 - 08:14 PM, said:
I'll look into it when i get back from school
#254269 2.5D paint images
Posted by
ReBraLaCC
on 19 June 2016 - 05:15 PM
in
Ask a Pro
H4X0RZ, on 19 June 2016 - 03:57 PM, said:
Isometric is then the 'style' i'm looking for because... well i'll just link the game im creating iTunesPage
I will just made it 2D i guess and don't have a generated world or something, i'll need to figure this out ;3;
#LuaWhyBeSoHardSometimes
#254251 2.5D paint images
Posted by
ReBraLaCC
on 19 June 2016 - 03:52 PM
in
Ask a Pro
H4X0RZ, on 19 June 2016 - 03:39 PM, said:
Unless that's not the kind of 2.5D you meant.
Sadly have to say that it's 2D, because 2.5D is from an angle
Another image
Maybe now you know more
It doesnt matter if it's not possible with maybe a program, ill just look something else up
#259566 LDDFM - An API-based file manager for your programs!
Posted by
ReBraLaCC
on 19 September 2016 - 01:27 PM
in
APIs and Utilities
- ComputerCraft | Programmable Computers for Minecraft
- → ReBraLaCC's Content



