Alice Community  

Go Back   Alice Community > Alice 2 > Works-In-Progress

View Poll Results: What type of games do you want me to make?
Adventure 6 37.50%
Action 5 31.25%
Shooter 7 43.75%
strategy 5 31.25%
Multiple Choice Poll. Voters: 16. You may not vote on this poll

Reply
 
Thread Tools Display Modes
madden works
Old
madden
Senior Member
 
madden's Avatar
 
Status: Offline
Posts: 322
Join Date: Mar 2006
Location: My own little world 0.0
Default madden works - 04-21-2007, 06:40 PM

ok here is my first one, I can't seem to figure out how to make the knight turn 1.0 meters forward when he touches the sand and how to turn 1.0 meters backwards when he touches the grass. can somebody help me?

thanks

P.S NO I DO NOT STUFF LIMES UP MY NOSE SO STOP ASKING ME THAT!!!!
Attached Files
File Type: a2w knight DEMO.a2w (11.70 MB, 1139 views)


Check out my new website - http://www.freewebs.com/maddenuser/

Special thanks to the people who are supporting me...
Drjim, rich0e0rick, Chris101b, ZED, jediaction, x2495iiii, ("Robby"), gabe, JustasM, and Shadow Sovereign.


Games...

CSS - a sidescroler/adventure game.
CASE 1.01 - a escape the room/adventure game.
In the Black and White - a shooter/adventure game.
Field Of Wonder - a adventure game
C.R.E.S - a action/adventure game.

Can you eat 10 cookies in 5 seconds?
I did.
   
Reply With Quote
I can eat even more cookies.
Old
Shadow Sovereign
Guest
 
Status:
Posts: n/a
Talking I can eat even more cookies. - 04-23-2007, 07:48 AM

Quote:
Originally Posted by madden View Post
P.S NO I DO NOT STUFF LIMES UP MY NOSE SO STOP ASKING ME THAT!!!!
lmao Best thing I've heard all week, man.
   
Reply With Quote
Old
RMax
Guest
 
Status:
Posts: n/a
Default 04-26-2007, 04:01 PM

Quote:
Originally Posted by madden View Post
ok here is my first one, I can't seem to figure out how to make the knight turn 1.0 meters forward when he touches the sand and how to turn 1.0 meters backwards when he touches the grass. can somebody help me?

thanks

P.S NO I DO NOT STUFF LIMES UP MY NOSE SO STOP ASKING ME THAT!!!!

Well, I've got part of it to work..

I'm still working on a few minor bugs/glitches in the system, though.

I've got to work tonight, but I'm free for the weekend, I should be able to get some kind of useful code done late tonight or over the weekend. ^.^

