Fabrizio gives you a dagger and askes you to kill Aminia when in Wolf form
-She never changes to a wolf, does this have to do with the Time change UTC?
There is a runebook in my library under quests, I verified they all work with this exception...
It used to operate based on game time as far as I know, dont think Ive ever tested it on ServUo though...
-She never changes to a wolf, does this have to do with the Time change UTC?
There is a runebook in my library under quests, I verified they all work with this exception...
It used to operate based on game time as far as I know, dont think Ive ever tested it on ServUo though...
Code:
public override void OnThink()
{
int hours = 0;
int minutes = 0;
Clock.GetTime(this.Map, this.Location.X, this.Location.Y, out hours, out minutes);
if (hours == 21)
{
this.Blessed = false;
this.Body = 0x17;
}
else
{
this.Blessed = true;
this.Body = 0x191;
}
}
Last edited: