Zelaron Gaming Forum  
Stats Arcade Portal Forum FAQ Members List Social Groups Calendar Search Today's Posts Mark Forums Read
Go Back   Zelaron Gaming Forum > Zelaron Gaming > RPGMaker

 
 
Thread Tools Display Modes

 
Blender - 3D Game maker
Reply
Posted 2005-02-14, 04:29 AM
I know this forum is RPGM2K3, but as far as I can work out, there aren't any other forums to post about game engines etc...

Well, I was a surfing RPGwolfpack and came across this...

http://www.rpgwolfpack.com/download/engines/blender.php

And since quite a few people seem to want to make 3D games, I thought they'd like to know about it.

I haven't tried it out so...

Enjoy all you 3D Game Makers...
Old
Profile PM WWW Search
Lenny simplifies with no grasp of the basicsLenny simplifies with no grasp of the basicsLenny simplifies with no grasp of the basicsLenny simplifies with no grasp of the basicsLenny simplifies with no grasp of the basicsLenny simplifies with no grasp of the basics
 
 
Lenny
 



 
Reply
Posted 2005-02-14, 05:08 AM in reply to Lenny's post "Blender - 3D Game maker"
Looks like a good maker, but definately a step up from RM2k3......I don't think I'm ready for it
Old
Profile PM WWW Search
Noob101 is neither ape nor machine; has so far settled for the in-betweenNoob101 is neither ape nor machine; has so far settled for the in-between
 
 
Noob101
 



 
Reply
Posted 2005-02-14, 05:13 AM in reply to Noob101's post starting "Looks like a good maker, but definately..."
If someone does want ot download it, here are the links:

http://download.blender.org/release/...36-windows.exe - EU
ftp://ftp.cs.umn.edu/pub/blender.org...36-windows.exe - USA
http://planetmirror.com/pub/blender/...36-windows.exe - Australia

In all cases it is a 4.5mb donwload.

----------

The blender site is www.blender.org
The blender3d site is www.blender3d.org

----------

EIDT: The above download links seem to be just for the installer...the zipfile is needed as well...the links for the zipfiles are:

http://download.blender.org/release/...36-windows.zip - EU
ftp://ftp.cs.umn.edu/pub/blender.org...36-windows.zip - USA
http://planetmirror.com/pub/blender/...36-windows.zip - Australia

This brings the total download size to just over 9mb.

----------

WAHEY! I've downloaded it, and it works.

Here's something I haven'st seen for a LONG time. It uses an MSDOS script to get it started!

----------

I can't for the life of me work out how to use this program...

Last edited by Lenny; 2005-02-14 at 12:42 PM.
Old
Profile PM WWW Search
Lenny simplifies with no grasp of the basicsLenny simplifies with no grasp of the basicsLenny simplifies with no grasp of the basicsLenny simplifies with no grasp of the basicsLenny simplifies with no grasp of the basicsLenny simplifies with no grasp of the basics
 
 
Lenny
 



 
Reply
Posted 2005-02-14, 02:06 PM in reply to Lenny's post "Blender - 3D Game maker"
Ack, it uses Python. Now I regret not getting around to learning it..

Oh well, I'll have to give it a try. Looks like it requires a bit of an artistic touch, guess my first game will involve cubes of some sort because that's pretty much all I can make in 3-D.
Old
Profile PM WWW Search
BlueCube enjoys the static noises of ten television sets simultaneously tuned to 412.84 MHzBlueCube enjoys the static noises of ten television sets simultaneously tuned to 412.84 MHz
 
 
BlueCube
 



 
Reply
Posted 2005-02-14, 03:05 PM in reply to BlueCube's post starting "Ack, it uses Python. Now I regret not..."
If you don't mind me sounding like a complete idiot...what's Python???

I'm a guessing its another programming language of sorts...but of which sort???
Old
Profile PM WWW Search
Lenny simplifies with no grasp of the basicsLenny simplifies with no grasp of the basicsLenny simplifies with no grasp of the basicsLenny simplifies with no grasp of the basicsLenny simplifies with no grasp of the basicsLenny simplifies with no grasp of the basics
 
 
Lenny
 



 
Reply
Posted 2005-02-14, 04:26 PM in reply to Lenny's post starting "If you don't mind me sounding like a..."
Indeed it is another programming language. From what I know, the syntax is like a mix of BASIC and C, though admittedly I know very little of it.
Old
Profile PM WWW Search
BlueCube enjoys the static noises of ten television sets simultaneously tuned to 412.84 MHzBlueCube enjoys the static noises of ten television sets simultaneously tuned to 412.84 MHz
 
 
BlueCube
 



 
Reply
Posted 2005-02-15, 03:29 AM in reply to BlueCube's post starting "Indeed it is another programming..."
Well...looks like we're all gonna have fun with it then......

