Jump to content
  • 0

Already has a chat room


Question

Posted
//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 ? 

7 answers to this question

Recommended Posts

  • -1
Posted (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 by LuLu
  • Upvote 2
Posted (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 by Yoona
Posted

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

Posted

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.

Posted

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

Posted

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

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.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...