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

Pages: 1 ... 227 228 [229] 230 231 ... 239
3421
TI Z80 / Re: Axe parser game
« on: June 18, 2011, 02:42:27 am »
Yeah !!!
I won't be bored in philosophy class !!! Erm, no, that's not what I meant.
You got a +1, and FinaleTI too.

Is it normal that after pushing the button (that breaks every breakable block), keys are inverted ?

3422
Axe / Re: Commands for Axe
« on: June 17, 2011, 11:48:00 am »
Got it to work ! See code and gif below !

How should I write
:Repeat getKey=105:End
in Axe code?
You do
:Repeat getkey(9)
:End

3423
Axe / Re: Commands for Axe
« on: June 17, 2011, 11:04:15 am »
ah yeah, but no.
:...
:Fix
:Text
:Fix
:Circle
:DispGraph
:End

3424
Axe / Re: Commands for Axe
« on: June 17, 2011, 10:59:39 am »
A little precision. You do
:Text(...
:Circle(...
:DispGraph
In this order, not the circle before the text, and not the DispGraph before the circle.

3425
Axe / Re: Commands for Axe
« on: June 17, 2011, 10:53:53 am »
I think this is because of that. You can redraw the circles each time you write the text.

3426
Math and Science / Re: The Four travelers
« on: June 17, 2011, 10:44:58 am »
Do I explain or do you (or do anyone else do) ?
EDIT: I think I'll explain, so.
Well, the only thing is to make C and D cross the bridge together, only one time.
So, AB have to go first, then A or B comes back to give the lamp to C and D so they can cross the bridge and give the lamp to A or B (the one who stayed) so he goes back to look for the last one.
In fact, C can even be slower, his travelling time doesn't count as it is absorbed by D.

I also highly recommend not using Google for the answer.
All I found on Google was the question... (°-.-)

3427
Axe / Re: Commands for Axe
« on: June 17, 2011, 10:37:41 am »
I think it would be better to delete everything after the
:For(U,1,N
.......
:End

(but not the pause and the fix)
If you want, it is your prog, after all.

But why are the circles opened at the right side?
I think it is because of the displayed numbers, they erase the circle

3428
Axe / Re: Commands for Axe
« on: June 17, 2011, 09:56:58 am »
yeah, I was just making it (i made the test in Wabbit then had to make it in 8xp)

3429
Axe / Re: Commands for Axe
« on: June 17, 2011, 09:53:12 am »
It is at the center too, I tried it by forcing F to be 101

3430
Axe / Re: Commands for Axe
« on: June 17, 2011, 09:50:57 am »
Graph Fix 2

3431
Axe / Re: Commands for Axe
« on: June 17, 2011, 09:05:28 am »
Graphic Fixed !
↓ code + gif

3432
Axe / Re: Commands for Axe
« on: June 17, 2011, 08:06:17 am »
Corrected the correction at the previous page
← not so useless in fact
↓ code + prog + gif

3433
Math and Science / Re: The Four travelers
« on: June 17, 2011, 12:50:12 am »
AB     2    →
B       2    ←
CD     10  →
A       1   ←
AB      2   →
Total 17

3434
Axe / Re: Commands for Axe
« on: June 16, 2011, 02:00:06 pm »
ugh... Rewrite everything. Try this one, and tell the others if it worked. I'm going to sleep.  :)
Had to put it in code Quote to put colors

Quote
:.FORCEATT
:Fix 5
:ClrDraw
:DispGraph
:Circle(15,15,10
:Circle(80,15,10
:Text(57,10,("DEF")
:Text(57,75,("OFF")

:Text(10,57,"DEF
:Text(75,57,"OFF

:Line(25,15,30,10
:Line(70,15,65,10
:Line(30,10,45,10
:Line(65,10,50,10
:Line(45,10,47,8
:Line(50,10,48,8
:Line(30,7,65,7
:Line(30,7,28,0
:Line(65,7,67,0
:Line(5,15,0,10
:Line(90,15,95,10
:DispGraph
:rand^1+101→F
:For(U,1,F
:If U≥0 and (U≤9)
:-3→Q
:0→Q
:End
:If U>99
:3→Q
:6→Q
:End
:If U≥10 and (U≤99)
:0→Q
:3→Q
:End
:Fix 1
:Text(44,10-Q,U▶Dec
:Text(10-3-Q,44,U▶Dec
:DispGraph
:Fix 0
:End
:rand^1+101→N
:For(U,1,N
:If U≥0 and (U≤9)
:-3→Q
0→Q
:End
:If U>99
:3→Q
:6→Q
:End
:If U≥10 and (U≤99)
:0→Q
:3→Q
:End
:Fix 1
:Text(44,75-Q,U▶Dec
:Text(75-3-Q,44,U▶Dec
:DispGraph
:Fix 0
:End
:Line(36,60,58,60
:Pt-On(35,62
:Pt-On(35,61
:Pt-On(59,62
:Pt-On(59,61

:Pxl-On(35,62
:Pxl-On(35,61
:Pxl-On(59,62
:Pxl-On(59,61

:Line(89,29,89,61
:Line(89,29,93,29
:Line(94,29,94,61
:Line(89,61,4,61
:Line(91,U,92,U
:DispGraph
:Pause 5000
:Fix 4

3435
Axe / Re: Commands for Axe
« on: June 16, 2011, 01:28:01 pm »
ok, so it turns around, in fact
0,1,2,3,4,...,65533,65534,65535,0,1,2,3,...
                    ↑ unsigned -3
Is that it ?

Pages: 1 ... 227 228 [229] 230 231 ... 239