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

#51 2011-03-04 15:24:46

nxsupert
Scratcher
Registered: 2009-07-26
Posts: 100+

Re: MMORPG Collab

here is a name.
scratch civilisation

or 

scratch island

or 

mmorp of the scratch king


I am Back!

Offline

 

#52 2011-03-05 12:18:14

Rub0Gameton
Scratcher
Registered: 2008-03-30
Posts: 100+

Re: MMORPG Collab

Ok people, we need to decide once for all, now tell just ONE name you like that does not have Scape, Corporation, Realm, or any non-related to future terms. Also note that the main part of the game wont be space. BTW, I like Cataclyst and Endearth, but specially Cataclyst, so I go for that one. Make your vote ASAP!

To nxsupert, I know of an easier way to do the moving script. Just do one page for each direction. FE: moveRight.php. It wouldn't need to have the first IF statement, so you could do...

Code:

-moveRight.php-
change the variable called "X" stored in the database by +1 just if variable X +1 is not in blocked.dat

I find it easier, but if you dont, then stay with the other one. About the antispam thing, leave that to me (or if you want, do it yourself). And last thing, I will fit the project to your php code, so dont worry.

Last edited by Rub0Gameton (2011-03-05 12:18:58)


Are you doing a collab and need a 24/7 TeamSpeak channel? Contact me... somewhere. =P

Offline

 

#53 2011-03-05 12:47:01

nxsupert
Scratcher
Registered: 2009-07-26
Posts: 100+

Re: MMORPG Collab

Rub0Gameton wrote:

And last thing, I will fit the project to your php code, so dont worry.

ok


I am Back!

Offline

 

#54 2011-03-05 14:26:29

Necromaster
Scratcher
Registered: 2010-04-07
Posts: 1000+

Re: MMORPG Collab

Sign me up for spriter too. BTW, use Charas-Project for character sprites.  wink

Offline

 

#55 2011-03-06 05:33:21

nxsupert
Scratcher
Registered: 2009-07-26
Posts: 100+

Re: MMORPG Collab

Rub0Gameton wrote:

Ok people, we need to decide once for all, now tell just ONE name you like that does not have Scape, Corporation, Realm, or any non-related to future terms. Also note that the main part of the game wont be space. BTW, I like Cataclyst and Endearth, but specially Cataclyst, so I go for that one. Make your vote ASAP!

To nxsupert, I know of an easier way to do the moving script. Just do one page for each direction. FE: moveRight.php. It wouldn't need to have the first IF statement, so you could do...

Code:

-moveRight.php-
change the variable called "X" stored in the database by +1 just if variable X +1 is not in blocked.dat

I find it easier, but if you dont, then stay with the other one. About the antispam thing, leave that to me (or if you want, do it yourself). And last thing, I will fit the project to your php code, so dont worry.

i prefer they way i did it.


I am Back!

Offline

 

#56 2011-03-06 09:11:31

Rub0Gameton
Scratcher
Registered: 2008-03-30
Posts: 100+

Re: MMORPG Collab

nxsupert wrote:

Rub0Gameton wrote:

Ok people, we need to decide once for all, now tell just ONE name you like that does not have Scape, Corporation, Realm, or any non-related to future terms. Also note that the main part of the game wont be space. BTW, I like Cataclyst and Endearth, but specially Cataclyst, so I go for that one. Make your vote ASAP!

To nxsupert, I know of an easier way to do the moving script. Just do one page for each direction. FE: moveRight.php. It wouldn't need to have the first IF statement, so you could do...

Code:

-moveRight.php-
change the variable called "X" stored in the database by +1 just if variable X +1 is not in blocked.dat

I find it easier, but if you dont, then stay with the other one. About the antispam thing, leave that to me (or if you want, do it yourself). And last thing, I will fit the project to your php code, so dont worry.

i prefer they way i did it.

Ok, it's awesome either way  smile

To Necromaster, ok, you're in as spriter


Are you doing a collab and need a 24/7 TeamSpeak channel? Contact me... somewhere. =P

Offline

 

#57 2011-03-06 09:20:35

nxsupert
Scratcher
Registered: 2009-07-26
Posts: 100+

