Aller au contenu

Photo

EffectTimeStop question


  • Veuillez vous connecter pour répondre
2 réponses à ce sujet

#1
Mad.Hatter

Mad.Hatter
  • Members
  • 165 messages
I was wondering what the most efficient way to apply a time stop effect via a unique power in only the area in which the activator is in.

I have it to where I can freeze the whole module, but since I plan for multiplayer, I would like to make it more friendly.

Is it possible?

void main()
{
object oPC = GetItemActivator;
object oArea = GetArea(oPC);
effect eEffect = EffectTimeStop;

ApplyEffectToObject(DURATION_TYPE_TEMPORARY, eEffect, oArea, 30.0);
}

I'm at work or I'd test it.

#2
FunkySwerve

FunkySwerve
  • Members
  • 1 308 messages
You can't. There are dozens of timestop replacement scripts on the Vault, however, for multiplayer use. Most of them use CutsceneParalyze on all creatures in area but caster, but you're better off looking at a few of them yourself, since there are some nuances. I'd post ours, but I'm on a new computer, and have yet to reinstall everything.
Funky

#3
Mad.Hatter

Mad.Hatter
  • Members
  • 165 messages
Thanks. It figures that it wouldn't be that simple.