| 570 | } |
| 571 | |
| 572 | BOOL SmithSellOk(int i) |
| 573 | { |
| 574 | if (plr[myplr].InvList[i]._itype == ITYPE_NONE) |
| 575 | return FALSE; |
| 576 | if (plr[myplr].InvList[i]._itype == ITYPE_MISC) |
| 577 | return FALSE; |
| 578 | if (plr[myplr].InvList[i]._itype == ITYPE_GOLD) |
| 579 | return FALSE; |
| 580 | if (plr[myplr].InvList[i]._itype == ITYPE_0E) |
| 581 | return FALSE; |
| 582 | if (plr[myplr].InvList[i]._itype == ITYPE_STAFF) |
| 583 | return FALSE; |
| 584 | if (plr[myplr].InvList[i].IDidx == IDI_LAZSTAFF) |
| 585 | return FALSE; |
| 586 | |
| 587 | return TRUE; |
| 588 | } |
| 589 | |
| 590 | void S_ScrollSSell(int idx) |
| 591 | { |