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
NEED HELP!!! plz answer.
ZxBrad Offline
Member

Posts: 140
Threads: 29
Joined: Mar 2011
Reputation: 0
#1
NEED HELP!!! plz answer.

I dont know what im doing wrong. This stuff is confusing.
all i want is a door to close behind me and my character to spin around and look at it. Heres the my script for it. The game keeps giving me an error when i try to start up the map.

Spoiler below!

////////////////////////////
// Run first time starting map
void OnStart()

{
SetMessage("Journal", "start", 8.0f);
AddUseItemCallback("", "doorkey_1", "castle_1", "UsedKeyOnDoor", true);
AddUseItemCallback("", "exitkey_1", "metal_1", "UsedKeyOnDoor", true);
AddEntityCollideCallback("Player" , "ScriptArea_1" , "MonsterFunc1" , true , 1);
AddEntityCollideCallback("Player", "doorslam", "Collidedoorslam, true, 1);
}

void Collidedoorslam(string &in asParent, string &in asChild, int alState)

{
StartPlayerLookAt("castle_2", 6, 8, "");
SetSwingDoorClosed("castle_2". true, true);
}

void UsedKeyOnDoor(string &in asItem, string &in asEntity)

{
SetSwingDoorLocked("castle_1", false, true);
PlaySoundAtEntity("", "unlock_door", "castle_1", 0, false);
RemoveItem("doorkey_1");
SetSwingDoorLocked("metal_1", false, true);
PlaySoundAtEntity("", "unlock_door", "metal_1", 0, false);
RemoveItem("exitkey_1");
}

void MonsterFunc1(string &in asParent , string &in asChild , int alState)

{
SetEntityActive("servant_grunt_1" , true);
}


WARNING: Noob Doesn't Know How To Script.
[Image: xcn384.gif]

04-11-2011, 03:43 AM
Find


Messages In This Thread
NEED HELP!!! plz answer. - by ZxBrad - 04-11-2011, 03:43 AM
RE: NEED HELP!!! plz answer. - by Anxt - 04-11-2011, 04:03 AM
RE: NEED HELP!!! plz answer. - by MrBigzy - 04-11-2011, 04:11 AM
RE: NEED HELP!!! plz answer. - by ZxBrad - 04-11-2011, 04:49 AM
RE: NEED HELP!!! plz answer. - by Dalroc - 04-11-2011, 09:47 AM
RE: NEED HELP!!! plz answer. - by ZxBrad - 04-12-2011, 02:38 PM



Users browsing this thread: 1 Guest(s)