So sorry! Yes, you were correct, it was school, but then I had newspaper club, piano, and then I had to go out for dinner, so the soonest I could get on was now Sorry. Anyways, I couldn't read everything, so can you get me up to scratch (no pun intended)?
Offline
Scratch? Or do you mean "Up to date" with what's going on? Just take a few minutes of your time and read. Nothing much, we just need to get the graphics working...
Offline
*Waves and says "Hi Mom!" * xD
Offline
...i made a new sample project! Variables!
Offline
That's a nice project! I like it!
Offline
I would like to help with this! I only know a bit of Python, but I could try making some graphics and stuff.
Offline
I could also help you guys. I have an FTP site you guys can use, so downloads don't have to go through mediafire.
Just tell me the FTP username + password you want to have.
Last edited by gershmer (2009-10-02 21:16:36)
Offline
what does ftp stand for?
Offline
markyparky56 wrote:
what does ftp stand for?
File Transfer Protocol.
Offline
Floppy: We'd love to have your help! But graphics currently aren't needed, we are waiting for Coolstuff to add graphics to the program.
Gershmer: That would be quite useful! Thanks!
Offline
Magnie wrote:
Gershmer: That would be quite useful! Thanks!
Ok. Do you want me to be in charge of uploading? or do you want your own username + password?
Offline
Magnie wrote:
Floppy: We'd love to have your help! But graphics currently aren't needed, we are waiting for Coolstuff to add graphics to the program.
Oh. Well, I made a logo for Emerald (though I know you already have one, but I wanted to try and make one myself).
Offline
filo5 wrote:
As for FTP, username = emerald , password = diamond
The username is fine, but the password is not acceptable.
It must contain one capital letter and one number.
Once we have the credentials setup, I'll give you guys hosting space in http://gershmer.net/emeraldteam .
Offline
Username = Emerald (Capital E) Password = Diamond (Capital D)
Don't add the "(Capital [Letter) )" in.
Offline
How do you even use your ftp Gershmer?
Offline
Ok, we need to add more commands to emerald, sample projects aren't needed right now. since its so low in things to do with, varibles, print and ask. thats all there is!!!
Offline
Ideas for commands!
If /else ← (optional) [(text) Join (text)] <()+()> <()-()> <()*()> <()/()> [wait]
note:
The If block must be compatiable with the math blocks
Offline
I think we can add the "wait" block and a "sound" block, all the others will currently have to wait.
☺☻
Offline
whats the point waiting? add them all!!!
Offline
It's harder than you think. If you want it to go faster, go ahead and add them yourself.
Offline
I am making something similar in C, right now the only command is print. Print only prints one word though but you can print out multiple words like this
print Hello print World!
and at the end of the script, you must put END. and the return escape is \n. so a simple hello world program (the only thing it is currently capable of) would be
print Hello print World! \n END
the source of it is this. Feel free to modify
#include <stdio.h> #include <string.h> int main (int argc, const char * argv[]) { const char * string[32]; int repeat = 0; int cmd = 1; const char input[32]; while ( repeat == 0) { scanf( "%s", &string); cmd = strcmp(string, "END"); if ( cmd == 0 ) ++repeat; /*–––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––*/ cmd = strcmp(string, "print" ); if ( cmd == 0 ) { scanf( "%s", &input ); if ( input[0] == '$' ) printf( "Variables Not Available\n" ); // We'll get to that later else printf( "%s ", input ); } cmd = strcmp( string, "\\n" ); if ( cmd == 0 ) printf( "\n" ); } /*–––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––*/ return 0; }
Last edited by songhead95 (2009-10-05 21:03:03)
Offline