Adventure Game Studio

AGS Support => Beginners' Technical Questions => Topic started by: The Almighty Metroid on Thu 09/10/2008 01:53:22

Title: CLEAN UP IN ISLE: HOW DO I MOVE FROM ROOM 2 ROOM!!(SOLVED)
Post by: The Almighty Metroid on Thu 09/10/2008 01:53:22
 :-\ what script would i write to have my character move from 1 room to another ???
Title: Re: CLEAN UP IN ISLE: HOW DO I MOVE FROM ROOM 2 ROOM!!
Post by: Gilbert on Thu 09/10/2008 01:59:05
Please, make some effort in reading the manual and the tutorials first. Most of your problems can be solved before asking such questions.

Also, please don't type in all CAPS the topic of a thread. :P
Title: Re: CLEAN UP IN ISLE: HOW DO I MOVE FROM ROOM 2 ROOM!!
Post by: The Almighty Metroid on Thu 09/10/2008 02:01:43
did you not read my signiture?
seriously...  8)
Title: Re: CLEAN UP IN ISLE: HOW DO I MOVE FROM ROOM 2 ROOM!!
Post by: Gilbert on Thu 09/10/2008 02:15:57
What is that to do with reading the tutorials? :P

People here are in general helpful, but they couldn't answer every single question if it is just about obvious and basic stuff that can be answered in a few minutes after reading the proper materials. Read the sticky rules thread (http://www.adventuregamestudio.co.uk/yabb/index.php?topic=14373.0) of this forum. There are lots of helpful links that aid you in start making your own game.
Title: Re: CLEAN UP IN ISLE: HOW DO I MOVE FROM ROOM 2 ROOM!!
Post by: densming on Thu 09/10/2008 03:33:16
Watch this for more: How to use AGS Part 12 (Room Edges) (http://www.youtube.com/watch?v=FTZyDwGens0)
Title: Re: CLEAN UP IN ISLE: HOW DO I MOVE FROM ROOM 2 ROOM!!
Post by: wotmeworry on Mon 13/10/2008 07:35:08
the script command is...

player.ChangeRoom(int room, int x, int y);

or an easier alternative...

player.ChangeRoomAutoPosition(int room)

(also works with cCharactername instead of player)

pleas read the manual first!!