Just use the same script, but rename the shops and functions accordingly.
- shop qshop1 -1,909:-1
to
- shop bshop1 -1,909:-1
function script qshop {
to
function script bshop {
dispbottom "Select one item at a time.";
callshop "qshop"+@shop_index,1;
npcshopattach "qshop"+@shop_index;
to
dispbottom "Select one item at a time.";
callshop "bshop"+@shop_index,1;
npcshopattach "bshop"+@shop_index;
npcshopdelitem "qshop"+.@i,909;
to
npcshopdelitem "bshop"+.@i,909;
- script quest_shop -1,{
to
- script bquest_shop -1,{
and lastly
payon,148,222,5 script Headgear List 123,{
callfunc "qshop";
}
to
payon,148,222,5 script Headgear List 123,{
callfunc "bshop";
}
This is the lazy method that I manage to come up with, really easy to do.