Any helpful little things about Python? You know more about than I do...I haven't the faintest idea how to start using it...
Old
Profile PM WWW Search
Lenny simplifies with no grasp of the basicsLenny simplifies with no grasp of the basicsLenny simplifies with no grasp of the basicsLenny simplifies with no grasp of the basicsLenny simplifies with no grasp of the basicsLenny simplifies with no grasp of the basics
 
 
Lenny
 



 
Reply
Posted 2005-02-15, 12:43 PM in reply to Lenny's post starting "Well...looks like we're all gonna have..."
Well, I'll assume you downloaded Python already, so just fire up a text editor of some sort. Notepad works, though something that has syntax highlighting is preferred, such as Crimson Editor. Python comes with its own editor, but quite frankly it's not very good.

Anyway, the hardest thing I had to learn (coming from C++ and the like) is that indentation matters. So doing this:

Code:
x = 5
if x == 5:
     print "yams"
     print "yams"
else:
     print "what"
     print "what"
That works in a pretty obvious way. Normally you'd need an END IF or brackets to show blocks like that. I indent by habit anyway, but it's odd that it's part of the syntax.

Python scripts can be run either by command line ("C:\wherever\> python c:\what\test.py") or by double-clicking on them in Windows (assuming you let Python have the file extension .py). I like the double-click method because I'm lazy.

...Of course, I haven't played with Blender itself much, mainly because I have no artistic abilities whatsoever. I am able to make a cube at least though. Maybe I'll make a game where you get to watch a cube fall through blank space, because that's the limits of my abilities at this point.
Old
Profile PM WWW Search
BlueCube enjoys the static noises of ten television sets simultaneously tuned to 412.84 MHzBlueCube enjoys the static noises of ten television sets simultaneously tuned to 412.84 MHz
 
 
BlueCube
 



 
Reply
Posted 2005-02-15, 05:42 AM in reply to Lenny's post "Blender - 3D Game maker"
Hmm, time to dl here at school and take home.

I hope it is some what user friendly.
Old
Profile PM WWW Search
Original Sin is neither ape nor machine; has so far settled for the in-betweenOriginal Sin is neither ape nor machine; has so far settled for the in-between
 
Original Sin
 



 
Reply
Posted 2005-02-15, 05:49 AM in reply to Original Sin's post starting "Hmm, time to dl here at school and take..."
Welcome to Zelaron.

That really does depend how you define 'user friendly'.
Old
Profile PM WWW Search
Lenny simplifies with no grasp of the basicsLenny simplifies with no grasp of the basicsLenny simplifies with no grasp of the basicsLenny simplifies with no grasp of the basicsLenny simplifies with no grasp of the basicsLenny simplifies with no grasp of the basics
 
 
Lenny
 



 
Reply
Posted 2005-02-15, 08:38 AM in reply to Lenny's post starting "Welcome to Zelaron. That really does..."
What I mean by "user friendly", just to clear things up, is that how easy it is to use, like RPG Maker 2K3. It's simple, but complex all at the same time. That's what I mean...although it looks very compex, I am gonna try it out.
Old
Profile PM WWW Search
Original Sin is neither ape nor machine; has so far settled for the in-betweenOriginal Sin is neither ape nor machine; has so far settled for the in-between
 
Original Sin
 



 
Reply
Posted 2005-02-15, 10:03 AM in reply to Original Sin's post starting "What I mean by "user friendly", just to..."
It's extremely complex...I was trying for 3 hours yesterday and I got absolutely nowhere with it...
Old
Profile PM WWW Search
Lenny simplifies with no grasp of the basicsLenny simplifies with no grasp of the basicsLenny simplifies with no grasp of the basicsLenny simplifies with no grasp of the basicsLenny simplifies with no grasp of the basicsLenny simplifies with no grasp of the basics
 
 
Lenny
 



 

Bookmarks

« Previous Thread | Next Thread »

Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules [Forum 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


All times are GMT -6. The time now is 03:18 AM.
'Synthesis 2' vBulletin 3.x styles and 'x79' derivative
by WetWired the Unbound and Chruser
Copyright ©2002-2008 zelaron.com
Powered by vBulletin® Version 3.8.2
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
This site is best seen with your eyes open.