Jump to content

Dash

Premium
  • Posts

    152
  • Joined

  • Last visited

  • Feedback

    0%

Everything posted by Dash

  1. For the itemshop to work you need to add in url some variables (usually itemshops uses player id or account id) these variables may need to be crypted but that depends on the itemshop itself
  2. This is the only way to use IsFight but you need to find victim CPVP kPVP(GetPlayerID(), pkVictim->GetPlayerID()); CPVP * pkPVP = Find(kPVP.m_dwCRC); if (pkPVP || pkPVP->IsFight())
  3. Hi , i have a problem with a client source, after all compile there show: Il mismatch between 'P1' version '20100826' and 'P2' version '20081201' I use visual studio 2010 with sp1
  4. where can i find a tutorial for this update?
  5. I am searching for someone who can create code for a taskbar. I pay with paypal. Send me pm or add me on skype. (My skype on profile)
  6. Hi dev i am seraching illumina interface code for taskbar,charater window,guild window etc. I pay for this. (PayPal) Pm on Skype you have it on my profile.
  7. I am looking for someone who can translate some buttons, i have only png from these. Send me pm with your skype and we talk there. I pay for this.
  8. Hi devs i am seraching for karma2 login,select,create,empire interface. https://www.youtube.com/watch?v=R4BPluHOPf0 Skype:-EDIT- Payment method PayPal
  9. Hi dev's how can i edit files from server like a txt with game?
  10. Its wrong model try to deattach it from bone or only change "Bip01 Spine2" with "Bip01 Spine2sfasd"
  11. Its from this : This make core to crash.... const TItemTable * item_table = item->GetProto(); DWORD item_idd = item->GetID(); char item_id[1000]; sprintf(item_id, "%d", item_idd); const char * engel = ".Engel"; char * yeni = (char *) malloc(1 + strlen(item_id)+ strlen(engel) ); strcpy(yeni, item_id); strcat(yeni, engel); if(item_idd != NULL and yeni != "\n") { if (int(quest::CQuestManager::instance().GetEventFlag(yeni)) == 1) { ch->ChatPacket(CHAT_TYPE_INFO, LC_TEXT("item_engel")); return; } } This is useless const TItemTable * item_table = item->GetProto(); This copy item_idd to string item_id DWORD item_idd = item->GetID(); char item_id[1000]; sprintf(item_id, "%d", item_idd); And this wft.....why you dont use: strcat(item_id, engel); char * yeni = (char *) malloc(1 + strlen(item_id)+ strlen(engel) ); strcpy(yeni, item_id); strcat(yeni, engel);
  12. Change case SHOP_SUBHEADER_CG_SELL2: With this one: case SHOP_SUBHEADER_CG_SELL2: { if (uiBytes < sizeof(BYTE) + sizeof(BYTE)) return -1; BYTE pos = *(c_pData++); BYTE count = *(c_pData); sys_log(0, "INPUT: %s SHOP: SELL2", ch->GetName()); CShopManager::instance().Sell(ch, pos, count); return sizeof(BYTE) + sizeof(BYTE); }
  13. input_main.cpp:3186 and item.h:34 and input_main.cpp:1107 Post it.
  14. Resolved , added id column with auto increment
  15. Hi dev's i have some problems with mysql sprintf(szQuery,"insert into player.gift set item_count=%d, owner=%d", bItemCount,owner->GetPlayerID()); std::auto_ptr<SQLMsg> pkMsg(DBManager::instance().DirectQuery(szQuery)); SQLResult * pRes = pkMsg->Get(); DWORD gift_id= pRes->uiInsertID; gift_id is alaways 0 why?
  16. As i said i cant find packet with index 158 , and packets 70 and 41 its same on client and server...
  17. its like official encription so try to use python extraction...
×
×
  • 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.