Re: MMORPG Collab

info getter:

Code:

<?php
$username="";
$password="";
$database="";
mysql_connect("host",$username,$password);
@mysql_select_db($database) or die( "Unable to select database");
$query="SELECT * FROM table";
$result=mysql_query($query);
$num=mysql_numrows($result);
$i=0;
while ($i < $num) {
$x=mysql_result($result,$i,"x");
$y=mysql_result($result,$i,"y");
$id=mysql_result($result,$i,"ID");
$Money=mysql_result($result,$i,"Money");
$Type =mysql_result($result,$i,"Type");
$Online  =mysql_result($result,$i,"Online ");
echo "$x,$y,$id,$Money,$Type,$Online;";
$i++;
}

it will print like this:
x,y,id,Money,Type,Online;x,y,id,Money,Type,Online;x,y,id,Money,Type,Online;


I am Back!

Offline

 

#58 2011-03-06 09:30:22

nxsupert
Scratcher
Registered: 2009-07-26
Posts: 100+

Re: MMORPG Collab

exit code :

Code:

<?php
$username='';
$password='';
$database='';


$id = $_GET['id'];
mysql_connect('host',$username,$password);
@mysql_select_db($database) or die( 'ERROR, Unable to select database');

$query="UPDATE example SET Online='false' WHERE ID='$id ')";

mysql_query($query) or die('ERROR, insert query failed');





mysql_close();

?>

