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

Pages: 1 ... 48 49 [50] 51 52 ... 80
736
Lua / Re: Checkers Lua
« on: January 08, 2012, 05:42:32 am »
Code: [Select]
function pause(pauselength)
local starttimer = timer.getMilliSecCounter()

while timer.getMilliSecCounter() < starttimer + pauselength*1000
end

end

this should work i think
call it after every movecalculation with
Code: [Select]
pause(1)
this makes the pause 1 second

ninja'd by adriweb :(

737
News / Re: TI-84 Plus Pocket SE
« on: January 08, 2012, 04:07:23 am »
maybe such an application like the 84+ had, which translated the ui into the language you wanted..

738
Lua / Re: Updating WZGUILib
« on: January 08, 2012, 03:07:36 am »
nice :) maybe you should adapt all the downloads in this thread by the new one, so that noone comes to sit with the old one, thinking he has the new

nice to see everything worked out fine

739
TI Z80 / Re: Z80 calculators CAS project
« on: January 07, 2012, 03:47:55 pm »
so you mean writing your own cas, based on completely free pc version? those will need a total rewrite xs

and do you mean wandering like a wizard wand, or like walking around like a hobo? lol j/k

740
Lua / Re: Updating WZGUILib
« on: January 07, 2012, 03:43:18 pm »
uh, is it a mystery? or you just didn't tell it?

741
TI Z80 / Re: MiniTale 83+ Port
« on: January 07, 2012, 01:57:49 pm »
and all that for 2 respect points lol keep on drawing saint xp are you gonna make the title too? that would be awesome

742
Humour and Jokes / Re: If there was tech support in botswana...
« on: January 07, 2012, 01:54:19 pm »
ask someone else to scratch it

i can't connect an external mouse to my nspire

743
TI Z80 / Re: MiniTale 83+ Port
« on: January 07, 2012, 01:52:32 pm »
wow, you're really good at this :) good job, this might become a really great game..

744
Lua / Re: Updating WZGUILib
« on: January 07, 2012, 01:49:59 pm »
how do you mean? like you cannot close an unactive window?

745
Other Calculators / Re: Should I get a nspire?
« on: January 07, 2012, 01:12:10 pm »
@Kjelddy you can choose to ste it on a real click, or on a touch..

and for that usage in class i'm lucky :) my teachers can't work with it, and i have to show them the functions and usage of it..
maybe you've seen it or not, but in the download section there's a program i made for reflection of light (physics)
so i had a question about the lesson and went to the teacher with that program running to show him what was my problem.
when i showed it he was like Ö and it took wuite a while before he started answering because he was fascinated about the fact that what i made was possible with that calc..

The teacher didn't even know... Ö

746
Other Calculators / Re: Should I get a nspire?
« on: January 07, 2012, 12:49:21 pm »
i'm not saying i'm having troubles with it, you get used to it, but still it isn't the oldschool fashioned way like the 84+..

747
Lua / Re: Checkers Lua
« on: January 07, 2012, 12:46:09 pm »
this is the moment you wish lua was in loops and not event-based, just like "all" (read: a lot) other languages..
and indeed, 3 kb isn't that much
let us know if it works :)

748
TI 68K / Re: DOA
« on: January 07, 2012, 12:40:48 pm »
i watched a movie too today, harry potter instead of studying lol

and i would love to help, but i only have 84+ and nspire, so i won't be able too, i'm sorry :s

749
Other Calculators / Re: Should I get a nspire?
« on: January 07, 2012, 12:27:13 pm »
the cx' buttons suck.. really, they are so annoying, you don't feel like "i just pushed a button" when you push a button, which you have with the 84+

the touchpad isn't good either, it gets activated when you don't need it, but when you need it, you can sit there moving you finger over the touchpad in all possible ways, but the mouse won't appear xs

but i like the OS's layout, it's really good imo, it's very light-weight, and the screen is good..
lua is developping, but don't count to much on ndless, since it might be broken up with the same OS update the lua gets improved, so it might be a choice between a better lua interpreter, or ndless.. a hard choice, for which i probably make the decision towards the lua

that's it i think :)

750
Lua / Re: Checkers Lua
« on: January 07, 2012, 12:18:17 pm »
euh, of course that keeps stuck in an intinite loop.. you don't change anything, don't you?

do this
Code: [Select]
pause = false
function to calculate move starts here
*here ends the code to 'calculate' the move*
pause = true
timer.start(1)
here ends the function to calculate move

function on.timer()
timer.stop()
pause = false
platform.widow:invalidate()
end

Pages: 1 ... 48 49 [50] 51 52 ... 80