Frictional Games Forum (read-only)

Full Version: Ladder Item not working on piece of ladder?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
This is strange I have same areas builded on "Professor Brislows castle" First Ladder area then Area where piece of ladder goes.

and this is the script:

{
AddUseItemCallback("", "ladder_item_1", "PlaceLadder", "LadderOn", true);
}

void LadderOn(string &in asItem, string &in asEntity)
{
SetEntityActive("LadderArea_1", true);
SetEntityActive("ladder_static_1", true);
GiveSanityBoostSmall();
}

Not working what im missing?

Help is quickly needed then I can finish this map for good Smile
What is PlaceLadder? an Area?
(07-02-2011, 04:09 PM)Hardarm Wrote: [ -> ]What is PlaceLadder? an Area?

Static entity from justine.
Are you sure in the map is called like that?
And why doesn't the first function have a name?
(07-03-2011, 01:28 AM)Hardarm Wrote: [ -> ]Are you sure in the map is called like that?
And why doesn't the first function have a name?

It's called and what first function not having a name? I have that name "LadderOn" ? or what are you meaning? Huh
(07-03-2011, 09:31 AM)HumiliatioN Wrote: [ -> ]
(07-03-2011, 01:28 AM)Hardarm Wrote: [ -> ]Are you sure in the map is called like that?
And why doesn't the first function have a name?

It's called and what first function not having a name? I have that name "LadderOn" ? or what are you meaning? Huh

EDIT: Okay i fixed the problem but now when i "put that piece on that mount ladder okay it builds that piece of ladder touchable ladder but i cant climb it Sad

Whats the problem ?

Script:


void OnStart()
{
AddEntityCollideCallback("Player", "Entrymusic", "MusicControl", false, 0);
AddEntityCollideCallback("Player", "Flying_corpse", "Scarecorpse", true, 1);
AddEntityCollideCallback("Player", "Reversescares", "Horrordogs", true, 1);
AddUseItemCallback("", "ladder_item_1", "ladder_mount_1", "spawnladder", true);
}

void spawnladder(string &in asItem, string &in asEntity)
{
SetEntityActive("static_1", true);
SetEntityActive("LadderArea_1", true);
SetEntityActive("ladder_item_1", false);
RemoveItem("ladder_item_1");
GiveSanityBoostSmall();
}

Help is needed again!


Yeah you have to replace the ladder area a thousand of times till it's working, I always put it in different positions if it isn't working, Try to keep it some inches far from the ladder or check the sewers map or the cistern entrance to have an idea how it shall be putted :/

Send me an image of your area ladder in the editor
(07-03-2011, 01:32 PM)Hardarm Wrote: [ -> ]Yeah you have to replace the ladder area a thousand of times till it's working, I always put it in different positions if it isn't working, Try to keep it some inches far from the ladder or check the sewers map or the cistern entrance to have an idea how it shall be putted :/

Send me an image of your area ladder in the editor

Never mind I got it working "Ladder area was too small to character" Smile