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 - NecroBumpist

Pages: 1 ... 4 5 [6] 7 8 ... 10
76
Casio PRIZM / Re: Stock Craze: a casio game
« on: September 29, 2011, 07:10:03 pm »
I support boot2490's request :)

And yes, I will be doing this specifically for TI-NSpires (though since I am without a CX, I will forgo color)

77
Casio PRIZM / Re: Stock Craze: a casio game
« on: September 28, 2011, 09:32:57 pm »
Oooh, me likey.
I'm tempted to try this in Lua!

Not sure if I'll try to keep mine similar to yours (if you post more detail :)) or if I'll go off and make my own UI and other st00f.

Spoiler For realization:
Holy crap, this is the first time I'll be programming in like 5 weeks. Freaking school, taking up all my time  :'(

78
Miscellaneous / Re: What State/Province/Country do you live in?
« on: September 18, 2011, 01:04:20 am »
Texas.
Not far from TI's head quarters.

ujelly?

79
Miscellaneous / Re: Political party?
« on: September 17, 2011, 08:30:43 pm »
>devoting yourself to a single political party
I seriously hope you guys don't do this.

80
TI-Nspire / Re: Pseudo-3D engine for the TI-Nspire using Lua
« on: September 13, 2011, 09:09:58 pm »
Nice!
How many FPS does it get ?

81
Lua / Re: Exact Lua
« on: September 12, 2011, 07:36:10 pm »
If you need more accuracy than Doubles can offer, you're going to have to create your own layer of abstraction.
This might be something like a Big Number library, or a complex number library.

82
Lua / Re: Lua problems and bugs
« on: September 08, 2011, 11:12:49 pm »
I found another problem.
I noticed that we can't use functions like that : function foo(...) return unpack(arg) end.
Maybe that's because of the Lua version...

Yes, TI has disabled old Lua 5.0 compatible VARARGs.
Not sure why, I always thought that it was a cool feature.

83
Ndless / Re: Ndless 3 and access to Wireless
« on: September 08, 2011, 10:52:19 pm »
I do not approve of this title.
It has mislead me, and caused me disappointment.

I am not amused :(

84
Introduce Yourself! / Re: Hajimemashite~
« on: September 02, 2011, 07:40:45 pm »
Never enough peanuts, eh?

Never ever.

Welcome to Omnimaga!

Lua is a great language to learn, it's relatively simple, but extremely flexible in its design.
You'll have a great time learning it :)

Spoiler For The Title:
i c what u did there

85
TI-Nspire / Re: Lua Monopoly
« on: September 02, 2011, 07:29:00 pm »
I can't wait to try this :)
I hope things work out well for your endeavor!

86
Lua / Re: Lua Q&A
« on: August 29, 2011, 06:34:43 pm »
pianoman, have you tried adding cursor.show() to on.draw() ?

87
Miscellaneous / Re: Hurricane Irene
« on: August 29, 2011, 12:41:17 am »
I wasn't affected by Irene.
I'm down by the gulf of mexico, preparing for the real hurricanes to come this season.

Spoiler For My opinions on the matter:
Irene got way too much media coverage


Spoiler For The News Channels' Reaction:
ZOMG THE HURRICANE IS COMING TOWARDS THE STUDIO, LET'S ONLY AIR NEWS ABOUT THIS CATEGORY ONE HURRICANE

88
Lua / Re: Lua Q&A
« on: August 28, 2011, 11:25:53 pm »
You could use timers.

Code: [Select]
-- since I don't know if you can pass the on.timer() function endless arguments, we'll store them in a local

local timerFunction;

function on.timer()
    timer.stop();
    assert(timerFunction)();
end

local function wait(s, f)
    timerFunction = f;
    timer.start(s);
end

wait(1, function()
    -- whatever you want to do in 1 second
end)

89
Lua / Re: Lua Q&A
« on: August 28, 2011, 08:30:55 pm »
Simple question: Why doesn't this work?

The simplest questions deserve the simplest answers.
You're attempting to write to a table that doesn't exist.

Assuming gamedata is just an empty table, this code should work:

Oh yeah, I removed some redundancies.
Code: [Select]
function creategamedata()
    screen = "loading"
    local rand = math.random;

    for t1 = 1, gamelen do
        local v = {};
        gamedata[t1] = v;

        for t2 = 1, t1 do
            v[t2] = rand(1,4)
        end
    end

    game()
end

90
Miscellaneous / Taylor Mali - God Tier Poet
« on: August 28, 2011, 01:35:01 am »
So, I somehow was linked to one of Taylor Mali's poetry videos on youtube, and I was absolutely hooked.
I think he's amazing, but I want to hear what you guys think :)

here's a list of some of his videos I've watched on youtube:

Spoiler For Spoiler:












Pages: 1 ... 4 5 [6] 7 8 ... 10