Mr BrycE Posted July 24, 2012 Group: Members Topic Count: 125 Topics Per Day: 0.03 Content Count: 595 Reputation: 24 Joined: 02/23/12 Last Seen: April 1, 2018 Share Posted July 24, 2012 how to make npc show up when its Night or Day mode? Quote Link to comment Share on other sites More sharing options...
EvilPuncker Posted July 24, 2012 Group: Members Topic Count: 19 Topics Per Day: 0.00 Content Count: 713 Reputation: 71 Joined: 11/08/11 Last Seen: December 25, 2024 Share Posted July 24, 2012 use OnClock + *hideonnpc "<NPC object name>"; *hideoffnpc "<NPC object name>"; or *disablenpc "<NPC object name>"; *enablenpc "<NPC object name>"; Quote Link to comment Share on other sites More sharing options...
Mr BrycE Posted July 26, 2012 Group: Members Topic Count: 125 Topics Per Day: 0.03 Content Count: 595 Reputation: 24 Joined: 02/23/12 Last Seen: April 1, 2018 Author Share Posted July 26, 2012 - script Anne -1,{ OnInit: disablenpc "Anne Curtis"; end; OnClock0600: OnClock1800: enablenpc "Anne Curtis"; Hyrule,190,214,5 script Anne Curtis 465,{ if( pudge ) { warp "dewata",232,53; announce " "+strcharinfo(0)+": has been warped to Pain's Six Paths Dungeon!!",bc_all; end; } if( countitem(6048) >= 20 && countitem(7078) >= 5 && countitem(6153) >= 1000) { delitem 6048,20; delitem 7078,5; delitem 6153,1000; set pudge, 1; warp "dewata",232,53; announce " "+strcharinfo(0)+": has been warped to !!",bc_all; } else { warp "dicastes01",210,168; dispbottom "ee"; } end; } is that right? >.< bump bump... bump Quote Link to comment Share on other sites More sharing options...
Arcenciel Posted July 27, 2012 Group: Members Topic Count: 69 Topics Per Day: 0.01 Content Count: 1315 Reputation: 372 Joined: 12/10/11 Last Seen: August 31, 2013 Share Posted July 27, 2012 hyrule,190,214,5 script Anne Curtis 465,{ if( pudge ) { warp "dewata",232,53; announce " "+strcharinfo(0)+": has been warped to Pain's Six Paths Dungeon!!",bc_all; end; } if( countitem(6048) >= 20 && countitem(7078) >= 5 && countitem(6153) >= 1000) { delitem 6048,20; delitem 7078,5; delitem 6153,1000; set pudge, 1; warp "dewata",232,53; announce " "+strcharinfo(0)+": has been warped to !!",bc_all; } else { warp "dicastes01",210,168; dispbottom "ee"; } end; OnInit: disablenpc "Anne Curtis"; end; OnClock0600: OnClock1800: enablenpc "Anne Curtis"; end; } Did not test that at all corrected what I can tell was wrong without testing. Quote Link to comment Share on other sites More sharing options...
Mr BrycE Posted July 28, 2012 Group: Members Topic Count: 125 Topics Per Day: 0.03 Content Count: 595 Reputation: 24 Joined: 02/23/12 Last Seen: April 1, 2018 Author Share Posted July 28, 2012 (edited) ok i will test it thank you... Question: OnInit: disablenpc "Anne Curtis"; end; OnClock0600: OnClock1800: enablenpc "Anne Curtis"; end; } onInit, is automatic disablenpc right? and when those OnCLock Triggered: when will the Anne Curtis NPC will be back to Disable NPC? Edited July 28, 2012 by Mr BrycE Quote Link to comment Share on other sites More sharing options...
Arcenciel Posted July 28, 2012 Group: Members Topic Count: 69 Topics Per Day: 0.01 Content Count: 1315 Reputation: 372 Joined: 12/10/11 Last Seen: August 31, 2013 Share Posted July 28, 2012 Actually... hyrule,190,214,5 script Anne Curtis 465,{ if( pudge ) { warp "dewata",232,53; announce " "+strcharinfo(0)+": has been warped to Pain's Six Paths Dungeon!!",bc_all; end; } if( countitem(6048) >= 20 && countitem(7078) >= 5 && countitem(6153) >= 1000) { delitem 6048,20; delitem 7078,5; delitem 6153,1000; set pudge, 1; warp "dewata",232,53; announce " "+strcharinfo(0)+": has been warped to !!",bc_all; } else { warp "dicastes01",210,168; dispbottom "ee"; } end; OnInit: if (isnight()) { disablenpc "Anne Curtis";} end; } You need to add two OnClocks depending on when night and day begins. For the OnClock at night, disable the npc. For the OnClock at day, enable the npc. Quote Link to comment Share on other sites More sharing options...
Question
Mr BrycE
how to make npc show up when its Night or Day mode?
Link to comment
Share on other sites
5 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.