Gamestudio Links
Zorro Links
Newest Posts
Change chart colours
by 7th_zorro. 05/11/24 09:25
Data from CSV not parsed correctly
by dr_panther. 05/06/24 18:50
AUM Magazine
Latest Screens
The Bible Game
A psychological thriller game
SHADOW (2014)
DEAD TASTE
Who's Online Now
1 registered members (7th_zorro), 1,390 guests, and 2 spiders.
Key: Admin, Global Mod, Mod
Newest Members
Hanky27, firatv, wandaluciaia, Mega_Rod, EternallyCurious
19051 Registered Users
Previous Thread
Next Thread
Print Thread
Rate Thread
Page 2 of 2 1 2
Re: Racer: Crash and Burn [Re: janerwac13] #242717
12/25/08 10:11
12/25/08 10:11
Joined: Dec 2008
Posts: 222
janerwac13 Offline OP
Member
janerwac13  Offline OP
Member

Joined: Dec 2008
Posts: 222
wie kann ich die videos abspielen ohene das schon der Soundtrack zuhören is.Sonder das er erst abspielt wenn die videos zuende sind und das menü geladen wird.Und nächste frae wie kann ich schreiben das wenn ein lied zu ende ist das nächste kommt oder ich wenn mir das lied nicht gefällt aus F1 drücke und der nächste spielt?

Re: Racer: Crash and Burn [Re: janerwac13] #242718
12/25/08 10:15
12/25/08 10:15
Joined: Dec 2008
Posts: 222
janerwac13 Offline OP
Member
janerwac13  Offline OP
Member

Joined: Dec 2008
Posts: 222
how can i show the videos without that i can listen to the Soundtrack and that the soundtrack plays when the mainmenu is loaded.nextq. how can i write whate plays the next song if the last song is ended or the i press the F1 button to listen to the next song when this song is bad.(Like burnout Dominator you press the R2 Button and teh next song plays) sorry for my english!

Last edited by janerwac13; 12/25/08 10:17.
Re: Racer: Crash and Burn [Re: janerwac13] #242723
12/25/08 10:29
12/25/08 10:29
Joined: Aug 2008
Posts: 2,838
take me down to the paradise c...
Cowabanga Offline
Expert
Cowabanga  Offline
Expert

Joined: Aug 2008
Posts: 2,838
take me down to the paradise c...
Originally Posted By: janerwac13
how can i show the videos without that i can listen to the Soundtrack


Delete the sound from the video, then use media_play for playing the video.

Originally Posted By: janerwac13
how can i write what plays the next song if the last song is ended or the i press the F1 butte to listen to the next song when this song is bad.


Try this example:

Code:
var song = 0;
if(key_f1 == 1)
{
    song += 1;
}

function song_startup()
{
    while(1)
    {
        if(song == 1)
        {
            media_play(REPLACE_THIS_WITH_YOUR_OWN_STUFF);
        }
        if(song == 2)
        {
            media_play(REPLACE_THIS_WITH_YOUR_OWN_STUFF);
        }
        if(song == 3)
        {
            media_play(REPLACE_THIS_WITH_YOUR_OWN_STUFF);
        }
    }
}

and so on...

Re: Racer: Crash and Burn [Re: Cowabanga] #242724
12/25/08 10:32
12/25/08 10:32
Joined: Dec 2008
Posts: 222
janerwac13 Offline OP
Member
janerwac13  Offline OP
Member

Joined: Dec 2008
Posts: 222
Thanks and the physic example , please.

Re: Racer: Crash and Burn [Re: janerwac13] #242727
12/25/08 10:35
12/25/08 10:35
Joined: Aug 2008
Posts: 2,838
take me down to the paradise c...
Cowabanga Offline
Expert
Cowabanga  Offline
Expert

Joined: Aug 2008
Posts: 2,838
take me down to the paradise c...
I'm not so good with physics engine, so read the 19th workshop.

Re: Racer: Crash and Burn [Re: Cowabanga] #242729
12/25/08 10:43
12/25/08 10:43
Joined: Aug 2008
Posts: 2,838
take me down to the paradise c...
Cowabanga Offline
Expert
Cowabanga  Offline
Expert

Joined: Aug 2008
Posts: 2,838
take me down to the paradise c...
And see the Racer demo code in your 3dgs directory, in "work" folder.

Re: Racer: Crash and Burn [Re: Cowabanga] #264947
05/08/09 23:42
05/08/09 23:42
Joined: May 2009
Posts: 1,816
at my pc (duh)
darkinferno Offline
Serious User
darkinferno  Offline
Serious User

Joined: May 2009
Posts: 1,816
at my pc (duh)
if i were to use physics for this i would only use ONE physics object.. which would be the car(ph_box) then i would use bones to animate each wheel... this would be the only stable way of remaking a game like burnout on 3dgs's physics engine as far as i can tell wink

Re: Racer: Crash and Burn [Re: janerwac13] #264950
05/09/09 00:06
05/09/09 00:06
Joined: Apr 2009
Posts: 298
Southern Oceans
KiwiBoy Offline
Member
KiwiBoy  Offline
Member

Joined: Apr 2009
Posts: 298
Southern Oceans
See car example in 'examples' folder of your GStudio install. there you will see a full working physics car.


Use the 'manual' Luke, the manual is your friend. 'Self reminder' smile

My WebPage
Re: Racer: Crash and Burn [Re: KiwiBoy] #265186
05/11/09 02:19
05/11/09 02:19
Joined: May 2009
Posts: 4
USA N.C
Pugware Offline
Guest
Pugware  Offline
Guest

Joined: May 2009
Posts: 4
USA N.C
Anywho. This is looking good, can't wait to see more of the finished project, so keep going !


Ok! I gotz 3DGStudio! I must create a Half Life 3 wit it! EpiK
Page 2 of 2 1 2

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