Jump to content
  • 0

Already has a chat room


mrlongshen

Question


  • Group:  Members
  • Topic Count:  98
  • Topics Per Day:  0.02
  • Content Count:  1302
  • Reputation:   77
  • Joined:  12/04/12
  • Last Seen:  

//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 ? 
Link to comment
Share on other sites

7 answers to this question

Recommended Posts

  • -1

  • Group:  Members
  • Topic Count:  2
  • Topics Per Day:  0.00
  • Content Count:  398
  • Reputation:   131
  • Joined:  11/10/12
  • Last Seen:  

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 by LuLu
  • Upvote 2
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  153
  • Topics Per Day:  0.04
  • Content Count:  567
  • Reputation:   18
  • Joined:  04/15/13
  • Last Seen:  

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 by Yoona
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  98
  • Topics Per Day:  0.02
  • Content Count:  1302
  • Reputation:   77
  • Joined:  12/04/12
  • Last Seen:  

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

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  50
  • Topics Per Day:  0.01
  • Content Count:  1702
  • Reputation:   238
  • Joined:  09/05/12
  • Last Seen:  

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.

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  2
  • Topics Per Day:  0.00
  • Content Count:  398
  • Reputation:   131
  • Joined:  11/10/12
  • Last Seen:  

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

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  98
  • Topics Per Day:  0.02
  • Content Count:  1302
  • Reputation:   77
  • Joined:  12/04/12
  • Last Seen:  

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

Link to comment
Share on other sites


  • Group:  Forum Moderator
  • Topic Count:  93
  • Topics Per Day:  0.02
  • Content Count:  10015
  • Reputation:   2348
  • Joined:  10/28/11
  • Last Seen:  

you can also do this ...

delwaitingroom;
waitingroom "NEW ROOM",0;
end;

but of course the trick using OnInit + waitingroom would be better.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...