I have 2 invisible cash shop npcs and I call them from another npc depending on the choice.
The problem is even though I pick "Usables", which is case 1, it opens the Costumes Cash Shop, which is case 2.
- cashshop Usables Shop -1,14003:15,12902:100
- cashshop Costumes Shop -1,20404:1000,20459:1000,31057:1000,31062:1000,31178:1000,31199:1000
payon,171,142,4 script Cash Shop 874,{
switch(select("Usables:Costumes:Cancel")) {
case 1:
callshop "Usables Shop", 1;
case 2:
callshop "Costumes Shop", 1;
case 3:
close;
}
}