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 Flying Jesus Help?
Stepper321 Offline
Senior Member

Posts: 263
Threads: 26
Joined: Nov 2011
Reputation: 8
#2
RE: Flying Jesus Help?

theres no; void name(syntax)

I see you tried to make a callback when something happens, but nothing happends cause there are no callbacks WHERE something happens. You will need to create the callback func when start or enter the map, i recommend OnEnter, it doens't get problem the most.
Here is your fixed script.
Quote:////////////////////////////
// Run first time starting map
void OnStart()
{

}

////////////////////////////
// Run when entering map
void OnEnter()
{
AddEntityCollideCallback("Player", "FlyingJesus", "HolyJesus", true, 1)
AddEntityCollideCallback("Jesus", "FlyingJesus", "Sound", true, 1)
AddUseItemCallback("", "Storage Room Key", "Kolmonen", "UsedKeyOnDoor", true);
}

////////////////////////////
// Key to first door

void UsedKeyOnDoor(string &in asItem, string &in asEntity)
{
SetSwingDoorLocked("Kolmonen", false, true);
PlaySoundAtEntity("", "unlock_door", "Kolmonen", 0, false);
RemoveItem("Storage Room Key");
}

///////////////////////////
// Teleporting Naked Guy

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

{
SetEntityActive("Jesus", true)
AddPropForce("Jesus", 0, 0, 30000, "World")
}

void Sound(string &in asParent, string &in asChild, int alState)
{
PlaySoundAtEntity("", "24_iron_maiden.snt", "FlyingJesus_1", 0, false);
}




////////////////////////////
// Run when leaving map
void OnLeave()
{

}

Signature to awesome to be displayed.
(This post was last modified: 03-10-2012, 12:12 PM by Stepper321.)
03-10-2012, 12:09 PM
Find


Messages In This Thread
Flying Jesus Help? - by Andehande - 03-10-2012, 10:25 AM
RE: Flying Jesus Help? - by Stepper321 - 03-10-2012, 12:09 PM
RE: Flying Jesus Help? - by JMFStorm - 03-10-2012, 05:30 PM
RE: Flying Jesus Help? - by Stepper321 - 03-10-2012, 06:43 PM



Users browsing this thread: 1 Guest(s)