Ah okay, if you just want to add a waiting room to that NPC then the solution is to have the NPC call on a shop. A shop script itself cannot display anything special other than a sprite and a name, unlike other NPCs that can display effects, dialogue boxes, etc. Shop scripts are only for one thing: shops.
So! To fix this, we just need to create a regular NPC with that chat room, and then have it call upon a shop.
Here is the code:
/////////////////////////////////////////////
// GreenMagic469's Scripts //
///////////////////////////////////////////////////////////
// Kafra Shop (Created 01/08/2016) //
//////////////////////////////////////////////////////////
prontera,158,173,4 cashshop KShop -1,7179:1000
prontera,158,173,4 script Kafra Shop Employee 116,{
OnInit:
waitingroom "FUKING ENCHANTER!",0;
callshop "KShop",-1;
close;
end;
}