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


Thread Rating:
  • 1 Vote(s) - 5 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Help with map changing.
The chaser Offline
Posting Freak

Posts: 2,486
Threads: 76
Joined: Jun 2012
Reputation: 113
#5
RE: Help with map changing.

(09-09-2012, 12:57 AM)beecake Wrote: It's actually pretty easy Smile

Colliding = (string &in asParent, string &in asChild, int alState)
Because:
asParent = 1st object
asChild = 2nd object
alState = How do they collide? When 1 goes inside? When 1 goes outside? Both?

Interacting = (string &in asEntity)
Because:
asEntity = The entity you interact with. There can only be 1 thing that is cabable of interacting and that is the player.

Use Item = (string &in asItem, string &in asEntity)
Because:
asItem = The item you use.
AsEntity = The entity you use it on

Look-at function = (string &in asEntity, int alState)
Because:
asEntity = The entity you look at
alState = Defining if you are: Looking at it? Looking away from it? Both?

You can actually use those guys (asEntity, asItem, alState, etc.) in scripts like:

void CollideFunction(string &in asParent, string &in asChild, int alState)
{
if(alState == -1) //If you are walking out of the area.
{
GiveSanityDamage(5);
}
}

I hope you understood Wink
I think that uploading this to the wiki would be a good idea. Anyway, in my custom story I work too with these. I can upload my script, and then you can compare them (it's always good to search for yourself what you've done wrong). Nevermind, sometimes is good to post it, so people can see possible issues. Well, here you have:

void OnStart()

{
AddEntityCollideCallback("Player", "ScriptArea_2", "Explore_deep", true, 1);
}

void Explore_deep (string &in asParent, string &in asChild, int alState)
{
ChangeMap("map_2.map", "Castle", "", ""); ///Castle is the startarea of the other map.
}

THE OTHERWORLD (WIP)
[Image: k6vbdhu]

Aculy iz dolan.
09-09-2012, 11:36 AM
Find


Messages In This Thread
Help with map changing. - by IGabx - 09-08-2012, 10:13 PM
RE: Help with map changing. - by Adny - 09-08-2012, 10:19 PM
RE: Help with map changing. - by IGabx - 09-08-2012, 10:28 PM
RE: Help with map changing. - by The chaser - 09-09-2012, 11:36 AM
RE: Help with map changing. - by IGabx - 09-15-2012, 11:19 PM
RE: Help with map changing. - by IGabx - 09-16-2012, 06:51 PM



Users browsing this thread: 1 Guest(s)