Frictional Games Forum (read-only)

Full Version: [WIP] Skitzometric - New custom sotry
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi everyone. First post here.
Ive started working on a new custom story entitled "Skitzometric."
I haven't done any mod work in at least four years and it feels great to do it again.
Anyway i have a basic idea for the story. Since I'm sure it will change a lot I'm not going to go much
into that right now. I do have the start area almost mapped out now. Still have to do alot of work with
the lighting and adding props and what not. Anyhow tell me what you guys think so far.

[Image: skitzometric20111005130.jpg]
[Image: skitzometric20111005130.jpg] [Image: skitzometric20111005.jpg] [Image: skitzometric20111005.jpg]
Looks good Smile!
Heres a small update.
[Image: amnesia2011101210163374.jpg] [Image: amnesia2011101210170900.jpg]
Very nice indeed Smile
Hope you keep working on it.
Those screens are very impressive, looking forward to more updates Smile

Good luck
Thanks guys. Quick question. How would I set a item to break a lock? I tried using

AddUseItemCallback("", "Hammer", "Padlock_main", "CellDoorMainOpen", true);


void CellDoorMainOpen(string &in asItem, string &in asEntity)
{
SetSwingDoorLocked("CellDoorMain", false, true);
SetPropHealth("Padlock_main", 0);
PlaySoundAtEntity("", "wheel_metal_min_max.snt", "CellDoorMain", 0, false);
AddTimer("", 0.5f, "FirstGrunt");
}

any ideas? haven't had to hard of a time with the scripts but can't seem to get this to work.