| 1304 | } |
| 1305 | |
| 1306 | void S_StartIdShow() |
| 1307 | { |
| 1308 | char iclr; |
| 1309 | |
| 1310 | StartStore(stextshold); |
| 1311 | stextscrl = FALSE; |
| 1312 | ClearSText(5, 23); |
| 1313 | iclr = COL_WHITE; |
| 1314 | |
| 1315 | if (plr[myplr].HoldItem._iMagical != ITEM_QUALITY_NORMAL) |
| 1316 | iclr = COL_BLUE; |
| 1317 | if (!plr[myplr].HoldItem._iStatFlag) |
| 1318 | iclr = COL_RED; |
| 1319 | |
| 1320 | AddSText(0, 7, 1, "This item is:", COL_WHITE, 0); |
| 1321 | AddSText(20, 11, 0, plr[myplr].HoldItem._iIName, iclr, 0); |
| 1322 | PrintStoreItem(&plr[myplr].HoldItem, 12, iclr); |
| 1323 | AddSText(0, 18, 1, "Done", COL_WHITE, 1); |
| 1324 | } |
| 1325 | |
| 1326 | void S_StartTalk() |
| 1327 | { |
no test coverage detected