Jump to content

CristianDragan

Inactive Member
  • Posts

    26
  • Joined

  • Last visited

  • Feedback

    0%

About CristianDragan

  • Birthday December 26

Informations

  • Gender
    Male

Recent Profile Visitors

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

CristianDragan's Achievements

Contributor

Contributor (5/16)

  • Dedicated
  • Reacting Well
  • First Post
  • Collaborator
  • Conversation Starter

Recent Badges

1

Reputation

  1. Updated to VS2022 - c++20, no errors, but I've got these warnings. [Hidden Content]
  2. Hi! It works fine for me, but I've got few issues when I add the part for the target system. item_manager.cpp: [Hidden Content] item_manager.cpp: In member function 'bool ITEM_MANAGER::CreateDropItemVector(CHARACTER*, CHARACTER*, std::vector<std::pair<int, int>, std::allocator<std::pair<int, int> > >&)': item_manager.cpp:946: error: 'item' was not declared in this scope item_manager.cpp:955: error: 'item' was not declared in this scope item_manager.cpp:961: error: no matching function for call to 'MOB_DROP_MANAGER::MakeDropInfoItems(CHARACTER*&, CHARACTER*&, std::vector<std::pair<int, int>, std::allocator<std::pair<int, int> > >&)' mob_drop_manager.h:168: note: candidates are: void MOB_DROP_MANAGER::MakeDropInfoItems(CHARACTER*, CHARACTER*, std::vector<CItem*, std::allocator<CItem*> >&) Thanks!
  3. Tried something, but got the same thing. I can see the name, but it's from another item. And the price that's showing it's 0. I don't remember if it's correctly or not, but it's showing the price on top of the name, description, etc.
  4. Sure, thank you for your time. uitooltip.py: [Hidden Content]
  5. 1. Description of the problem/Question: You can see the problem in the video. It's a short one. I tried something, I could see the name, but the name of another item from inventory, and without the price that I set to it. Maybe it's from the source... I don't know. I compared the function def OnOverInItem(self, slotIndex) with another ones from another clients and I didn't find something new... uiprivateshopbuilder.py: [Hidden Content] 2. SysErr (Client/Server) / SysLog (Server) Empty 3. How to reproduce it? You can see the problem in the video. It's a short one. 4. Video Thanks in advance.
  6. ClientManager.cpp: In member function 'void CClientManager::UpdateChannelStatus(TChannelStatus*)': ClientManager.cpp:4326:30: error: 'TChannelStatus' has no member named 'player_count' it->second.second = pData->player_count; ClientManager.cpp:4329:80: error: 'TChannelStatus' has no member named 'player_count' m_mChannelStatus.emplace(pData->nPort, std::make_pair(pData>bStatus, pData->player_count)); Thanks in advance EDIT: Solved the errors, but: and it changes (1 player logged in) EDIT2: Solved.
  7. I tried your method few minutes ago, and I get " need more than 1 value to unpack " at " (accountName, accountPassword) = content.split(':') ". Thank you in advance. Shouldn't be like (accountName, accountPassword) = content.split('Value1', 'Value2'') ?
  8. @VegaS™ Salut! Am o mică problemă cu sistemul. Sper că mă poţi ajuta. Totul funcţionează, dar dacă nu selectez un cont din listă, şi folosesc butonul de autentificare în loc de enter, primesc [Hidden Content] în syserr. intrologin.py: [Hidden Content] Hi! I have a small problem. Hope that you can help me. Everything works, but if I'm not selecting any account from the list and I use the login button instead of enter, I get [Hidden Content] in syserr. intrologin.py: [Hidden Content] Mulţumesc frumos! Thank you!
  9. Tried with your latest edit, and I get this error when compiling : char_item.cpp: In member function 'bool CHARACTER::CanEquipNow(CItem*, const TItemPos&, const TItemPos&)': char_item.cpp:7768: error: argument of type 'DWORD (CItem::)()const' does not match 'DWORD' Line 7768: if (isSpeedShoe(item->GetVnum)) You forgot to add an "(" near Vnum and one at the end if (isSpeedShoe(item->GetVnum())) Now it's working. Thank you.
  10. Version of Files : XXX 1. Description of the problem / Question : I installed three pair of speed shoes on my server, and I want to know how to make an restriction when trying to equip a second pair of shoes, with that error message: "You cannot equip this item twice." I already tried something in item.cpp : else if (GetType() == ITEM_UNIQUE) { if (ch->GetWear(SPEED_SHOES)) return SPEED_SHOES2; else return SPEED_SHOES; else return SPEED_SHOES3; } but when I'm trying to compile the source I get: 'SPEED_SHOES1/2/3' was not declared in this scope I allready added UNIQUE_ITEM_SPEED_SHOES = 72701, UNIQUE_ITEM_SPEED_SHOES2 = 72702, UNIQUE_ITEM_SPEED_SHOES3 = 72703, in unique_item.h. Sorry for my bad english. Thanks, Sincerly, Cristian
  11. Solved by itself, but I don't know how, because I didn't modified anything since last night ? Thanks anyway.
×
×
  • 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.