Gamestudio Links
Zorro Links
Newest Posts
Change chart colours
by 7th_zorro. 05/11/24 09:25
Data from CSV not parsed correctly
by dr_panther. 05/06/24 18:50
AUM Magazine
Latest Screens
The Bible Game
A psychological thriller game
SHADOW (2014)
DEAD TASTE
Who's Online Now
3 registered members (AndrewAMD, 7th_zorro, TedMar), 1,243 guests, and 4 spiders.
Key: Admin, Global Mod, Mod
Newest Members
Hanky27, firatv, wandaluciaia, Mega_Rod, EternallyCurious
19051 Registered Users
Previous Gallery
Next Gallery
Print Thread
Rate Thread
Page 2 of 3 1 2 3
2662 Starinvaders #303847
01/02/10 22:42
01/02/10 22:42
4 Images
Joined: Dec 2003
Posts: 104
Stralsund,Germany
leoman Offline OP
Member
2662 Starinvaders

Hallo,

ein Teil des Teams von 2662 hat sich über die Jahreswende getroffen und ein kleines Ballergame erstellt. Da wir noch auf ein paar wichtige Sachen bei 2662 warten, konnten wir unsere Zeit dafür nutzen. Es ist ein Pausenspiel a la Space Invaders, ich hoffe es macht euch ein bischen Spass. Über Kritiken würden wir uns sehr freuen. Viel Spass beim Zocken.

Tasten: Pfeiltasten
Feuern: STRG bzw. CTRL

Engl.:
Hi,

the 2662-crew has made a small game in the last two days (yes, it is possible). It's called "2662 Starinvaders". We hope you enjoy the game.

Keys: Arrows
Fire: STRG bzw. CTRL

2662 Brainbugs wink
<Leoman && Gordon Shumway>

http://www.armadamods.de/2662/file/2662-Starinvaders.zip
22 Comments
Re: 2662 Starinvaders [Re: Gordon_Shumway] #304061
01/04/10 20:22
01/04/10 20:22
Joined: Jun 2001
Posts: 1,004
Dossenbach
N
nfs42 Offline
Serious User
nfs42  Offline
Serious User
N

Joined: Jun 2001
Posts: 1,004
Dossenbach
Nice Game ;-)
I setup an online-highscore with GSTNet.

add this at the start of your InvadersActions.wdl
Code:
/////////////////////////////////////////////////
// ADDED by nfs42/GStools
/////////////////////////////////////////////////
include "c:\\dat\\work\\lib\\GSTNet.wdl";
string sPlayerName;
string sTemp;
string sPunkte;
string sResult;

/////////////////////////////////////////////////
function SaveHighScore()
{
	var hndFile;
	str_cpy(sTemp,"/channels/channels.php?gst=ScoreAdd&game=2662%20Starinvaders&player=");
	hndFile = file_open_read("player.txt");
	if(hndFile>0) {
		file_str_read(hndFile, sPlayerName);
		file_close(hndFile);
		if(str_len(sPlayerName==0)) {return(0);}
	} else {
		str_cpy(sPlayerName, "anonymous");
	}
	
	str_cat(sTemp,sPlayerName);
	str_cat(sTemp,"&score=");
	str_for_num(sPunkte,punkte);
	str_cat(sTemp,sPunkte);
	diag("\nURL=");
	diag(sTemp);
	
	GSTNet_HTTPGet("tools.gstools.de",sTemp,sResult);
	
}
/////////////////////////////////////////////////
// ADDED by nfs42/GStools
/////////////////////////////////////////////////


and this before exiting the game
Code:
...
/////////////////////////////////////////////////
// ADDED by nfs42/GStools
/////////////////////////////////////////////////
		SaveHighscore();
/////////////////////////////////////////////////
// ADDED by nfs42/GStools
/////////////////////////////////////////////////
		exit;
...


player default name is anonymous. for individual playerscores you need a file player.txt in your game folder with the playername.


you can see the highscore here

any questions, suggestion. post it here or on gstools.de.


Andreas
GSTools - Home of
GSTScript 0.9.8: lua scripting for A6/7/8
GSTNet 0.7.9.20: network plugin for A6/7/8
GSTsqlite 1.3.7: sql database plugin for A6/7/8
3DGS Codebase: 57 snippets || 3DGS Downloads: 248 files
Re: 2662 Starinvaders [Re: nfs42] #304070
01/04/10 21:18
01/04/10 21:18
Joined: Feb 2004
Posts: 217
Wennigsen, Germany
Gordon_Shumway Offline
Member
Gordon_Shumway  Offline
Member

Joined: Feb 2004
Posts: 217
Wennigsen, Germany
Hi nfs42,

thanks a lot, but I get an error.

After adding your code, I get the following message, before exiting the game:

GSTNet_HTTPGet not found in dll

I hope, you can help me.

Bye Gordon Shumway

