Advertisement
Guest User

skill on distance weapons

a guest
Sep 7th, 2016
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.23 KB | None | 0 0
  1. if (it.abilities->skills[SKILL_DISTANCE]) {
  2.         if (begin) {
  3.             begin = false;
  4.             s << " (";
  5.         } else {
  6.             s << ", ";
  7.         }
  8.  
  9.         s << "distance fighting " << std::showpos << it.abilities->skills[SKILL_DISTANCE] << std::noshowpos;
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement