Asthard

Untitled

May 25th, 2018
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.41 KB | None | 0 0
  1. ## charitem.cpp
  2.  
  3. w: case USE_ABILITY_UP
  4. zamieniłem: item->SetCount(item->GetCount() - 1);
  5. na:
  6.                         switch(item->GetVnum())
  7.                         {
  8.                             case 27102:
  9.                             case 27105:
  10.                             case 71044:
  11.                             case 71045:
  12.                             case 72033:
  13.                             case 72036:
  14.                             case 72039:
  15.                             case 72042:
  16.                                 break;
  17.                             default:
  18.                                 item->SetCount(item->GetCount()-1);
  19.                                 break;
  20.                         }
  21.                         break;
Advertisement
Add Comment
Please, Sign In to add comment