(It benefits me just as much, for it will give me a few useful prototypes the next time I need 'em. )

BTW, I love your water/beach effects!

~~RLM
OpenSource FTW.
   
Reply With Quote
Thanks!
Old
madden
Senior Member
 
madden's Avatar
 
Status: Offline
Posts: 322
Join Date: Mar 2006
Location: My own little world 0.0
Default Thanks! - 04-26-2007, 07:23 PM

thanks for helping
B.S Just wanted to see if anybody noticed the B


Check out my new website - http://www.freewebs.com/maddenuser/

Special thanks to the people who are supporting me...
Drjim, rich0e0rick, Chris101b, ZED, jediaction, x2495iiii, ("Robby"), gabe, JustasM, and Shadow Sovereign.


Games...

CSS - a sidescroler/adventure game.
CASE 1.01 - a escape the room/adventure game.
In the Black and White - a shooter/adventure game.
Field Of Wonder - a adventure game
C.R.E.S - a action/adventure game.

Can you eat 10 cookies in 5 seconds?
I did.

Last edited by madden; 04-28-2007 at 06:09 PM.
   
Reply With Quote
Rider
Old
madden
Senior Member
 
madden's Avatar
 
Status: Offline
Posts: 322
Join Date: Mar 2006
Location: My own little world 0.0
Default Rider - 05-08-2007, 02:59 PM

In RIDER you're a car you jump over hills and discs, but I want to know how to time it.

up arrow=forward
space=jump
1=music

P.S its the little things in life, like the fries I just pulled out of my nose
Attached Files
File Type: a2w DRIVER.a2w (8.95 MB, 712 views)

Last edited by madden; 05-08-2007 at 03:03 PM.
   
Reply With Quote
Old
RMax
Guest
 
Status:
Posts: n/a
Default 05-09-2007, 01:25 AM

Hey madden,

I just wanted to let you know I'm still working on the knight demo.

I've pretty much have everything solved, but I have a single question..

So far, the way to 'implement' your plan into the project is simple:

Use a While (True) Loop with the 'Knight is above (groundx)' for the boolean operator. This will perform a check to see if the knight is above that particular ground object. Such as ground or ground2 or ground3, etc.
If true, you could have the body of while flag a variable for the movements based on a property (list) of world with numerical only values..

My question is whether you want the object (knight) to move at x% speed on the different ground objects, which is what I'm thinking.. OR if you wanted it differently, then let me know!!! xD

And I've already gotten the components functional in the program.
(I just want to know if that is what you were needing done with it.)

~~RLM

PS>>
Program basics:
While (True) 'Knight is above ground'
Set MoveX1 (variable) to (object) 0 groundMovements (variable-list)
While (True) 'Knight is above ground1'
Set MoveX1 (variable) to (object) 1 groundMovements (variable-list)
While (True) 'Knight is above ground2'
Set MoveX1 (variable) to (object) 2 groundMovements (variable-list)

The 'movement' (distance) codes for the walking must be changed to the following:
Knight move forward (5 * MoveX1) seconds..
Knight move forward (10 * MoveX1) seconds...
Knight move forward (5 * MoveX1) seconds..
(All the other values should be kept the same, only the distance value needs to have the variable included.)

As for the 'groundMovements' (list) property of world, I would recommend using the following:
Object 0: 1/3
(Speed reduced to 33% when implemented. Recommended for the water.)
Object 1: 2/3
(Speed reduced to 67% when implemented. Recommended for the sand.)
Object 2: 1 (3/3)
(Object at normal speed. Recommended for the grass.)

These changes should make your program slow the knight object based on which terrain it is above..

Isn't the prettiest, but it shows a proof-of-concept, I believe.

--------------------------------------------------------
BTW:
I've already got the 'timer' thing for your 'Driver' project done. <.<
Took like, 3-5 minutes..

Just look at the 00_00.Time code.
I didn't see anything there for the timer, so I just built it from scratch.
It should auto-update the variable every second and display the new variable.
So far, it ONLY does full seconds, no 1/2 or 1/4 seconds, though I'm pretty sure that'd be simple enough to work..

Program basics:
Loop (Infinity)
Wait 1 Second
Increment Timer (variable) by 1
00_00 set text to Timer as a string
EndLoop

If you need something 'more advanced' than that, I'm sure I can try sometime later to help with it.

~~RLM
*Attached: Driver(TimerRLM).a2w
Attached Files
File Type: a2w Driver(TimerRLM).a2w (8.93 MB, 741 views)

Last edited by RMax; 05-09-2007 at 01:49 AM.
   
Reply With Quote
Old
madden
Senior Member
 
madden's Avatar
 
Status: Offline
Posts: 322
Join Date: Mar 2006
Location: My own little world 0.0
Default 05-27-2007, 06:35 PM

Quote:
Originally Posted by RMax View Post
Program basics:
Loop (Infinity)
Wait 1 Second
Increment Timer (variable) by 1
00_00 set text to Timer as a string
EndLoop

If you need something 'more advanced' than that, I'm sure I can try sometime later to help with it.
yes I do, but I just figured it out

P.s thanks

mr. cookie would like a word with you


Check out my new website - http://www.freewebs.com/maddenuser/

Special thanks to the people who are supporting me...
Drjim, rich0e0rick, Chris101b, ZED, jediaction, x2495iiii, ("Robby"), gabe, JustasM, and Shadow Sovereign.


Games...

CSS - a sidescroler/adventure game.
CASE 1.01 - a escape the room/adventure game.
In the Black and White - a shooter/adventure game.
Field Of Wonder - a adventure game
C.R.E.S - a action/adventure game.

Can you eat 10 cookies in 5 seconds?
I did.
   
Reply With Quote
Old
madden
Senior Member
 
madden's Avatar
 
Status: Offline
Posts: 322
Join Date: Mar 2006
Location: My own little world 0.0
Default 05-29-2007, 12:36 PM

ADVENTURE IS WINING SO I'LL MAKE AN ADVENTURE GAME

p.s sorry about the caps


Check out my new website - http://www.freewebs.com/maddenuser/

Special thanks to the people who are supporting me...
Drjim, rich0e0rick, Chris101b, ZED, jediaction, x2495iiii, ("Robby"), gabe, JustasM, and Shadow Sovereign.


Games...

CSS - a sidescroler/adventure game.
CASE 1.01 - a escape the room/adventure game.
In the Black and White - a shooter/adventure game.
Field Of Wonder - a adventure game
C.R.E.S - a action/adventure game.

Can you eat 10 cookies in 5 seconds?
I did.
   
Reply With Quote
Old
madden
Senior Member
 
madden's Avatar
 
Status: Offline
Posts: 322
Join Date: Mar 2006
Location: My own little world 0.0
Default 07-06-2007, 01:18 PM

Wow, works-in-progress isn't doing well at all...

P.s Ooo! Ooo! I have a joke,

You are so stupid...
When you ran into a brick wall you said, "where is the ice cream"


Check out my new website - http://www.freewebs.com/maddenuser/

Special thanks to the people who are supporting me...
Drjim, rich0e0rick, Chris101b, ZED, jediaction, x2495iiii, ("Robby"), gabe, JustasM, and Shadow Sovereign.


Games...

CSS - a sidescroler/adventure game.
CASE 1.01 - a escape the room/adventure game.
In the Black and White - a shooter/adventure game.
Field Of Wonder - a adventure game
C.R.E.S - a action/adventure game.

Can you eat 10 cookies in 5 seconds?
I did.
   
Reply With Quote
Old
islandfever
Guest
 
Status:
Posts: n/a
Default 07-23-2007, 09:40 PM

Where'd you download the nice Zelda music? I can't download anything like that until someone approves a certain site.................. please?
   
Reply With Quote
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump



Copyright ©2024, Carnegie Mellon University
Alice 2.x © 1999-2012, Alice 3.x © 2008-2012, Carnegie Mellon University. All rights reserved.