mrlongshen Posted October 30, 2013 Group: Members Topic Count: 98 Topics Per Day: 0.02 Content Count: 1302 Reputation: 79 Joined: 12/04/12 Last Seen: September 26, 2019 Share Posted October 30, 2013 //Quest Warper prontera,164,162,4 script Questing Warper 790,{ warp "que_temsky" ,99,141; OnInit: waitingroom "[ Questing Room ]",0; end; } Every time I click on the npc this error appear. [Error]: chat_createnpcchat: npc 'Questing Warper' already has a chatroom, cannot create new one! How to fix it ? Quote Link to comment Share on other sites More sharing options...
-1 LuLu Posted October 30, 2013 Group: Members Topic Count: 2 Topics Per Day: 0.00 Content Count: 398 Reputation: 131 Joined: 11/10/12 Last Seen: October 6, 2024 Share Posted October 30, 2013 (edited) there no end; so it will continue and process the whole waitingroom again. //Quest Warper prontera,164,162,4 script Questing Warper 790,{ warp "que_temsky" ,99,141; end; //NO END OnInit: waitingroom "[ Questing Room ]",0; end; } Edited October 30, 2013 by LuLu 2 Quote Link to comment Share on other sites More sharing options...
Yoona Posted October 30, 2013 Group: Members Topic Count: 153 Topics Per Day: 0.03 Content Count: 567 Reputation: 18 Joined: 04/15/13 Last Seen: April 21, 2016 Share Posted October 30, 2013 (edited) Change prontera,164,162,4 script Questing Warper 790,{ Into prontera.gat,164,162,4 script Questing Warper 790, or use my script , just edit it zhakastia,111,44,3 script Quest Warper 415,{ mes "[ Quest Warper]"; mes "How are you doing today?"; next; mes "[ Quest Warper]"; mes "Going to get some Quest?"; menu "Yes, I am",GoOn,"No, Not enough Credits",GoBack; GoOn: mes "I will warp you now"; emotion e_no1; warp "turbo_room", 100, 110; end; GoBack: mes "Then, later Okay?!"; end; OnInit: waitingroom "Quest / Vending Area",0; end; } turbo_room,96,106,5 script Exit Area 415,{ mes "[ Exit Warper]"; mes " Ohh, Youre done? "; next; mes "[ Exit Warper]"; mes "Sad, because your leaving"; menu "Yes, I want to exit",GoingOn,"Im, Staying",Stay; GoingOn: mes "[ Exit Warper]"; mes "Bye then"; emotion e_sob; next; mes "[ Exit Warper]"; mes "..."; warp "zhakastia", 97, 62; end; Stay: mes "[ Exit Warper]"; mes "Yehey, Let's party"; emotion e_heh; next; mes "[ Exit Warper]"; mes "My treat ! Let's go"; end; OnInit: waitingroom "Exit Warper",0; end; } // Quest Dupplicate prontera,162,173,3 duplicate(Quest Warper) Quest Warper#pront 415 Edited October 30, 2013 by Yoona Quote Link to comment Share on other sites More sharing options...
mrlongshen Posted October 30, 2013 Group: Members Topic Count: 98 Topics Per Day: 0.02 Content Count: 1302 Reputation: 79 Joined: 12/04/12 Last Seen: September 26, 2019 Author Share Posted October 30, 2013 there no end; so it will continue and process the whole waitingroom again. //Quest Warper prontera,164,162,4 script Questing Warper 790,{ warp "que_temsky" ,99,141; end; //NO END OnInit: waitingroom "[ Questing Room ]",0; end; } its have end sir T_T Quote Link to comment Share on other sites More sharing options...
Patskie Posted October 30, 2013 Group: Members Topic Count: 50 Topics Per Day: 0.01 Content Count: 1702 Reputation: 241 Joined: 09/05/12 Last Seen: November 10, 2024 Share Posted October 30, 2013 This is your script @mrlongshen : //Quest Warper prontera,164,162,4 script Questing Warper 790,{ warp "que_temsky" ,99,141; OnInit: waitingroom "[ Questing Room ]",0; end; } there is a missing end after the warp command. Quote Link to comment Share on other sites More sharing options...
LuLu Posted October 30, 2013 Group: Members Topic Count: 2 Topics Per Day: 0.00 Content Count: 398 Reputation: 131 Joined: 11/10/12 Last Seen: October 6, 2024 Share Posted October 30, 2013 This is your script @mrlongshen : //Quest Warper prontera,164,162,4 script Questing Warper 790,{ warp "que_temsky" ,99,141; OnInit: waitingroom "[ Questing Room ]",0; end; } there is a missing end after the warp command. yes what you post is my edit one. xD Quote Link to comment Share on other sites More sharing options...
mrlongshen Posted October 30, 2013 Group: Members Topic Count: 98 Topics Per Day: 0.02 Content Count: 1302 Reputation: 79 Joined: 12/04/12 Last Seen: September 26, 2019 Author Share Posted October 30, 2013 This is your script @mrlongshen : //Quest Warper prontera,164,162,4 script Questing Warper 790,{ warp "que_temsky" ,99,141; OnInit: waitingroom "[ Questing Room ]",0; end; } there is a missing end after the warp command. yes what you post is my edit one. xD thx bro. +1 for u. topic solved xD Quote Link to comment Share on other sites More sharing options...
Emistry Posted October 31, 2013 Group: Forum Moderator Topic Count: 93 Topics Per Day: 0.02 Content Count: 10018 Reputation: 2369 Joined: 10/28/11 Last Seen: 13 hours ago Share Posted October 31, 2013 you can also do this ... delwaitingroom; waitingroom "NEW ROOM",0; end; but of course the trick using OnInit + waitingroom would be better. Quote Link to comment Share on other sites More sharing options...
Question
mrlongshen
Every time I click on the npc this error appear.
Link to comment
Share on other sites
7 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.