Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - epic7

Pages: 1 ... 63 64 [65] 66 67 ... 161
961
Minecraft Discussion / Re: OmniMine
« on: March 28, 2012, 06:55:16 pm »
I can go online, 6pm-8 maybe

Also it says im not whitelisted

962
Minecraft Discussion / Re: OmniMine
« on: March 28, 2012, 01:56:10 pm »
Bump?

963
Minecraft Discussion / Re: Minecraft
« on: March 22, 2012, 05:36:34 pm »
I love computercraft :D

Hellninjas, can I have your server adress? I wanna try flatland survial :P

964
Anybody know of a good way to draw stuff to the screen in nRGBlib?

My current strategy causes everything to blink like crazy.

I do-

Loop
{
Draw object
Pause
Do code stuffs
Draw white over object
Update object's coordinates
}


965
Minecraft Discussion / Re: Minecraft
« on: March 17, 2012, 03:05:02 pm »
Anybody have any reccomendations for 1.2.3 mods that I should get?

966
Art / Re: saintrunner Sprites (my best pxl work)
« on: March 16, 2012, 04:05:10 pm »
I wish I had a spring break now D:

967
Miscellaneous / Re: Rubber Duck Programming
« on: March 13, 2012, 07:45:22 pm »
* epic7 buys a rubber duck

968
Minecraft Discussion / Re: Minecraft
« on: March 12, 2012, 08:23:58 pm »
Anybody want to kill the enderdragon on my server with me?

969
Miscellaneous / Re: Low activity from me
« on: March 11, 2012, 09:29:10 pm »
As you might have noticed I have been much less active since last friday, particularly on OmnomIRC. This is because my computer video card is failing and it will probably be replaced in 2-4 days or so. For now I'm stuck on my iPod touch, which isn't super reliable for typing and due to Omnom freaking out in it someti
es. I should hopefully be active more again near the end of  this week (although by then I'll most likely be starved for some Starcraft II :P)
For me with iPod, Omnom ALWAYS freaks out :P

970
Miscellaneous / Re: What is your avatar?
« on: March 10, 2012, 10:49:04 pm »
Anime eyes~

Also I think you all noticed I am now Rainbow Dash.
Wat?
Is that the name of that horse?

971
Ndless / Re: [nRGBlib] W.I.P - Colorful librairy for Ndless 3.1
« on: March 10, 2012, 10:45:29 pm »
Hm, I'll try it again and I'll show you the error if it fails.

Also, is there a way better than what I currently use to draw things?
My current way is something like:

Loop
{
Draw object
Pause
Do code stuffs
Draw white over object
Update object's coordinates
}

The objects flash a lot with this tho

972
Minecraft Discussion / Re: Minecraft
« on: March 10, 2012, 10:39:27 pm »
Yeah

With the height limit now 256, I built a mushroom tower that goes to 256. From there, I can barely see the clouds :P
It's fun afterwards falling 250 blocks to bedrock

973
Ndless / Re: [nRGBlib] W.I.P - Colorful librairy for Ndless 3.1
« on: March 10, 2012, 02:51:46 pm »
I'd just need to do
yvel=randMinMax(-128, 128)
do do what i need

Makefile
Code: [Select]
GCC = nspire-gcc
LD = nspire-ld
GCCFLAGS = -Os -nostdlib -I"c:/nRGBlib/sdk/include/"
LDFLAGS = -L "c:/nRGBlib/sdk/lib/"
OBJCOPY := "$(shell (which arm-elf-objcopy arm-none-eabi-objcopy arm-linux-gnueabi-objcopy | head -1) 2>/dev/null)"
ifeq (${OBJCOPY},"")
OBJCOPY := arm-none-eabi-objcopy
endif
OBJS = pong.o
DISTDIR = .
vpath %.tns $(DISTDIR)

all: Pong.tns

%.o: %.c
$(GCC) $(GCCFLAGS) -c $<

%.o: %.S
$(GCC) $(GCCFLAGS) -c $<

Pong.tns: $(OBJS)
$(LD) $(LDFLAGS) $^ -o $(@:.tns=.elf) -lRGB
@mkdir -p $(DISTDIR)
$(OBJCOPY) -O binary $(@:.tns=.elf) $(DISTDIR)/$@

clean:
rm -f *.o *.elf
rm -f $(DISTDIR)/Pong.tns

974
Minecraft Discussion / Re: Minecraft
« on: March 10, 2012, 11:52:37 am »
Ah, I was fixing creeper damage in sainrunners place when another creeper came and blew more of it up :P

975
Axe / Re: Seeding the Random Number Generator
« on: March 10, 2012, 11:31:28 am »
I don't think you can seed it...
(i might be wrong tho)

Pages: 1 ... 63 64 [65] 66 67 ... 161