Blender 2.5 causes game to crash!

I just downloaded Blender 2.5b, and when i opened the game i’ve been working on for a while, and started the game engine, Blender crashed!:frowning:

I’m using the vehicle wrapper car setup from http://www.tutorialsforblender3d.com/Game_Engine/Vehicle/Vehicle_2.html
and i think thats whats causing it to crash! I know the python was written for blender 2.49, so that may be the problem!

I’m not that good with python coding, but i know enough to edit the script.

Can anyone help?

Try this link

It’s not completely exhaustive but its a start. Then, using the terminal, go through the missing and broken attributes:

for example:
owner = controller.getOwner()
gives an attribute error, so Googling “Blender 2.5 getOwner()” you find that getOwner() is depreciated and you now use:

owner = controller.owner

Certainly, in 2.54 I don’t get any depreciation warnings for that one, it just gives attribute errors… Anyway, after a while you can become quite an expert.

Hi,
I have changed for you the script to Blender 2.5x.

HG1

Attachments

VehicleFinished_25x.blend (809 KB)

Thanks! I have actually been working with a different script too, and i was wondering if you could change that to 2.5x also?

http://drop.io/blendpyupgrd

Thx