Tio Akima
New member
- Messages
- 349
- Points
- 0
- Age
- 36
- Discord
- TioAkima#0636
- Github
- Tio Akima
- Emulator
Hi
I wanted to do a Barter shop
however, in the same npc, put a menu for the player to choose which Barter shop he wants to enter ....
How can I do this?
exmp:
switch(select("- Shop 1:- Shop 2:- Shop 3:- not..thanks.."))
{
case 1:
callshop " Shop 1",1;
end;
case 2:
callshop " Shop 2",1;
end;
case 3:
callshop " Shop 3",1;
end;
case 4:
end;
}
OnInit: {
sellitem White_Herb, 100, Red_Potion, 2;
sellitem Blue_Herb, 200, Red_Potion, 3;
sellitem Green_Herb, 100, Red_Potion, 4;
sellitem White_Herb, 100, Red_Potion, 1;
end;
}
How to call Barter shop and separate items in shop ?
it's possible?
I wanted to do a Barter shop
however, in the same npc, put a menu for the player to choose which Barter shop he wants to enter ....
How can I do this?
exmp:
switch(select("- Shop 1:- Shop 2:- Shop 3:- not..thanks.."))
{
case 1:
callshop " Shop 1",1;
end;
case 2:
callshop " Shop 2",1;
end;
case 3:
callshop " Shop 3",1;
end;
case 4:
end;
}
OnInit: {
sellitem White_Herb, 100, Red_Potion, 2;
sellitem Blue_Herb, 200, Red_Potion, 3;
sellitem Green_Herb, 100, Red_Potion, 4;
sellitem White_Herb, 100, Red_Potion, 1;
end;
}
How to call Barter shop and separate items in shop ?
it's possible?