mrlongshen Posted October 30, 2013 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
-1 LuLu Posted October 30, 2013 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
Yoona Posted October 30, 2013 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
mrlongshen Posted October 30, 2013 Author 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
Patskie Posted October 30, 2013 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
LuLu Posted October 30, 2013 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
mrlongshen Posted October 30, 2013 Author 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
Emistry Posted October 31, 2013 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
Question
mrlongshen
Every time I click on the npc this error appear.
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.