Facebook Twitter YouTube Frictional Games | Forum | Privacy Policy | Dev Blog | Dev Wiki | Support | Gametee


Thread Rating:
  • 8 Vote(s) - 4.63 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Video Tutorials [OMG ELEVEN!!!!]
Dalroc Offline
Member

Posts: 57
Threads: 2
Joined: Mar 2011
Reputation: 0
#13
RE: Video Tutorials [FIRST VIDEO IS UP]

You should indent your code.. Especially if you are going to teach others to script.

I guess I could explain for you what the "string& asName", "float afTime", "string& asFunction" and all those mean.

Lets use your own tutorial as example.
In your AddEntityCollideCallback you have the parameters "Player", "RoomTwoArea" and "1".
In you CollideRoomTwo function you "import" these parameters with a new name you specify.

So
AddEntityCollideCallback("Player", "RoomTwoArea", "CollideRoomTwo", true, 1);
calls
CollideRoomTwo(string &in asParent, string &in asChild, int &in alState)
This means Player is now a variable named asParent inside of the CollideRoomTwo function, RoomTwoArea is named asChild and the 1 in stored inside an integer variable called alState.

Now this doesn't really change anything for this specific script, but it's good for doing a general function that you use several times for several different entities and locations (unlocking doors, ambient noises, levers).

Example, this code would unlock any door that calls it:
PHP Code: (Select All)
void KeyOnDoor(string &in asItemstring &in asEntity)
{
    
SetSwingDoorLocked(asEntityfalsetrue);
    
PlaySoundAtEntity("""unlock_door.snt"asEntity0false);

04-25-2011, 04:33 PM
Find


Messages In This Thread
Video Tutorials [OMG ELEVEN!!!!] - by Simpanra - 04-24-2011, 02:36 PM
RE: Video Tutorials - by HumiliatioN - 04-25-2011, 12:27 AM
RE: Video Tutorials - by laser50 - 04-25-2011, 12:29 AM
RE: Video Tutorials - by Glouki - 04-25-2011, 12:56 AM
RE: Video Tutorials - by Russ Money - 04-25-2011, 12:56 AM
RE: Video Tutorials - by Anxt - 04-25-2011, 02:47 AM
RE: Video Tutorials - by Droopy - 04-25-2011, 03:08 AM
RE: Video Tutorials - by Anxt - 04-25-2011, 03:12 AM
RE: Video Tutorials - by Simpanra - 04-25-2011, 11:39 AM
RE: Video Tutorials [FIRST VIDEO IS UP] - by Anxt - 04-25-2011, 03:57 PM
RE: Video Tutorials [FIRST VIDEO IS UP] - by Dalroc - 04-25-2011, 04:33 PM
RE: Video Tutorials [FIRST VIDEO IS UP] - by Anxt - 04-25-2011, 04:46 PM
RE: Video Tutorials [FIRST VIDEO IS UP] - by Anxt - 04-25-2011, 07:10 PM
RE: Video Tutorials [FIRST VIDEO IS UP] - by Anxt - 04-25-2011, 07:19 PM
RE: Video Tutorials [FIRST VIDEO IS UP] - by Anxt - 04-25-2011, 08:46 PM
RE: Video Tutorials [FIRST VIDEO IS UP] - by Anxt - 04-26-2011, 02:37 AM
RE: Video Tutorials [FIRST VIDEO IS UP] - by Kyle - 04-27-2011, 12:34 AM
RE: Video Tutorials [FIRST VIDEO IS UP] - by Kyle - 04-27-2011, 02:11 AM
RE: Video Tutorials [FIRST VIDEO IS UP] - by Anxt - 04-27-2011, 02:15 AM
RE: Video Tutorials [THREE VIDS NOW UP] - by Kyle - 05-02-2011, 02:45 AM
RE: Video Tutorials [SIX VIDEOS!] - by Roenlond - 05-02-2011, 07:52 PM
RE: Video Tutorials [SIX VIDEOS!] - by Simpanra - 05-02-2011, 07:55 PM
RE: Video Tutorials [SIX VIDEOS!] - by Roenlond - 05-02-2011, 08:00 PM
RE: Video Tutorials [SIX VIDEOS!] - by Simpanra - 05-03-2011, 08:18 PM
RE: Video Tutorials [SIX VIDEOS!] - by Roenlond - 05-03-2011, 08:29 PM
RE: Video Tutorials [SIX VIDEOS!] - by Simpanra - 05-03-2011, 08:39 PM
RE: Video Tutorials [SEVEN VIDEOS!] - by Roenlond - 05-03-2011, 08:56 PM
RE: Video Tutorials [SEVEN VIDEOS!] - by Simpanra - 05-03-2011, 09:03 PM
RE: Video Tutorials [TEN!!!!!!!] - by Simpanra - 05-03-2011, 11:01 PM
RE: Video Tutorials [TEN!!!!!!!] - by Russ Money - 05-03-2011, 11:32 PM
RE: Video Tutorials [TEN!!!!!!!] - by Kyle - 05-04-2011, 12:15 AM
RE: Video Tutorials [TEN!!!!!!!] - by Russ Money - 05-04-2011, 01:38 AM
RE: Video Tutorials [TEN!!!!!!!] - by Simpanra - 05-04-2011, 06:56 AM
RE: Video Tutorials [OMG ELEVEN!!!!] - by Kyle - 05-04-2011, 08:09 PM
RE: Video Tutorials [OMG ELEVEN!!!!] - by MrBigzy - 05-04-2011, 08:52 PM
RE: Video Tutorials [OMG ELEVEN!!!!] - by Kyle - 05-04-2011, 08:56 PM
RE: Video Tutorials [OMG ELEVEN!!!!] - by Kyle - 05-04-2011, 09:13 PM
RE: Video Tutorials [OMG ELEVEN!!!!] - by Acies - 05-05-2011, 10:12 PM
RE: Video Tutorials [OMG ELEVEN!!!!] - by Mofo - 05-06-2011, 07:23 AM
RE: Video Tutorials [OMG ELEVEN!!!!] - by Kyle - 05-05-2011, 11:10 PM
RE: Video Tutorials [OMG ELEVEN!!!!] - by Acies - 05-06-2011, 03:12 AM
RE: Video Tutorials [OMG ELEVEN!!!!] - by Karai16 - 05-15-2011, 11:33 AM
RE: Video Tutorials [OMG ELEVEN!!!!] - by laser50 - 05-15-2011, 05:32 PM
RE: Video Tutorials [OMG ELEVEN!!!!] - by laser50 - 06-20-2011, 08:10 AM
RE: Video Tutorials [OMG ELEVEN!!!!] - by xtron - 07-22-2011, 11:15 AM



Users browsing this thread: 1 Guest(s)