This is a read-only archive of the old Scratch 1.x Forums.
Try searching the current Scratch discussion forums.

#226 2009-09-30 12:19:10

markyparky56
Scratcher
Registered: 2008-03-20
Posts: 1000+

Re: Emerald

ok, uploaded it.


http://j.mp/jgVnTq
Check out my game engine development site: NewDawn I'm a Level 171 Scratcher.I am http://bit.ly/nkvLNT

Offline

 

#227 2009-09-30 12:27:38

filo5
Scratcher
Registered: 2008-01-08
Posts: 1000+

Re: Emerald

Good job on version 0.2, but it's still far from our goal. I was thinking about disconnecting the program edition application from the execution environment, like there is an IDE for Emerald (called Diamond probably, I can make it) and there's Emerald itself as a compiler and execution environment.


Converting my Scratch projects to Python!

Offline

 

#228 2009-09-30 12:31:35

markyparky56
Scratcher
Registered: 2008-03-20
Posts: 1000+

Re: Emerald

ok... im totaly lost, could you explain it in plain english please, plus an idea! Why not attatch the mesh? that would make it a lot more powerful.


http://j.mp/jgVnTq
Check out my game engine development site: NewDawn I'm a Level 171 Scratcher.I am http://bit.ly/nkvLNT

Offline

 

#229 2009-09-30 12:43:10

dav09
Scratcher
Registered: 2009-03-25
Posts: 1000+

Re: Emerald

i cant get the image file?

Offline

 

#230 2009-09-30 12:50:32

markyparky56
Scratcher
Registered: 2008-03-20
Posts: 1000+

Re: Emerald

there is no image file, yet... we're working on it. Right now its just that.

Last edited by markyparky56 (2009-09-30 12:50:43)


http://j.mp/jgVnTq
Check out my game engine development site: NewDawn I'm a Level 171 Scratcher.I am http://bit.ly/nkvLNT

Offline

 

#231 2009-09-30 13:15:09

dav09
Scratcher
Registered: 2009-03-25
Posts: 1000+

Re: Emerald

but i cant see it ? it says u need an image file?

Offline

 

#232 2009-09-30 13:33:55

markyparky56
Scratcher
Registered: 2008-03-20
Posts: 1000+

Re: Emerald

have you got python? If not, go and download V2.6.2


http://j.mp/jgVnTq
Check out my game engine development site: NewDawn I'm a Level 171 Scratcher.I am http://bit.ly/nkvLNT

Offline

 

#233 2009-09-30 14:52:52

markyparky56
Scratcher
Registered: 2008-03-20
Posts: 1000+

Re: Emerald

filo5 wrote:

Good job on version 0.2, but it's still far from our goal. I was thinking about disconnecting the program edition application from the execution environment, like there is an IDE for Emerald (called Diamond probably, I can make it) and there's Emerald itself as a compiler and execution environment.

Now that i read it again, i understand, so you program in one application, and execute it in another.


http://j.mp/jgVnTq
Check out my game engine development site: NewDawn I'm a Level 171 Scratcher.I am http://bit.ly/nkvLNT

Offline

 

#234 2009-09-30 17:56:48

Magnie
Scratcher
Registered: 2007-12-12
Posts: 1000+

Re: Emerald

Filo: That would be nice.

