

Im Learning Ags
#16
Posted 16 May 2005 - 10:20 PM
#17
Posted 16 May 2005 - 10:41 PM
#18
Posted 16 May 2005 - 11:21 PM

http://www.last.fm/user/DeathDude/Upcoming Concerts will be attending, 5/10/08: Dream Theater, 5/12/08: Gigantour, 5/16/08: Nightwish, 5/27/08: Rush, 6/5/08 and 6/6/08: Iron Maiden, 7/27/08: Judas Priest,
#19
Posted 17 May 2005 - 12:36 AM
http://www.freewebs.com/skimbleshanks/
Has alot of templates, plugins, graphic packs, fonts and so forth that can be used with AGS. http://12.22.230.41/...me/ig_space.zip is a graphics pack which you can use when making a game, which will cut down production time a fair amount, and all you have to do is include its creator in the credits.
If you need any background art done, I could help out with that. Some examples:

A bar made for a cancelled 'tv' type project I was working on.

Made in SCI Studio

An as yet, unfinished port of the above image to high colour within photoshop.

Made for a different 'tv' type project i'm currently working on.
As you can see, I usually work best with cartoonish graphics, but I can also do more realistic backgrounds if needed. I'm also adept at the AGS coding system, so if you need any help with either coding, writing or background art, then send me and email. lordhart@tdrdesign.net
Quote
Quote
OK - I'm still quite busy at the moment, but in about a month's time I start having lots more free time.
I'm especially interested what would everybody do. This whole thing started out with people saying they are learing the AGS, but has anybody mastered it?
We'd also need someone quite (doesn't have to be excelent) good with making the artwork (although I think we can use any kind of pictures as a background, even scaned photos - is that right?).
And most of all we'd need to decide what game we'd be working on. I'm quite certain that some of us had an adventure game in mind...
To clear it up, yes you can use photos, but they usually turn out rather tacky because the system is suited better to graphics akin to that of Sierra or Lucasarts. As long as the images you want to use for a background is a .gif, .pcx, .png or .bmp, then you can use them. .pcx was always the preferred choice of everyones as it offered the best compression up until CJ added the ability to import .gif graphics into the engine.
Whilst I haven't by any means mastered AGS (hell, only two or three guys have really done that), but I know how to do a fair bit. As long as I know what I want, then I can usually think of a way to do it. You could easily learn how to do most things when coding even if you dont know programming, as long as you keep checking on the AGS Help Manual, then you'll get most things done in no time. I'll give an example of how you would have it so you can open a locked door with an inventory item named iKey (give the key in the inventory window the script name of Key):
When interacting with the door:
//does the player have the key, which is inventory item 1? if ((cEgo.InventoryQuantitiy[iKey.ID] == 0) && (GetGlobalInt(1) == 0)) { //no, he doesn't, keep it shut cEgo.Say("Drats, I don't have the key."); } else if ((cEgo.InventoryQuantitiy[iKey.ID] == 0) && (GetGlobalInt(1) == 1)) //he had the key, and he's used it! cEgo.Say("I've already open the door."); else if (cEgo.InventoryQuantity[iKey.ID] == 1) { //hey, he has the key now, open the door cEgo.Say("Hey! I just opened this door!"); SetGlobalInt(1, 1); //you've used the key, so i'll set this marker to let the game know... cEgo.LoseInventory(iKey); //lose the key now that he's used it... GiveScore(2); //and here are some points... }
Simple, right? All it does is checks to see if he has the key or not. If he has used the key and has already opened the door, then it shows a different response instead of saying, "Drats, I don't have the key." If anyone would like, I could write a few short tutorials on different things and put them here on the board.
#20
Posted 18 May 2005 - 10:23 PM
Now so far I've seen two storywriters (DeathDude and myself) and some artists (Stroggy, Void, LordHart) and last but by no means least a guy who is both: Fawfulhasfury.
Sorry Magic - I just don't know into which category I should put you... I guess you'd be one of the programmers.
So here's what I suggest:
- everyone who wants to write a story should do so by the 15th of August (that should give us all enough time). The story should be writen as a script.
- next the story we decide upon should be worked over (I guess people would have suggestions), and this process should be finished by the end of August.
- then the artists should try to create the charactors and scenery (until October 15th).
- these art works should then be modified if necesary (same as scrits) by the end of October.
- last but not least - all should be put together into the game (the programing part). Hopefully the game could be done by the end of the year (half a year for a game... should work out).
So all the writers warm up your keyboards - it's time to type (I suggest an adventure game - dark yet still humorous).
example of a scene:
A guy in the wheel chair is sitting next to the door. Pick up scalpel. Open door. Use scalpel on wheel chair *both wheels are sabotaged*. Ring the bell for lunch *watch the guy in the wheel chair ranting about the tyres and creating a distraction*. Open back window. Climb out the window. Sneak out the sanitarium. Prove to the world you weren't imagening the night crawler (the monster invading childrens daydreams causing mass hysteria).
#21
Posted 18 May 2005 - 10:31 PM

#22
Posted 18 May 2005 - 11:58 PM
Sebatianos, on May 18 2005, 10:23 PM, said:
#23
Posted 19 May 2005 - 01:42 AM
#24
Posted 19 May 2005 - 06:18 AM
LordHart, on May 18 2005, 11:58 PM, said:


#25
Posted 19 May 2005 - 07:05 AM

Just kidding... ill practice some more with AGS give it a few weeks and im sure i'll have most of the basics down and when I do I will help out however i can.
Cya
Magic
#26
Posted 19 May 2005 - 09:05 AM
Deirdre's got a Network Node
Likes to press the on/off switch
Dig that crazy Gaian witch !
- Spartan troup song -
#27
Posted 19 May 2005 - 04:20 PM
#28
Posted 19 May 2005 - 05:53 PM

#29
Posted 19 May 2005 - 07:04 PM
#30
Posted 20 May 2005 - 07:15 AM

Now i got to go to school so ill test it when i get back.