Frictional Games Forum (read-only)
How to make a rope - Printable Version

+- Frictional Games Forum (read-only) (https://www.frictionalgames.com/forum)
+-- Forum: Amnesia: The Dark Descent (https://www.frictionalgames.com/forum/forum-6.html)
+--- Forum: Custom Stories, TCs & Mods - Development (https://www.frictionalgames.com/forum/forum-38.html)
+---- Forum: Development Articles (https://www.frictionalgames.com/forum/forum-40.html)
+---- Thread: How to make a rope (/thread-18804.html)

Pages: 1 2


RE: How to make a rope - FlawlessHappiness - 01-15-2013

(01-15-2013, 10:25 PM)The chaser Wrote: It will be a matter of attached... Hmmm... do dis, tru fren:

Code:
void OnStart() //This could change!
{
AddEntityCollideCallback("Da_box_in_da_rope", "Area", "Interact", true, 1); ///When the rope is down, it will collide with this area, which will activate an area *look down*
}

void Interact (string &in asParent, string &in asChild, int alState)
{
///I don't know how to make an area interactable, so yea... make an area which you can touch. The interaction with it will give you the item (key). Sorry for this little thing. When you interact, it will:
GiveItem("Key", "Item", "Puzzle", "key.tga", 1);
SetEntityActive("Da_key_in_da_box", false);

}

You can make the box smaller than the key so it doesn't collide with the outer of the key.

I'll see what it leads to.

Have to sleep now.


RE: How to make a rope - FlawlessHappiness - 02-15-2013

Sorry for bumping

Hi The Chaser Smile

I just discovered something that might be useful to this thread.

When you make a rope, you can set it's "EndBody" to be a "invisible_body".
This is used if you want the rope to end a specific place, and not just hanging from the ceiling.

I used this to create a bridge, that it held by chains.

In Editor
Spoiler below!

[Image: 34q2rgn.png]


In game
Spoiler below!

[Image: 2j4o5ef.png]




RE: How to make a rope - The chaser - 02-15-2013

Oh, thanks for sharing! Ropes are very useful and they can be used for a lot of things, but I just made the basics. Ropes are a great resource to use.


Rope Creation Tutorial - Putmalk - 04-06-2013

Hey everybody,

I was requested to provide help with creating ropes and using them to lower a bucket into a well. I decided to make tutorial videos on how to do it.

Feedback/concerns are always welcome. I hope they are useful.

Part 1:




Part 2:





RE: Rope Creation Tutorial - PutraenusAlivius - 04-06-2013

There's already a tutorial about this. Nonetheless, it's still useful for someone that didn't understand what this thread below meant.
http://www.frictionalgames.com/forum/thread-18804.html


RE: Rope Creation Tutorial - Putmalk - 04-06-2013

(04-06-2013, 05:17 AM)JustAnotherPlayer Wrote: There's already a tutorial about this. Nonetheless, it's still useful for someone that didn't understand what this thread below meant.
http://www.frictionalgames.com/forum/thread-18804.html

Meh, I didn't know it, but okay, thanks for the heads up.


RE: How to make a rope - plutomaniac - 04-08-2013

Merged


RE: How to make a rope - The chaser - 04-08-2013

Oh, I see. Thanks, Pluto Smile


RE: How to make a rope - Putmalk - 04-09-2013

Thanks. Smile