kartanonperuna
Posting Freak
Posts: 755
Threads: 44
Joined: Oct 2011
Reputation:
8
|
RE: How do I open a door with a crowbar?
Yes.Dont hate me.
|
|
01-05-2012, 02:47 PM |
|
flamez3
Posting Freak
Posts: 1,281
Threads: 48
Joined: Apr 2011
Reputation:
57
|
RE: How do I open a door with a crowbar?
(01-05-2012, 02:47 PM)kartanonperuna Wrote: Yes.Dont hate me. You pirated the game, no wonder the scripts aren't working, that and you have them in the wrong spot.
Make a .txt file in the same folder as your maps; now rename it exactly as your map name is. Now replace .txt with .hps. After that go into it through notepad and copy everything here into it:
Quote:void OnStart()
{
AddUseItemCallback("", "crowbar_1", "prison_locked", "UnlockDoor", true);
AddEntityCollideCallback("crowbar_joint_1", "door_script_1", "crowbarfunc", true, 1);
}
void UnlockDoor(string &in asItem, string &in asEntity)
{
SetEntityActive("crowbar_joint_1", true);
//SetSwingDoorLocked("prison_locked", false, true);
//PlaySoundAtEntity("", "unlock_door", "prison_locked", 0, false);
RemoveItem("crowbar_1");
}
void crowbarfunc(string &in asParent, string &in asChild, int alState)
{
SetPropHealth("prison_locked", 0.0f);
SetEntityActive("crowbar_joint_1", false);
SetEntityActive("crowbar_dyn_1", true);
//PlaySoundAtEntity("", "unlock_door", "prison_locked", 0, false);
}
If that doesn't work I can only assume that it's the version you downloaded from.
|
|
01-05-2012, 02:53 PM |
|
kartanonperuna
Posting Freak
Posts: 755
Threads: 44
Joined: Oct 2011
Reputation:
8
|
RE: How do I open a door with a crowbar?
Ok I have bought the game.So I'm going to try it now.
Still doesnt work..
(This post was last modified: 01-06-2012, 12:43 AM by kartanonperuna.)
|
|
01-05-2012, 11:48 PM |
|
kartanonperuna
Posting Freak
Posts: 755
Threads: 44
Joined: Oct 2011
Reputation:
8
|
RE: How do I open a door with a crowbar?
Help?
|
|
01-06-2012, 12:50 AM |
|
flamez3
Posting Freak
Posts: 1,281
Threads: 48
Joined: Apr 2011
Reputation:
57
|
RE: How do I open a door with a crowbar?
(01-06-2012, 12:50 AM)kartanonperuna Wrote: Help? Did you do as I told you in the above post? Exactly?
|
|
01-06-2012, 02:33 AM |
|
kartanonperuna
Posting Freak
Posts: 755
Threads: 44
Joined: Oct 2011
Reputation:
8
|
RE: How do I open a door with a crowbar?
Yup.Dont know what can be the problem.
|
|
01-06-2012, 11:20 PM |
|
Statyk
Schrödinger's Mod
Posts: 4,390
Threads: 72
Joined: Sep 2011
Reputation:
241
|
RE: How do I open a door with a crowbar?
Fixed it for ya ;]
|
|
01-07-2012, 12:58 AM |
|
kartanonperuna
Posting Freak
Posts: 755
Threads: 44
Joined: Oct 2011
Reputation:
8
|
RE: How do I open a door with a crowbar?
Yes you indeed did.Hes the one who saw the miserable fails i have done.I cant thank you enough.
|
|
01-07-2012, 02:19 AM |
|
BlueFury
Senior Member
Posts: 470
Threads: 30
Joined: May 2011
Reputation:
9
|
RE: How do I open a door with a crowbar?
I'm not hating on you but I hope for you that you bought the game, this forum isn't for the people who pirated the game.
Sticks and stones may break our bones, but words will break our hearts. – Robert Fulghum
|
|
01-07-2012, 02:23 AM |
|
kartanonperuna
Posting Freak
Posts: 755
Threads: 44
Joined: Oct 2011
Reputation:
8
|
RE: How do I open a door with a crowbar?
Yes I did buy it.Didnt you read the earlier posts?
|
|
01-07-2012, 02:36 AM |
|
|