Advertisement
Guest User

Untitled

a guest
Mar 26th, 2019
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. if (item->GetVnum() == 76028)
  2. {
  3. if (item2->GetAttributeCount() < 3)
  4. {
  5. if ((item2->GetSubType() == COSTUME_BODY))
  6. {
  7. item2->AddAttribute();
  8. }
  9. else
  10. {
  11. ChatPacket(CHAT_TYPE_INFO, LC_TEXT("Mozna dodac tylko w kostiumie"));
  12. break;
  13. }
  14. }
  15. else
  16. {
  17. ChatPacket(CHAT_TYPE_INFO, LC_TEXT("Nie mozesz dodac wiecej bonusow"));
  18. break;
  19. }
  20. item->SetCount(item->GetCount() - 1);
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement