Returns the current (numerical) level for the given PCClass in the Player Character identified by the given CharID. @param id The CharID identifying the Player Character for which the level of the given PCClass should be returned @param pcc The PCClass for which the
(CharID id, PCClass pcc)
| 333 | * Player Character identified by the given CharID |
| 334 | */ |
| 335 | public int getLevel(CharID id, PCClass pcc) |
| 336 | { |
| 337 | ClassInfo info = getClassInfo(id); |
| 338 | return (info == null) ? 0 : info.getLevel(pcc); |
| 339 | } |
| 340 | |
| 341 | /** |
| 342 | * Returns the ClassInfo for this ClassFacet and the given CharID. May |
no test coverage detected