xin Posted October 30, 2012 Group: Members Topic Count: 4 Topics Per Day: 0.00 Content Count: 26 Reputation: 1 Joined: 10/19/12 Last Seen: November 9, 2012 Share Posted October 30, 2012 well what I wan't here is to have an npc that targets another npc. sample prontera NPC: input message; // just some random message then after that the NPC in izlude will be enabled and show the message that was put in prontera NPC. thanks in advance Quote Link to comment Share on other sites More sharing options...
goddameit Posted October 30, 2012 Group: Members Topic Count: 60 Topics Per Day: 0.01 Content Count: 562 Reputation: 219 Joined: 11/22/11 Last Seen: August 3, 2024 Share Posted October 30, 2012 (edited) use $@ , $ or . type to storage your message and after typed messages, do enablenpc + ( donpcevent + label(if you won't use announce)) or use ( getnpcid + unittalk ) or ( initnpctimer <name> + OnTimer ) [What I think : NPC will appear and talk something] Edited October 30, 2012 by goddameit Quote Link to comment Share on other sites More sharing options...
Bin4ry Posted October 30, 2012 Group: Members Topic Count: 30 Topics Per Day: 0.01 Content Count: 782 Reputation: 82 Joined: 01/01/12 Last Seen: September 21, 2015 Share Posted October 30, 2012 (edited) 150,150,1 script ABC 53,{ input .ABC$; dispbottom "Activated."; donpcevent "DEF::OnEnable"; end; } 152,152,1 script DEF 53;{ getvariableofnpc(.ABC$,"ABC"); mes .ABC$; mes "From ABC."; close; OnEnable: hideoffnpc; end; OnInit: hideonnpc; end; } Something like this? Edited October 30, 2012 by darristan 1 Quote Link to comment Share on other sites More sharing options...
xin Posted October 31, 2012 Group: Members Topic Count: 4 Topics Per Day: 0.00 Content Count: 26 Reputation: 1 Joined: 10/19/12 Last Seen: November 9, 2012 Author Share Posted October 31, 2012 (edited) awesome thanks a lot and is it possible to make the npc unclickable/unavailable when someone is talking to it? Edited October 31, 2012 by xin Quote Link to comment Share on other sites More sharing options...
Question
xin
well what I wan't here is to have an npc that targets another npc.
sample
prontera NPC: input message; // just some random message
then after that the NPC in izlude will be enabled and show the message that was put in prontera NPC.
thanks in advance
Link to comment
Share on other sites
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.