Community

AGI Programming => Mega Tokyo AGI Archive => Topic started by: Dwarfy on January 04, 2003, 12:22:30 PM

Title: Operation: Moon Light!!!
Post by: Dwarfy on January 04, 2003, 12:22:30 PM
I starded a new game!  :D

It called Operation: Moon Light.

Here I got first screenshots.

Please rate them, thx!

Title: Re:Operation: Moon Light!!!
Post by: Oliver on January 04, 2003, 12:24:23 PM
What? Where?
I can't find any screenshots ??? :(
Title: Re:Operation: Moon Light!!!
Post by: Dwarfy on January 04, 2003, 12:28:35 PM


[attachment deleted by admin]
Title: Re:Operation: Moon Light!!!
Post by: Dwarfy on January 04, 2003, 12:29:47 PM
Plz don't rate so hard, the file was to big to let it
in original size!  :(

Thanks!
Title: Re:Operation: Moon Light!!!
Post by: Kon-Tiki on January 04, 2003, 01:47:43 PM
I truly like that first pic. It looks professional. The other one looks like a certain Space Quest-pic, so that's ok too (although you forgot one pixel on the left side of the roof ;D )

-Kon-Tiki-

Ps: Have you been reading my tutorial? Judging from the first pic, you have, or you have some academical drawing skills.
Title: Re:Operation: Moon Light!!!
Post by: Eero R on January 04, 2003, 02:15:36 PM
They are great pictures and I truly mean that! I'm sure that the game is great when released. ;)

And next time you put pictures into forum, consider to do so that they are not so blurry.  Best solution is converting them into GIF format.
Title: Re:Operation: Moon Light!!!
Post by: Dwarfy on January 05, 2003, 07:01:29 AM
*luckybeen*  :D

Wow! Thx for your screensrating!

@Kon-Tiki: I didn't forgot any pixel?!
                  And can you tell me where to find
                  your tutorial?

@Eero R
Title: Re:Operation: Moon Light!!!
Post by: Eero R on January 05, 2003, 07:54:13 AM
PNG is good too, but GIF is the best format for sending AGI/SCI-screenshots.
Title: Re:Operation: Moon Light!!!
Post by: Dwarfy on January 05, 2003, 08:01:09 AM
I don't have anything to draw GIF's.
I wanted to copy a PNG and insert
my screenshot.
Can you post a GIF picture in this
thread?
Any picture, like a screenshot of your
game.  :D
Title: Re:Operation: Moon Light!!!
Post by: Kon-Tiki on January 05, 2003, 08:08:01 AM
You can find that tutorial in the tutorial-section of my site (http://patat.org/~raf). There needs to be changed one thing in, though. The viewpoint's ALWAYS on the horizon (thanks, Joker :) )

-Kon-Tiki-
Title: Re:Operation: Moon Light!!!
Post by: Dwarfy on January 05, 2003, 08:12:43 AM
Thanks Kon-Tiki!
Title: Re:Operation: Moon Light!!!
Post by: Dwarfy on January 05, 2003, 08:51:43 AM
HEEEEELPPPP!!!!  :-[

When I wanna compile the logics whit F10,
it says:

Can't open vol.0!

HELP ME!  >:(
Title: Re:Operation: Moon Light!!!
Post by: Kon-Tiki on January 05, 2003, 09:49:18 AM
Is the game still running while hitting f10?

-Kon-Tiki-
Title: Re:Operation: Moon Light!!!
Post by: Dwarfy on January 05, 2003, 10:27:05 AM
Yes, but then a text will come and i can't press enter.
Title: Re:Operation: Moon Light!!!
Post by: Kon-Tiki on January 05, 2003, 10:47:06 AM
There's y'r problem. It's reading the files while the game runs and can't write on them. First, close the game. Then edit it.

-Kon-Tiki-
Title: Re:Operation: Moon Light!!!
Post by: Dwarfy on January 05, 2003, 11:08:46 AM
Will try it.

Problem done!!
Title: Re:Operation: Moon Light!!!
Post by: Eero R on January 05, 2003, 04:29:26 PM


[attachment deleted by admin]
Title: Re:Operation: Moon Light!!!
Post by: Dwarfy on January 07, 2003, 12:13:41 PM
Thanks!
Title: Re:Operation: Moon Light!!!
Post by: Dwarfy on January 07, 2003, 01:34:24 PM
Hi!

Can someone help me please?!

Can someone tell me how to add items in room?

How to let them there (like a sofa)?

How to pick them up?

Erase it from screen when pick up?

Animate objects...stop, wait!
Thats wokrin'?

I got a few of problems whit stuck up and like that,
so please, help me!!

Thanks!

Infos about my game: I try to make the rooms and
                                    the title look better.
                                    So I starded to draw all
                                    pics new...better!
                                    Now I saw that my first room
                                    looks a little borring (title
                                    too...a little).
                                    That's the info I got 'bout ma game
Title: Re:Operation: Moon Light!!!
Post by: Kon-Tiki on January 08, 2003, 07:24:40 AM
Putting objects in room (in this case an item, it'll be easier to code the picking up then ;) )
Code: [Select]
f5 {                         // Sets the start of the room,
                               // only loads once
etc etc

if(!has("sofa")) {     // Checks if sofa is in inventory
animate.obj(o1);    // o1 is here the carryable sofa :o
load.view(2);         // Loads the view of the sofa
set.view(o1,2);      // Connects the sofa to it's view
position(o1, 50, 90);  // Places the sofa on coordinates
//(x = 50, y = 90)
draw(o1);             // Draws the sofa
}                          // Closes this piece of code
etc etc                 // rest of initialising code
}                         // From here on, the code that keeps //on loading starts.

Now, to pick the sofa up (this comes after the last code, in the section that loads every interpreter cycle)
Code: [Select]
if(said("take","sofa")) {  
  if(!has("sofa")) {
    print("You huff and you puff and you take the sofa.");
    get.obj("sofa");  // Puts the sofa in the inventory
    erase(o1);         // Removes the sofa-view
  }
  else {
    print("You already have that.");
  }
}

-Kon-Tiki-
Title: Re:Operation: Moon Light!!!
Post by: Dwarfy on January 09, 2003, 12:46:21 PM
I did that, but it stuck!  >:(
Title: Re:Operation: Moon Light!!!
Post by: Kon-Tiki on January 09, 2003, 12:51:36 PM
Is the object in the object file (so have you made the object with the object editor and saved it?)
If that's not it, please say where it's stuck.

-Kon-Tiki-
Title: Re:Operation: Moon Light!!!
Post by: Dwarfy on January 09, 2003, 02:27:18 PM
Now it doesn't stuck anymore, I fixed it.

But if I say: "get (object)", it says:

You already have it.
Title: Re:Operation: Moon Light!!!
Post by: Dwarfy on January 09, 2003, 02:31:04 PM
Code: [Select]
if(said("take","sofa")) {  
  if(!has("sofa")) {
    print("You huff and you puff and you take the sofa.");
    get.obj("sofa");  // Puts the sofa in the inventory
    erase(o1);         // Removes the sofa-view
  }
  else {
    print("You already have that.");
  }
}

You told me to do get.obj, it won't work.
It is get("object");, but that wasn't my prob.
It doesn't work anyway!  :(
Title: Re:Operation: Moon Light!!!
Post by: Kon-Tiki on January 09, 2003, 02:39:12 PM
Try adjusting the room in the object editor to the room the object should be in.

-Kon-Tiki-
Title: Re:Operation: Moon Light!!!
Post by: Dwarfy on January 09, 2003, 02:53:47 PM
Ok.
Title: Re:Operation: Moon Light!!!
Post by: Dwarfy on January 09, 2003, 02:57:11 PM
It work, but not so well I want to.  :(

Now if I get the object, it will give me all objects

I created.  >:(
Title: Re:Operation: Moon Light!!!
Post by: Kon-Tiki on January 10, 2003, 10:52:19 AM
Can you send me a sample of the game? I'll look it up and fix it for you.

-Kon-Tiki-
Title: Re:Operation: Moon Light!!!
Post by: Dwarfy on January 10, 2003, 12:05:47 PM
Ok.
Title: Re:Operation: Moon Light!!!
Post by: Kon-Tiki on January 10, 2003, 01:04:46 PM
Done and done. You should have the fixed version in your mail now.

-Kon-Tiki-
Title: Re:Operation: Moon Light!!!
Post by: Dwarfy on January 10, 2003, 01:39:32 PM
Thanks man!
Title: Re:Operation: Moon Light!!!
Post by: Dwarfy on January 10, 2003, 02:13:57 PM
There's no E-Mail of you here?
Title: Re:Operation: Moon Light!!!
Post by: Kon-Tiki on January 10, 2003, 05:18:23 PM
Sorry 'bout that. Seems like I have typed a 'g' behind your mail adress and got a delivery failed-message. Retook the message and sent it again (to top it off, forgot to remove the second signature ::) )
Anyway, now you should have it.

-Kon-Tiki-
Title: Re:Operation: Moon Light!!!
Post by: Dwarfy on January 11, 2003, 07:43:36 AM
Ok. Thanks! All Ok!  ;D