Last edited by Gordon_Shumway; 01/04/10 21:18.
Re: 2662 Starinvaders [Re: Gordon_Shumway] #304082
01/04/10 22:13
01/04/10 22:13
Joined: Feb 2009
Posts: 2,154
Damocles_ Offline
Expert
Damocles_  Offline
Expert

Joined: Feb 2009
Posts: 2,154
good to see that more and more games implement Online Highscores now.

Maybe we should set up a general 3dgs Highscore page, usable
by multiple games, and for hobby developers without a php server.

Re: 2662 Starinvaders [Re: nfs42] #304107
01/05/10 01:46
01/05/10 01:46
Joined: Feb 2004
Posts: 217
Wennigsen, Germany
Gordon_Shumway Offline
Member
Gordon_Shumway  Offline
Member

Joined: Feb 2004
Posts: 217
Wennigsen, Germany
Hi again,

I solved the problem.....
@PigHunter: Beat it !!! Reached a new higshcore 024300 !!!

Tomorrow I will upload the new version, that everybody could use the highscore list.

Bye G.S.


***Neue Webseite!! Mit vielen neuen Infos! http://www.2662-thegame.de.vu***
Re: 2662 Starinvaders [Re: Gordon_Shumway] #304119
01/05/10 04:21
01/05/10 04:21
Joined: May 2009
Posts: 137
Ohio, U.S.A.
PigHunter Offline
Member
PigHunter  Offline
Member

Joined: May 2009
Posts: 137
Ohio, U.S.A.
cry

Re: 2662 Starinvaders [Re: Damocles_] #304125
01/05/10 08:53
01/05/10 08:53
Joined: Jun 2001
Posts: 1,004
Dossenbach
N
nfs42 Offline
Serious User
nfs42  Offline
Serious User
N

Joined: Jun 2001
Posts: 1,004
Dossenbach
that's the purpose of GSTChannels
register games, players, servers for mp games, add highscores for games or specific game levels, ...

there's still missing a php-driven interface for managing own games


Andreas
GSTools - Home of
GSTScript 0.9.8: lua scripting for A6/7/8
GSTNet 0.7.9.20: network plugin for A6/7/8
GSTsqlite 1.3.7: sql database plugin for A6/7/8
3DGS Codebase: 57 snippets || 3DGS Downloads: 248 files
Re: 2662 Starinvaders [Re: nfs42] #304207
01/05/10 18:51
01/05/10 18:51
Joined: Feb 2004
Posts: 217
Wennigsen, Germany
Gordon_Shumway Offline
Member
Gordon_Shumway  Offline
Member

Joined: Feb 2004
Posts: 217
Wennigsen, Germany
NEW VERSION !!! NEW VERSION !!!

Here is the newest version of the game:

- new features:
- Gamemenue
- bonusbugs have different colors (red: new life or points, blue: aliens fire with a higher rate for a small time, green: player move slower for short time, yellow: the starbases disappear)
- online-highscore-button

Download:
http://www.armadamods.de/2662/file/2662-Starinvaders.zip

I hope, you have fun and beat the score...26400 Points.

Bye Gordon Shumway


***Neue Webseite!! Mit vielen neuen Infos! http://www.2662-thegame.de.vu***
Re: 2662 Starinvaders [Re: Gordon_Shumway] #304296
01/06/10 14:31
01/06/10 14:31
Joined: May 2009
Posts: 445
Peine, Germany
Razoron Offline
Senior Member
Razoron  Offline
Senior Member

Joined: May 2009
Posts: 445
Peine, Germany
GODLIKE! All highscores pulverized: 35900
wink
I hope i didn't steal you the fun of that game tongue.

Last edited by Razoron; 01/06/10 14:40.
Re: 2662 Starinvaders [Re: Razoron] #304328
01/06/10 18:38
01/06/10 18:38
Joined: Feb 2004
Posts: 217
Wennigsen, Germany
Gordon_Shumway Offline
Member
Gordon_Shumway  Offline
Member

Joined: Feb 2004
Posts: 217
Wennigsen, Germany
@Razoron: ...mmmhhh... give me 5 minutes !!! (or a little bit more time)

Well done !!! I try to beat it !!!

Last edited by Gordon_Shumway; 01/06/10 18:39.
Re: 2662 Starinvaders [Re: Gordon_Shumway] #304345
01/06/10 20:11
01/06/10 20:11
Joined: May 2009
Posts: 445
Peine, Germany
Razoron Offline
Senior Member
Razoron  Offline
Senior Member

Joined: May 2009
Posts: 445
Peine, Germany
You won't beat it! wink

Page 2 of 3 1 2 3

Moderated by  jcl, Realspawn, Spirit 

Gamestudio download | chip programmers | Zorro platform | shop | Data Protection Policy

oP group Germany GmbH | Birkenstr. 25-27 | 63549 Ronneburg / Germany | info (at) opgroup.de

Powered by UBB.threads™ PHP Forum Software 7.7.1