Page 1 of 1
an area
Posted: Fri Jan 22, 2010 12:00 am
by *mute83
an area
Posted: Fri Jan 22, 2010 12:00 am
by *cryptc
Looks like we might be able to use for something yeah, maybe after adding some more stuff to make it seem less bare, but basic look is nice...
Unfortunately main builder (Mr_Otyugh) isn't available for a while, so can't really make it ready for game, if you want though you can send it to me and I'll atleast put it in the unfinished areas pile hehe...
an area
Posted: Fri Jan 22, 2010 12:00 am
by *mute83
sure, pm me your e-mail :)
and there are other parts of the area, with more in them. these where just the screens i took as i didnt want to show to much, as it was ment to be a secret place, for the server i first tried to get it added :) there is a smally libray, sleeping chambers and a alchemy place, to name some things :)
an area
Posted: Fri Jan 22, 2010 12:00 am
by *mute83
it should have been send now, compressed and such.
when you look at it, the biggest area (cult area) there is a light beam in the end, in on of the sides, it was to remind me, and i was trying to find a way, to represent a dragon should be able to get in, some way.
and the statue in the area with the green water, has myrkuls description
an area
Posted: Fri Jan 22, 2010 12:00 am
by *cryptc
I'll take a look when I get a chance, or get an actual area builder to look at it hehe
I know MoW expansion has a dragon statue, and I'd been meaning to get a script that has a npc rooted and without idle animation to make statues... will look into it
Thanks :)
an area
Posted: Sat Jan 23, 2010 12:00 am
by *Dedic8ed
You ask, and you shall receive. A friend of mine put this together for me about two and a half years ago for just the purpose you describe in a server I was doing quite a bit of the design for... this freezes the npc in the "worship" position. I had it combined with grey skin; I like to think it turned out well.
wrote:void main()
{
float fFacing = GetFacing(OBJECT_SELF);
SetFacing(fFacing);
if(GetLocalInt(OBJECT_SELF, "doOnce") == FALSE)
  {
    SetLocalInt(OBJECT_SELF, "doOnce", TRUE);
    effect eFreeze = EffectVisualEffect(VFX_DUR_FREEZE_ANIMATION);
    if(GetPlotFlag(OBJECT_SELF) == TRUE)
    {
     SetPlotFlag(OBJECT_SELF, FALSE);
    }
    if(GetImmortal(OBJECT_SELF) == TRUE)
    {
     SetImmortal(OBJECT_SELF, FALSE);
    }
 AssignCommand(OBJECT_SELF, ClearAllActions());
   DelayCommand(60.0, AssignCommand(OBJECT_SELF, PlayAnimation(ANIMATION_LOOPING_WORSHIP, 2.0, 9999.0)));
   DelayCommand(61.0, ApplyEffectToObject(DURATION_TYPE_PERMANENT, eFreeze, OBJECT_SELF));
   SetPlotFlag(OBJECT_SELF, TRUE);
   SetImmortal(OBJECT_SELF, TRUE);
  }
}
an area
Posted: Sat Jan 23, 2010 12:00 am
by *cryptc
cool thanks :)