Jump to content

systemdev93

Member
  • Posts

    4
  • Joined

  • Last visited

  • Feedback

    0%

About systemdev93

Informations

  • Gender
    Male

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

systemdev93's Achievements

Rookie

Rookie (2/16)

  • Reacting Well
  • First Post
  • Conversation Starter
  • Week One Done
  • One Month Later

Recent Badges

4

Reputation

  1. Hi, char_item.cpp - CHARACTER::AutoGiveItem Search for: if (item->GetType() == ITEM_BLEND) Replace the whole selection with: if (item->IsStackable()) { for (int i=0; i < INVENTORY_MAX_NUM; i++) { LPITEM inv_item = GetInventoryItem(i); if (inv_item == NULL) continue; if (inv_item->GetVnum() == item->GetVnum()) { if (inv_item->GetSocket(0) == item->GetSocket(0) && inv_item->GetSocket(1) == item->GetSocket(1) && inv_item->GetSocket(2) == item->GetSocket(2) && inv_item->GetCount() < ITEM_MAX_COUNT) { inv_item->SetCount(inv_item->GetCount() + item->GetCount()); M2_DESTROY_ITEM(item); return inv_item; } } } } Author: @systemdev93 (Back to the past)
  2. Hey! I have a big problem! I did the costume weapon system and everything is ok, but I don't see the weapon costume. I'm using sql item_proto. ID RANGE: 6009-6059 Syssers are empty. The modell path is ok. I think this is the clientside (binary) problem, but I can't do it. (Not kind of value3) Please, help me.
×
×
  • Create New...

Important Information

Terms of Use / Privacy Policy / Guidelines / We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.