Page 3 of 5

Re: Secert Project "Unnammed Title"

Posted: July 29th, 2010, 9:07 am
by PizzaLover101
.........Then what game type is it, what is the plot line, when do i go to the bathroom? hmmmmmmmmmmmm? HMMMMMMMMMMMMMMMMMMMMMMM!?!?!

Re: Secert Project "Unnammed Title"

Posted: July 29th, 2010, 9:12 am
by InHumanUnit
You went to the bathroom twice.

Re: Secert Project "Unnammed Title"

Posted: July 29th, 2010, 4:13 pm
by PizzaLover101
no, thrice

Re: Secert Project "Unnammed Title"

Posted: July 29th, 2010, 4:33 pm
by InHumanUnit
And now you are working on your game....

Re: Secert Project "Unnammed Title"

Posted: July 30th, 2010, 10:22 am
by arcones
To quote the original question...
Pizza wrote:ok, i read from the wiki, can someone please give me an example inventory gui? I am just completely lost

Also, I am making a level where you pick up apples. I tried to make an echo that would say "You've got an apple! You now have ** apples!"How would I make the last part?
1. Open a new .txt document and copy and paste this:

Code: Select all

apples = 0

"level_trigger_#" = [ echo "You picked up an apple!"]

newgui main [
guibutton "Inventory"    "showgui inventory"
]

newgui inventory [
guitext (format "You have %1 apples." $apples)
guibutton "Back"    "showgui main"
]
2. Go to 'File'
3. Click 'Save As...'
4. Put yourmapname.cfg
5. Save and place in my_stuff>packages>base>

If you have any other questions, ask.

Re: Secert Project "Unnammed Title"

Posted: July 30th, 2010, 10:36 am
by PizzaLover101
actually, I figured out how to do all of that this morning :P

Re: Secert Project "Unnammed Title"

Posted: July 30th, 2010, 10:38 am
by arcones
0_o

Good for you :D

Re: Secert Project "Unnammed Title"

Posted: July 30th, 2010, 10:49 am
by PizzaLover101
:P thank you :P

Re: Secert Project "Unnammed Title"

Posted: July 30th, 2010, 1:10 pm
by InHumanUnit
.................

Re: Secert Project "Unnammed Title"

Posted: July 30th, 2010, 3:26 pm
by PizzaLover101
I ran across an other problem. If I only have the code on the main map, it's together so that you can see how many items you have, you get this on the main map:
Image
On another map, when you teleport to it, you get this:
Image
help!