Rub0Gameton, i would like to do the web page were you sing up ( it won't be in the panther project it will be on the web site).


I am Back!

Offline

 

#59 2011-03-06 09:49:47

Rub0Gameton
Scratcher
Registered: 2008-03-30
Posts: 100+

Re: MMORPG Collab

nxsupert wrote:

exit code :

Code:

<?php
$username='';
$password='';
$database='';


$id = $_GET['id'];
mysql_connect('host',$username,$password);
@mysql_select_db($database) or die( 'ERROR, Unable to select database');

$query="UPDATE example SET Online='false' WHERE ID='$id ')";

mysql_query($query) or die('ERROR, insert query failed');





mysql_close();

?>

Rub0Gameton, i would like to do the web page were you sing up ( it won't be in the panther project it will be on the web site).

Ok, for security reasons, you must make a different page for each one. This are the files you need to create:
Login.php - Where the form is. Send data as $_POST to loginProcess.php. Will be accessed through web browser.
LoginProcess.php - Where data is verified and saved to the database. Redirect to success.php when finished.
Success.php - The success page, for browsers only.
LoginPanther.php - This one is ONLY for Panther use. It receives data from the panther project as $_GET. If the login is successful, then "echo 'loginSuccess'". He project will then save the login information as variables and use them as cookies.


Are you doing a collab and need a 24/7 TeamSpeak channel? Contact me... somewhere. =P

Offline

 

#60 2011-03-06 10:02:14

nxsupert
Scratcher
Registered: 2009-07-26
Posts: 100+

Re: MMORPG Collab

Rub0Gameton wrote:

nxsupert wrote:

exit code :

Code:

<?php
$username='';
$password='';
$database='';


$id = $_GET['id'];
mysql_connect('host',$username,$password);
@mysql_select_db($database) or die( 'ERROR, Unable to select database');

$query="UPDATE example SET Online='false' WHERE ID='$id ')";

mysql_query($query) or die('ERROR, insert query failed');





mysql_close();

?>

Rub0Gameton, i would like to do the web page were you sing up ( it won't be in the panther project it will be on the web site).

Ok, for security reasons, you must make a different page for each one. This are the files you need to create:
Login.php - Where the form is. Send data as $_POST to loginProcess.php. Will be accessed through web browser.
LoginProcess.php - Where data is verified and saved to the database. Redirect to success.php when finished.
Success.php - The success page, for browsers only.
LoginPanther.php - This one is ONLY for Panther use. It receives data from the panther project as $_GET. If the login is successful, then "echo 'loginSuccess'". He project will then save the login information as variables and use them as cookies.

login for panther is the entrance code.


all i meant was a web page were you could sing up.


I am Back!

Offline

 

#61 2011-03-06 10:52:46

Necromaster
Scratcher
Registered: 2010-04-07
Posts: 1000+

Re: MMORPG Collab

I like Endearth. But Cataclyst is fine.

Offline

 

#62 2011-03-09 07:19:39

Rub0Gameton
Scratcher
Registered: 2008-03-30
Posts: 100+

Re: MMORPG Collab

nxsupert wrote:

Rub0Gameton wrote:

nxsupert wrote:

exit code :

Code:

<?php
$username='';
$password='';
$database='';


$id = $_GET['id'];
mysql_connect('host',$username,$password);
@mysql_select_db($database) or die( 'ERROR, Unable to select database');

$query="UPDATE example SET Online='false' WHERE ID='$id ')";

mysql_query($query) or die('ERROR, insert query failed');





mysql_close();

?>

Rub0Gameton, i would like to do the web page were you sing up ( it won't be in the panther project it will be on the web site).

Ok, for security reasons, you must make a different page for each one. This are the files you need to create:
Login.php - Where the form is. Send data as $_POST to loginProcess.php. Will be accessed through web browser.
LoginProcess.php - Where data is verified and saved to the database. Redirect to success.php when finished.
Success.php - The success page, for browsers only.
LoginPanther.php - This one is ONLY for Panther use. It receives data from the panther project as $_GET. If the login is successful, then "echo 'loginSuccess'". He project will then save the login information as variables and use them as cookies.

login for panther is the entrance code.


all i meant was a web page were you could sing up.

Ok! Feel free to Do it! BTW, what name would you like for the game?


Are you doing a collab and need a 24/7 TeamSpeak channel? Contact me... somewhere. =P

Offline

 

#63 2011-03-09 11:14:06

nxsupert
Scratcher
Registered: 2009-07-26
Posts: 100+

Re: MMORPG Collab

Rub0Gameton wrote:

nxsupert wrote:

Rub0Gameton wrote:


Ok, for security reasons, you must make a different page for each one. This are the files you need to create:
Login.php - Where the form is. Send data as $_POST to loginProcess.php. Will be accessed through web browser.
LoginProcess.php - Where data is verified and saved to the database. Redirect to success.php when finished.
Success.php - The success page, for browsers only.
LoginPanther.php - This one is ONLY for Panther use. It receives data from the panther project as $_GET. If the login is successful, then "echo 'loginSuccess'". He project will then save the login information as variables and use them as cookies.

login for panther is the entrance code.


all i meant was a web page were you could sing up.

Ok! Feel free to Do it! BTW, what name would you like for the game?

ok i will do the html , php , and css for the sing up.
p.s for now on i want you to use this e-mail info@compusci.co.uk (to mods , this is my work e-mail).




names


Back To The Earth
The Last Chance
The New Age
The End Of Days.


I am Back!

Offline

 

#64 2011-03-09 11:48:10

nxsupert
Scratcher
Registered: 2009-07-26
Posts: 100+

Re: MMORPG Collab

Rub0Gameton , i will e-mail you the file with all the php code in it.
why...
because i am updating the scripts so it has encryption .
i can not tell you what type here.


I am Back!

Offline

 

#65 2011-03-10 22:42:13

Rub0Gameton
Scratcher
Registered: 2008-03-30
Posts: 100+

Re: MMORPG Collab

nxsupert wrote:

Rub0Gameton , i will e-mail you the file with all the php code in it.
why...
because i am updating the scripts so it has encryption .
i can not tell you what type here.

Nice! After all, it seems you are someone who knows what hes doing! And you do it good!
Btw, I think we may want to do the passive mode longer... Maybe 10 seconds because it goes a little slow over 5 seconds saving. About the sensing code, that will be inside the project, it is a script that will load the page to request information, which you already did!


Are you doing a collab and need a 24/7 TeamSpeak channel? Contact me... somewhere. =P

Offline

 

#66 2011-03-10 22:49:53

Rub0Gameton
Scratcher
Registered: 2008-03-30
Posts: 100+

Re: MMORPG Collab

Ok people, look, we will never get a good name if we don't know exactly what the game will be about! Any ideas of what to make it of? Anything related to medieval ages won't be used, as there are plenty in existence. We need a SPECIFIC TOPIC. I was thinking about a future game where there are missions minigames you can play with others. Make your suggestions!


Are you doing a collab and need a 24/7 TeamSpeak channel? Contact me... somewhere. =P

Offline

 

#67 2011-03-12 11:45:52

astrodude1789
Scratcher
Registered: 2010-08-18
Posts: 15

Re: MMORPG Collab

I would like to help. I can do whatever you need.


http://www.nodiatis.com/pub/19.jpg

Offline

 

#68 2011-03-12 12:14:57

Necromaster
Scratcher
Registered: 2010-04-07
Posts: 1000+

Re: MMORPG Collab

I've got it! What about an MMO where you have a ship, right? You buy upgrades, get more ships to add to your fleet, and even colonize asteroids and planets to give you resources!

Or, I like the mission minigame idea a lot too.

Offline

 

#69 2011-03-14 18:42:51

Necromaster
Scratcher
Registered: 2010-04-07
Posts: 1000+

Re: MMORPG Collab

Ok. Bump.  smile

Offline

 

#70 2011-03-16 14:15:16

Necromaster
Scratcher
Registered: 2010-04-07
Posts: 1000+

Re: MMORPG Collab

Bumperor.  sad

Offline

 

#71 2011-03-17 00:03:12

Necromaster
Scratcher
Registered: 2010-04-07
Posts: 1000+

Re: MMORPG Collab

Is this dead?

Offline

 

#72 2011-03-18 04:03:17

nxsupert
Scratcher
Registered: 2009-07-26
Posts: 100+

Re: MMORPG Collab

Rub0Gameton wrote:

nxsupert wrote:

Rub0Gameton , i will e-mail you the file with all the php code in it.
why...
because i am updating the scripts so it has encryption .
i can not tell you what type here.

Nice! After all, it seems you are someone who knows what hes doing! And you do it good!
Btw, I think we may want to do the passive mode longer... Maybe 10 seconds because it goes a little slow over 5 seconds saving. About the sensing code, that will be inside the project, it is a script that will load the page to request information, which you already did!

okay.
we will have to do a test run soon.

p.s

i am a little bit new to php but i can pick up programming languishes really fast.


I am Back!

Offline

 

#73 2011-03-19 10:11:59

Rub0Gameton
Scratcher
Registered: 2008-03-30
Posts: 100+

Re: MMORPG Collab

astrodude1789 wrote:

I would like to help. I can do whatever you need.

What could you do? You know... We're a little full, but if ou could do something useful that no one else is doing, then maybe you could get in...

To necro, this is not dead, I'm sorry if it seems as if it was, but I started mid-term exams last Monday, so I had to study a lot. They will end next week, so I will be active again  hmm  I should have told you all

Btw, I'm happy to announce that if Scratch 2 is capable enough, we could port the game to it and get more people to see it! Not saying that it would go a bunch faster!


Are you doing a collab and need a 24/7 TeamSpeak channel? Contact me... somewhere. =P

Offline

 

#74 2011-03-20 17:26:16

Necromaster
Scratcher
Registered: 2010-04-07
Posts: 1000+

Re: MMORPG Collab

Rub0Gameton wrote:

astrodude1789 wrote:

I would like to help. I can do whatever you need.

What could you do? You know... We're a little full, but if ou could do something useful that no one else is doing, then maybe you could get in...

To necro, this is not dead, I'm sorry if it seems as if it was, but I started mid-term exams last Monday, so I had to study a lot. They will end next week, so I will be active again  hmm  I should have told you all

Btw, I'm happy to announce that if Scratch 2 is capable enough, we could port the game to it and get more people to see it! Not saying that it would go a bunch faster!

Yes! Definitely!  big_smile

Offline

 

#75 2011-03-23 16:55:20

Rub0Gameton
Scratcher
Registered: 2008-03-30
Posts: 100+

Re: MMORPG Collab

Ok peeps, I tested it with Panther and yet it goes very slow, so I recommend to pause this project until Scratch 2 comes out, which should be a lot faster. However, if yall insist, we could finish it in Panther.


Are you doing a collab and need a 24/7 TeamSpeak channel? Contact me... somewhere. =P

Offline

 

Board footer