TheGovernor Posted April 9, 2003 Share Posted April 9, 2003 Is there any way that the general public (i.e me and you) could write our own SCUMM games? I don't know much about SCUMM so you'll have to bear with me? Is there any way to create your own backgrounds, characters etc and write a SCUMM script? I assume it would take a while and require a bit of programming knowledge! Think it could be done? Link to comment Share on other sites More sharing options...
Benny Posted April 9, 2003 Share Posted April 9, 2003 Short answer: no. It is possible with an awful lot of effort to hack things into an existing game - change dialogue, images etc. But even doing this requires a lot of effort because it changes offsets in the resource file so things get messy and dont work. Writing a scumm script *is* sort of possible but again its very hackish. It's far, far easier to use one of the adventure game creation utilities than to attempt to get one of the scumm interpreters to run user-made things. Link to comment Share on other sites More sharing options...
Jaws Posted April 9, 2003 Share Posted April 9, 2003 try this : ) http://www.agsforums.com/ac.shtml - the software http://adventurepit.adventuredevelopers.com/ags/ags.htm - tutorials Link to comment Share on other sites More sharing options...
TheGovernor Posted April 10, 2003 Author Share Posted April 10, 2003 Ahhh right! Thank you for the response guys - and the links there marius! EDIT: Just checked out that Adventure Studio.....All I can say is WOW!! What a piece of software - THANK YOU! Link to comment Share on other sites More sharing options...
superdude201 Posted April 16, 2003 Share Posted April 16, 2003 cool link have u had any success yet Link to comment Share on other sites More sharing options...
TheGovernor Posted April 16, 2003 Author Share Posted April 16, 2003 Yep! Its a great link! Working on a game right now actually - Monkey Island spinoff - i'll keep ya updated! Hard work tho! Link to comment Share on other sites More sharing options...
superdude201 Posted April 19, 2003 Share Posted April 19, 2003 I also downloaded it but none of the links worked and found it hard to work out on my own so i just gave up lol good luck Link to comment Share on other sites More sharing options...
Largo-LaGrande Posted April 20, 2003 Share Posted April 20, 2003 You could try Klik 'n Play Link to comment Share on other sites More sharing options...
James Isaac Posted April 20, 2003 Share Posted April 20, 2003 Another very powerful engine you could try is SLUDGE. It is avaliable for download at http://www.hungrysoftware.com. I am making my own adventure game with it at the moment http://www.dayofthealiens.cjb.net and I have not found anything wrong with it yet! Link to comment Share on other sites More sharing options...
superdude201 Posted April 20, 2003 Share Posted April 20, 2003 Originally posted by james_isaac Another very powerful engine you could try is SLUDGE. It is avaliable for download at http://www.hungrysoftware.com. I am making my own adventure game with it at the moment http://www.dayofthealiens.cjb.net and I have not found anything wrong with it yet! that looks cool is it easy to use? good luck with your day of the aliens hope to see some screenies soon Link to comment Share on other sites More sharing options...
Largo-LaGrande Posted April 20, 2003 Share Posted April 20, 2003 Yea But the hard part is Making your own Characters and Backgrounds dose anyone know a program for that kind of thing (2D) Link to comment Share on other sites More sharing options...
James Isaac Posted April 20, 2003 Share Posted April 20, 2003 Superdude201, Yeah SCUMM is really easy to use (if you are familiar with event-driven programming languages e.g. Visual Basic). Here is an example of the code: say (guybrush, "Hi, my name is Guybrush Threepwood."); objectType ball "Red Ball" { event lookAt{ say (guybrush, "It's a red ball."); } event pickUp{ say (guybrush, "I don't need it."); } } Link to comment Share on other sites More sharing options...
pHILBRUSH Posted April 20, 2003 Share Posted April 20, 2003 Try game maker 5.0 It's kinda easy to use, takes a lotta practice, though. With this, you can create not just click and play games, firt person and allsorts! from to and It's really frustrating when you're just learning though, I was like this :compcry: and this and felt like this -pHILBRUSH Link to comment Share on other sites More sharing options...
superdude201 Posted April 20, 2003 Share Posted April 20, 2003 Originally posted by james_isaac Superdude201, Yeah SCUMM is really easy to use (if you are familiar with event-driven programming languages e.g. Visual Basic). Here is an example of the code: say (guybrush, "Hi, my name is Guybrush Threepwood."); objectType ball "Red Ball" { event lookAt{ say (guybrush, "It's a red ball."); } event pickUp{ say (guybrush, "I don't need it."); } } woah it must take years to do one game on your own I didn't understand it dunno what that floor thing was or anything You can use stuff like paintshop pro photoshop or even paint for 2d stuff i think Link to comment Share on other sites More sharing options...
Benny Posted April 20, 2003 Share Posted April 20, 2003 But the point is you cant use SCUMM. Also you made that code up didnt you? These are examples from the scripts (from CMI): while (ScriptRunning(2004)) { BlastText.BaseOp; BlastText.Charset(1); BlastText.Color(15); BlastText.At(175,440); BlastText.Print("/EC_498/The Monkeys Are Listening"); BreakHere; } // while EndScript; Actor[2].DoAnimation(6); Actor[2].Init; Actor.Face(180); Actor[2].DoAnimation(12); StartSFX(275); BreakHereVar(10); Actor[2].Init; Actor.AnimationTalk(13,31); Actor.AnimationStand(31); Actor[2].DoAnimation(1003); case (RandomBetween(1,3)) { 1: { SayLineSimple(2,"/CNWY024/Stand yer distance!"); } // case X: 2: { SayLineSimple(2,"/CNWY025/Stay away!"); } // case X: 3: { SayLineSimple(2,"/CNWY026/Stand back!"); Link to comment Share on other sites More sharing options...
Joshi Posted April 20, 2003 Share Posted April 20, 2003 Originally posted by pHILBRUSH Try game maker 5.0 It's kinda easy to use, takes a lotta practice, though. With this, you can create not just click and play games, firt person and allsorts! from to and It's really frustrating when you're just learning though, I was like this :compcry: and this and felt like this -pHILBRUSH did you have to be so graphic, now i feel like this:barf: Link to comment Share on other sites More sharing options...
Gabez Posted April 20, 2003 Share Posted April 20, 2003 .... And then I was like totally but then my friend walked in and he was like so then I ate some pancakes and I was like so and nine years later everyone was like ! Oh, but back to the topic. Um. Maybe you should look into The Games Factor rather than Klick & Play. It's so much better. Link to comment Share on other sites More sharing options...
SCUMMinator2k Posted May 4, 2003 Share Posted May 4, 2003 Multimedia Fusion is way better than KnP or TGS, but it's expensive. Expensive but worth it. But also expensive. Not the expensive. Did I mention how expensive it is? Link to comment Share on other sites More sharing options...
pHILBRUSH Posted May 10, 2003 Share Posted May 10, 2003 Sorry I get a bit over exited; pHILBRUSH Link to comment Share on other sites More sharing options...
Yufster Posted May 17, 2003 Share Posted May 17, 2003 One of my favourite ways of making backgrounds is to whip something up in MS Paint using basic shadows, thick lines and exaggerated curves, and then use Mosiac 2 in Adobe Photoshop. Works a treat. As for character animation, I use MS paint and Photoshop for this too. It doesn't even take long. First design a walk pattern for your character using a *gasp* pencil and paper. It should have about 8 frames. Then use a blue wireframe on MS Paint to 'sketch' out what you've drawn onto the computer. Then put your character around the wireframe. I'll upload you the process if you want, it's simple. The most important thing to remember when designing the walk of your character is that the walk denotes the personality of that character. A slouch is gonna mean a lazy character. A skippy walk is a lively character, etc.,. I'm not an expert or anything, but I do know that much Link to comment Share on other sites More sharing options...
damien fo' life Posted May 31, 2003 Share Posted May 31, 2003 i'm creating a sequel to tha monkey island serial, well i made somethin' about 50 % of tha game, it's point'n'click, and the story is really funny....i'll soon upload the demo... Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.