Menu

Show posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Show posts Menu

Messages - SFG Leader

#1
Is it possible to be able to import script and sprites when playing a game.
If so what script would you use because I'm planing on making a fully moddable
game e.g. Changing strength values and faces.
#2
I'm trying to get my character to do something if he is facing a certain
location but I don't know the script for it. I tried searching the help for
it but to no avail.
Pseudo code:
Code: ags

if (character[GEORGE].FaceingLocation (319, 174) == true) {
 // My code here
}

What code could I use to make this work?
#3
Wouldn't it be great if someone made an error help file just like the help file for AGS so that people could search for their error and find an answer for what they did wrong or how they can fix it instead of going on to the forums to ask the question.
#4
When I try and use this script it, the object (a car) doesn't appear but the game continues.
I have the SetTimer command but the script bellow still doesn't work. I have double checked
all the SetTimer variables and the variables below and they all seem to be correct.
All the script below is in the Repeatedly Execute section of my room and the SetTimer
command is in the Player enters room (after fadein) section.
Code: ags

if (IsTimerExpired(2) == 1) {
  oCar1.Visible = true;
  oCar1.Move(318, 234, 3, eNoBlock, eAnywhere);
  oCar1.Visible = false;
  }

Any thoughts on what I am doing wrong will be greatly appreciated.
SMF spam blocked by CleanTalk