Dav09: Emerald is made in Python, no image files, just double-click Emerald-0.2.py and it should open up. (Unless you don't have Python.)

Offline

 

#235 2009-10-01 11:54:35

markyparky56
Scratcher
Registered: 2008-03-20
Posts: 1000+

Re: Emerald

anything needed done?! besides make sample projects?


http://j.mp/jgVnTq
Check out my game engine development site: NewDawn I'm a Level 171 Scratcher.I am http://bit.ly/nkvLNT

Offline

 

#236 2009-10-01 12:03:17

Magnie
Scratcher
Registered: 2007-12-12
Posts: 1000+

Re: Emerald

Lemme' think, Sample Projects...Sample Projects...and waiting for Coolstuff, or choice number 2.... HELP ME TEST OUT SPACE BATTLEFIELD!!

Offline

 

#237 2009-10-01 12:12:29

markyparky56
Scratcher
Registered: 2008-03-20
Posts: 1000+

Re: Emerald

Magnie wrote:

Lemme' think, Sample Projects...Sample Projects...and waiting for Coolstuff, or choice number 2.... HELP ME TEST OUT SPACE BATTLEFIELD!!

Ill do both, IP = 192.168.1.4

Im working on an updated version of MOF, but i cant get it to combine a print, and a varible, is it possible? to have it say.

You are m/f

Code:

print
Im going to ask you a question.
ask
Are you male or female?
print
you are m/f
run

What am i doing wrong?


http://j.mp/jgVnTq
Check out my game engine development site: NewDawn I'm a Level 171 Scratcher.I am http://bit.ly/nkvLNT

Offline

 

#238 2009-10-01 12:15:50

Magnie
Scratcher
Registered: 2007-12-12
Posts: 1000+

Re: Emerald

Emerald can't do one line code so it would have to be:

Code:

print
Im going to ask you a question.
ask
Are you male or female?
m/f
print
you
print
are
print
m/f
run

Should show:

Code:

Im going to ask you a question.
Are you male or female? Male
You
are
Male

hmm

Ima go test it right now!

Offline

 

#239 2009-10-01 12:19:07

markyparky56
Scratcher
Registered: 2008-03-20
Posts: 1000+

Re: Emerald

Yeah, it works!
But can i suggest that you add in an extra line, so that you can type in your answer under the question?


http://j.mp/jgVnTq
Check out my game engine development site: NewDawn I'm a Level 171 Scratcher.I am http://bit.ly/nkvLNT

Offline

 

#240 2009-10-01 12:21:14

Magnie
Scratcher
Registered: 2007-12-12
Posts: 1000+

Re: Emerald

Code:

print
Im going to ask you a question.
print
Are you male or female?
ask

m/f
print
you
print
are
print
m/f
run

Make sure that line is blank!  wink

Offline

 

#241 2009-10-01 12:24:21

markyparky56
Scratcher
Registered: 2008-03-20
Posts: 1000+

Re: Emerald

Magnie wrote:

Code:

print
Im going to ask you a question.
print
Are you male or female?
ask

m/f
print
you
print
are
print
m/f
run

Make sure that line is blank!  wink

ill do it later, now! you doom!!!!!!!!!!!!!


http://j.mp/jgVnTq
Check out my game engine development site: NewDawn I'm a Level 171 Scratcher.I am http://bit.ly/nkvLNT

Offline

 

#242 2009-10-01 12:26:02

Magnie
Scratcher
Registered: 2007-12-12
Posts: 1000+

Re: Emerald

Muhahaha! I will defeat you! *Opens Computer Camera thing and starts recording!*

Offline

 

#243 2009-10-01 12:27:33

markyparky56
Scratcher
Registered: 2008-03-20
Posts: 1000+

Re: Emerald

dang, i dont have one of them.


http://j.mp/jgVnTq
Check out my game engine development site: NewDawn I'm a Level 171 Scratcher.I am http://bit.ly/nkvLNT

Offline

 

#244 2009-10-01 12:28:27

Magnie
Scratcher
Registered: 2007-12-12
Posts: 1000+

Re: Emerald

I don't yet.  tongue  *Is currently hosting...*

Offline

 

#245 2009-10-01 12:30:49

markyparky56
Scratcher
Registered: 2008-03-20
Posts: 1000+

Re: Emerald

tongue  ok... ill host. 192.168.1.4


http://j.mp/jgVnTq
Check out my game engine development site: NewDawn I'm a Level 171 Scratcher.I am http://bit.ly/nkvLNT

Offline

 

#246 2009-10-01 12:31:52

Magnie
Scratcher
Registered: 2007-12-12
Posts: 1000+

Re: Emerald

Okay!  tongue  *Could not connect*

Offline

 

#247 2009-10-01 12:37:18

markyparky56
Scratcher
Registered: 2008-03-20
Posts: 1000+

Re: Emerald

:'( i have no idea how to unblock things!


http://j.mp/jgVnTq
Check out my game engine development site: NewDawn I'm a Level 171 Scratcher.I am http://bit.ly/nkvLNT

Offline

 

#248 2009-10-01 12:45:14

Magnie
Scratcher
Registered: 2007-12-12
Posts: 1000+

Re: Emerald

Sigh...

Offline

 

#249 2009-10-01 14:00:28

markyparky56
Scratcher
Registered: 2008-03-20
Posts: 1000+

Re: Emerald

...where is coolstuff?


http://j.mp/jgVnTq
Check out my game engine development site: NewDawn I'm a Level 171 Scratcher.I am http://bit.ly/nkvLNT

Offline

 

#250 2009-10-01 18:34:14

Magnie
Scratcher
Registered: 2007-12-12
Posts: 1000+

Re: Emerald

School probably... *goes to coolstuff's house fixes Python, then goes to Coolstuff's school and kicks him out* xD

Offline

 

Board footer