EDDIE'S PROFILE

Search

Filter

!!!

author=kentona link=topic=548.msg7444#msg7444 date=1200200285
In the future, make better topic titles. !!! is not a valid title.

Agreed. When I saw that I made a real life >:( face!

CPU problem NEED HELP

Your problem is that Vista is meant for newer, dual core PCs. You don't really have enough ram either. Stick to XP buddy.

Games that are popular but you haven't played

If they gave you EXP for assignment in schools then these people would excel at life.

Games that are popular but you haven't played

World of fucking warcraft.

I've seen what that does to people, hence I will never play it.

Release Something! Day [Discussion Thread]

The date of release of Kryberia and Release Something were pretty coincidental. I do have other projects but I only have time for the one, and I'm not releasing another demo.

Strange emails I have to share with you [Hero's Realm]

Kenton my you know my email hit me up baby, make me proud.

I need help with a few things.

If you get rid of that massive signature and change that text to readable normal text I'll help you ;)

Question about RPG maker XP

You have to remove every reference to RTP resources in your game, which is V hard to do I guess.

You could probably do it by removing the link to the RTP in the RTP selector menu:



and then copying all the resources from the RTP into your own project. They're found in:

C:\Program Files\Common Files\Enterbrain\RGSS\Standard.

Try doing this then running the game. It might tell you to fuck off, then again, it might not :)

Question about RPG maker XP

Yeah that's true. You can still create games without using the RTP though, it's just a bit of bother.

Need help for RAcing game

Do you know how to use Sin and Cos in relation to your X and Y movements based on what angle between 0 and 360 your car is at? For any 2d vehicle (Imagine top down) you need to be faimilar with the maths.

As previously mentioned, you do now move the vehicle but you move the environment surrounding the vehicle in the opposite direction to simulate movement.

Your car will be moving at a velocity where velocity is speed and given direction. In pseudocode you need to have variables for the following.

Angle
Speed (Scalar)
X Position
Y Position

You can't just move your car diagonally though, you have to figure out the next X and Y components using sin and cos.

I.e.
x = x + speed * cos(angle)
y = y + speed * sin(angle)

Where x and y are the top left corner of the map when the car is placed in the middle of the screen.

I made a game like this in Flash using actionscript however, if you're starting out making racing games I would recommend something like Clickteam's The Games Factory.