Thank you. I just worked the logic out before you posted this. But your reply helped anyway as before hand I was disabling all npc's and then checking afterwards if they should be enabled. The else statement makes a lot more sense.
I'm still having issues with what I thought would be quick and easy =/.
OnInit loads before the NPC is actually enabled, so when the server starts I get an stating that the script isn't enabled when it goes to disable it.
I've included the whole script because there is probably a better way to do this, I also looked through the thread you linked in but couldn't work out how WoE starts when the server does if it's inside the alotted time.
- script Artifact Collector::HE_U 680,{
// NPC Name
set .name$,"[ ^FF0000Joseph^000000 ]";
mes .name$;
mes "^00FF00 ~If I can just make my way to the center...*^000000";
mes "Who's there?!..";
next;
mes "Oh, it's just you.. the one from the Academy right?";
mes "I'm sorry, it's really dark in here and all sorts of";
mes "things are lurking around.";
if (select("What are you doing here?:Just passing by.") == 1)
{
mes "I'm here studying the ancient artifacts.";
mes "They have special properties and with the right magic";
mes "one can craft powerful equipment imbued with the essence";
mes "of their power.";
close;
}
else { close; }
OnClock1000:
enablenpc "Artifact Collector#01";
OnClock1400:
disablenpc "Artifact Collector#01";
enablenpc "Artifact Collector#02";
OnClock1800:
disablenpc "Artifact Collector#02";
OnClock2200:
enablenpc "Artifact Collector#03";
OnClock0200:
disablenpc "Artifact Collector#03";
OnInit:
// NPC:SunkenShip from 10AM - 2PM Servertime
// NPC:Abyss Lake03 from 4PM - 8PM Servertime
// NPC:Pyramid 06 from 10PM - 2AM Servertime
setarray .mapSunken[0], 10, 14;
setarray .mapAbyss[0], 16, 20;
setarray .mapPyramid[0], 22, 2;
set .time, gettime(3);
if( .time >= .mapSunken[0] && .time < .mapSunken[1] )
{
enablenpc "Artifact Collector#01";
}
else
{
disablenpc "Artifact Collect#01";
}
if( .time >= .mapAbyss[0] && .time < .mapAbyss[1] )
{
enablenpc "Artifact Collector#02";
}
else
{
disablenpc "Artifact Collector#02";
}
if( .time >= .mapPyramid[0] || .time < .mapPyramid[1] )
{
enablenpc "Artifact Collector#03";
}
else
{
disablenpc "Artifact Collector#03";
}
end;
}
treasure02,53,34,0 duplicate(HE_U) Artifact Collector#01 680
abyss_03,95,101,0 duplicate(HE_U) Artifact Collector#02 680
moc_pryd06,186,13,4 duplicate(HE_U) Artifact Collector#03 680