Akbare Posted January 19, 2012 Posted January 19, 2012 thanks for read the thread i want to ask, how to make npc enable and disable the following day at Friday 13:00 to 16:00 This script would I use to safe refine npc thanks for advance Quote
Joseph Posted January 19, 2012 Posted January 19, 2012 (edited) map,x,y,z script NPC_Name Sprite,{ //Your Script Here end; OnClock1300: enablenpc strnpcinfo(0); end; OnClock1600: disablenpc strnpcinfo(0); end; OnInit: if (gettime(3) >= 13 && gettime(3) < 16) enablenpc strnpcinfo(0); disablenpc strnpcinfo(0); end; } Edited January 19, 2012 by Joseph Quote
Akbare Posted January 19, 2012 Author Posted January 19, 2012 thanks joseph....i want to try thanks Quote
Emistry Posted January 20, 2012 Posted January 20, 2012 these line if (gettime(3) >= 13 && gettime(3) < 16) enablenpc strnpcinfo(0); disablenpc strnpcinfo(0); should be like this disablenpc strnpcinfo(0); if (gettime(3) >= 13 && gettime(3) < 16) enablenpc strnpcinfo(0); Quote
Question
Akbare
thanks for read the thread
i want to ask,
how to make npc enable and disable the following day at
Friday 13:00 to 16:00
This script would I use to safe refine npc
thanks for advance
3 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.