The following warnings occurred:
Warning [2] count(): Parameter must be an array or an object that implements Countable - Line: 906 - File: showthread.php PHP 7.2.24-0ubuntu0.18.04.17 (Linux)
File Line Function
/showthread.php 906 errorHandler->error



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


Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Script Help Sliding Shelf
CarnivorousJelly Offline
Posting Freak

Posts: 1,196
Threads: 41
Joined: Dec 2012
Reputation: 80
#1
Sliding Shelf

I've been trying to make a shelf slide like a secret door for... probably five hours now. I had it moving earlier, but in the wrong direction (positive X instead of positive Z based on world coordinates). This is the current script I'm using for it:
void OnEnter()
{
    AddEntityCollideCallback("book_moveable_1", "AreaBookPulled_1", "Secret_Shelf", true, 1);
}

void Secret_Shelf(string &in asParent, string &in asChild, int alState)
{
    AddPropForce("shelf_secret_door_1", 0.00f, 0.00f, 1000.00f, "world");
    PlaySoundAtEntity("click", "lock_door", "Player", 0, false);
}

The shelf in question started off being the shelf_secret_door.ent, which I had moving based on "SetMoveObjectState". There were two problems with this:
1. Shelf moved along the X axis (forward), I want it to move along the Z axis (left)
2. The books on the shelf didn't move with it

Now I've switched it out for shelf_high_01.ent, which doesn't move at all. with either the SetMoveObjectState or AddPropForce.

I've looked at TDD scripts, other CS scripts, checked the forum and the wiki to no avail. If you have any suggestions at all, please help me; I'm completely stumped.

Thanks for being so patient with me Smile

[Image: quote_by_rueppells_fox-d9ciupp.png]
03-18-2013, 06:41 AM
Find


Messages In This Thread
Sliding Shelf - by CarnivorousJelly - 03-18-2013, 06:41 AM
RE: Sliding Shelf - by PutraenusAlivius - 03-18-2013, 07:00 AM
RE: Sliding Shelf - by FlawlessHappiness - 03-18-2013, 07:04 AM
RE: Sliding Shelf - by NaxEla - 03-18-2013, 07:14 AM
RE: Sliding Shelf - by Akos115 - 03-18-2013, 08:20 PM
RE: Sliding Shelf - by CarnivorousJelly - 03-18-2013, 10:07 PM



Users browsing this thread: 1 Guest(s)