| 2057 | } |
| 2058 | |
| 2059 | void StartGoldDrop() |
| 2060 | { |
| 2061 | initialDropGoldIndex = pcursinvitem; |
| 2062 | if (pcursinvitem <= INVITEM_INV_LAST) |
| 2063 | initialDropGoldValue = plr[myplr].InvList[pcursinvitem - INVITEM_INV_FIRST]._ivalue; |
| 2064 | else |
| 2065 | initialDropGoldValue = plr[myplr].SpdList[pcursinvitem - INVITEM_BELT_FIRST]._ivalue; |
| 2066 | dropGoldFlag = TRUE; |
| 2067 | dropGoldValue = 0; |
| 2068 | if (talkflag) |
| 2069 | control_reset_talk(); |
| 2070 | } |
| 2071 | |
| 2072 | BOOL UseInvItem(int pnum, int cii) |
| 2073 | { |
no test coverage detected