Frictional Games Forum (read-only)

Full Version: Fast answer please
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Nothing.
I'm guessing "Touch" is the name of an area?

It might help to enable it before creating the particle. I don't know if it's possible to create particles at inactive areas.

PHP Code:
void BeginPortal(string &in asParentstring &in asChildint alState)
{
    
SetEntityActive("Touch"true); // Moved this line up here.
    
CreateParticleSystemAtEntity("Poral_Open""ps_orb_room_portal_open.ps""Touch"false);
    
//Remember to create the different particle systems. I don't have the names here.

    
AddTimer("OpenPortal"5"PortalTimer");

    
SetLocalVarInt("PortalOpen"0);

Nothing.
Nothing.