Gamestudio Links
Zorro Links
Newest Posts
loading historical data 1st time
by AndrewAMD. 04/14/23 12:54
Trade at bar open
by juanex. 04/13/23 19:43
Bug in Highpass2 filter
by rki. 04/13/23 09:54
Adding Limit Orders For IB
by scatters. 04/11/23 16:16
FisherN
by rki. 04/11/23 08:38
AUM Magazine
Latest Screens
SHADOW (2014)
DEAD TASTE
Tactics of World War I
Hecknex World
Who's Online Now
3 registered members (AndrewAMD, Grant, Neb), 908 guests, and 6 spiders.
Key: Admin, Global Mod, Mod
Newest Members
rki, FranzIII, indonesiae, The_Judge, storrealba
18919 Registered Users
Previous Thread
Next Thread
Print Thread
Rate Thread
Desperate Need of HELP! #180046
01/26/08 19:43
01/26/08 19:43
Joined: Nov 2006
Posts: 497
Ohio
xbox Offline OP
Senior Member
xbox  Offline OP
Senior Member

Joined: Nov 2006
Posts: 497
Ohio
I am trying to make a similar game to guitar hero. I have the X-plorer Guitar hooked up and i have the fret buttons and strum bar all mapped out. I am now trying to make the notes come down my fretboard by a path. When I placed the path, set the note to "patrol_path", built and ran the level, the note just turned 90 degrees clockwise. I don't understand why this is happening. I would really apreciate any help I can get. Thanks in advance.

Re: Desperate Need of HELP! [Re: xbox] #180047
01/27/08 03:40
01/27/08 03:40
Joined: Nov 2006
Posts: 497
Ohio
xbox Offline OP
Senior Member
xbox  Offline OP
Senior Member

Joined: Nov 2006
Posts: 497
Ohio
Thats okay people, I finally figured it out. I couldn't use paths for some odd reason. I mean, I've done it before but, oh well. I had to use the script from the help.chm file. "action moveme". Now All I have to do is get the collision detection in and the songs, menu, score, and background. Shouldn't be to hard. If any one wants to help please let me know and I might have something to do for you but DON'T GET MAD IF I SAY NO. Thanks again. Oh and if you want screenshots, just let me know and I will post some. And by the way YOU WILL NOT BE PAID AT ALL.

Last edited by xbox; 01/27/08 03:42.
Re: Desperate Need of HELP! [Re: xbox] #180048
01/27/08 19:11
01/27/08 19:11
Joined: Mar 2006
Posts: 2,503
SC, United States
xXxGuitar511 Offline
Expert
xXxGuitar511  Offline
Expert

Joined: Mar 2006
Posts: 2,503
SC, United States
...instead of using paths, you could have simply moved the entity...

Code:

ACTION Button
{
while(my)
{
// change 10 to the speed
my.x -= 10*time_step;
//
wait(1);
}
}




xXxGuitar511
- Programmer
Re: Desperate Need of HELP! [Re: xXxGuitar511] #180049
01/28/08 23:26
01/28/08 23:26
Joined: Nov 2006
Posts: 497
Ohio
xbox Offline OP
Senior Member
xbox  Offline OP
Senior Member

Joined: Nov 2006
Posts: 497
Ohio
Thank you it works now. My fret buttons that light up are just simply panels. So i added block s on the fretboard so that when the note s come down, they hit each other. My problem is, i don't know if it possible to basically tie the panels with the blocks so that when you press the green fret (or what ever fret) and the strum bar, the block that corrisponds with the fret pressed, the block will become un passable and enable impact with the note allowing you to "hit" the note. Basically my code looks similar to this. (keep in mind i am a definate noob at programming)

action green_block
{
MY.PASSABLE = ON;
MY.ENABLE_IMPACT = ON;
MY.EVENT = collide();
}

function collide()
{
if (joy_1 == on && key_cud == on && event_type == event_impact)
{
MY.PASSABLE = OFF;
beep();
}
}


Moderated by  HeelX, Lukas, rayp, Rei_Ayanami, Superku, Tobias, TWO, VeT 

Gamestudio download | chip programmers | Zorro platform | shop | Data Protection Policy

oP group Germany GmbH | Birkenstr. 25-27 | 63549 Ronneburg / Germany | info (at) opgroup.de

Powered by UBB.threads™ PHP Forum Software 7.7.1