Jump to content

werednnbs

Inactive Member
  • Posts

    95
  • Joined

  • Last visited

  • Days Won

    4
  • Feedback

    0%

Everything posted by werednnbs

  1. Hi M2Dev community, Lately I've had some falls on channels 1 and 2 of my ServerFiles. I made the desbug through gdb commands, and left me these log's in the virtual machine. Loaded symbols for /usr/lib32/libssl.so.6 Reading symbols from /usr/lib32/libstdc++.so.6...done. Loaded symbols for /usr/lib32/libstdc++.so.6 Reading symbols from /usr/lib32/libm.so.5...done. Loaded symbols for /usr/lib32/libm.so.5 Reading symbols from /usr/lib32/libgcc_s.so.1...done. Loaded symbols for /usr/lib32/libgcc_s.so.1 Reading symbols from /usr/lib32/libthr.so.3...done. Loaded symbols for /usr/lib32/libthr.so.3 Reading symbols from /usr/lib32/libc.so.7...done. Loaded symbols for /usr/lib32/libc.so.7 Error while reading shared library symbols: /usr/lib32/libcrypto.so.7: No such file or directory. Reading symbols from /libexec/ld-elf32.so.1...done. Loaded symbols for /libexec/ld-elf32.so.1 #0 CHARACTER::GetName (this=0x0) at basic_string.h:280 280 { return _M_dataplus._M_p; } [New LWP 100074] (gdb) Screenshot: [Hidden Content] Honestly I have no idea what the error is. If someone could help me I will be grateful! Sorry for bad english.
  2. 1º: ---- I know this problem well. Obviously read. The only problem is that not even that is the table because I've never seen, if someone has a .sql file or querys please share it. 2º: ---- This is what I literally do not know.
  3. Hi guy, I would like to ask for help with this problem, my server has a problem trying to enter. When the loading bar finishes loading exits to login. I guess it's this syserr log in db. SYSERR: Sep 15 22:14:57.508594 :: Start: TABLE_POSTFIX not configured use default SYSERR: Sep 15 22:14:57.535325 :: DirectQuery: AsyncSQL::DirectQuery : mysql_query error: Table 'common.priv_settings' doesn't exist query: DELETE FROM priv_settings WHERE value <= 0 OR duration <= NOW(); SYSERR: Sep 15 22:14:57.535982 :: DirectQuery: AsyncSQL::DirectQuery : mysql_query error: Table 'common.priv_settings' doesn't exist query: SELECT priv_type, id, type, value, UNIX_TIMESTAMP(duration) FROM priv_settings SYSERR: Sep 15 22:26:27.281164 :: ChildLoop: AsyncSQL: query failed: Unknown column 'applytype0' in 'field list' (query: SELECT id,window+0,pos,count,vnum,socket0,socket1,socket2,attrtype0,attrvalue0,attrtype1,attrvalue1,attrtype2,attrvalue2,attrtype3,attrvalue3,attrtype4,attrvalue4,attrtype5,attrvalue5,attrtype6,attrvalue6,applytype0,applyvalue0,applytype1,applyvalue1,applytype2,applyvalue2,applytype3,applyvalue3,applytype4,applyvalue4,applytype5,applyvalue5,applytype6,applyvalue6,applytype7,applyvalue7 FROM item WHERE owner_id=205 AND (window < 3 or window = 5) errno: 1054) SYSERR: Sep 15 22:26:27.379370 :: RESULT_COMPOSITE_PLAYER: null MYSQL_RES QID 1 Syserr CH1 SYSERR: Sep 16 00:24:25.975304 :: Empire: EmpireSelectFailed 178 SYSERR: Sep 16 00:41:08.312523 :: Empire: EmpireSelectFailed 182 SYSERR: Sep 16 00:46:48.47724 :: Empire: EmpireSelectFailed 171 SYSERR: Sep 16 00:47:27.981959 :: Empire: EmpireSelectFailed 107 SYSERR: Sep 16 00:48:41.970722 :: Empire: EmpireSelectFailed 173 SYSERR: Sep 16 00:51:26.240792 :: Empire: EmpireSelectFailed 110 SYSERR: Sep 16 00:52:48.734410 :: Empire: EmpireSelectFailed 171 SYSERR: Sep 16 00:54:06.32899 :: Empire: EmpireSelectFailed 171 SYSERR: Sep 16 00:54:17.970222 :: Empire: EmpireSelectFailed 171 SYSERR: Sep 16 00:54:54.90334 :: Empire: EmpireSelectFailed 171 SYSERR: Sep 16 00:56:14.210398 :: Empire: EmpireSelectFailed 110 SYSERR: Sep 16 00:58:18.679323 :: Empire: EmpireSelectFailed 171 SYSERR: Sep 16 00:59:29.816634 :: Empire: EmpireSelectFailed 171 SYSERR: Sep 16 00:59:41.495908 :: Empire: EmpireSelectFailed 171 LOGS x100 It's really important to start my project. Thanks!
  4. I have a multilanguage system only translates customer and quest. You can see it on my server. http://sometin2.com/
  5. Thank you for your support, the first problem is still, but do not know where it comes from!
  6. Hey guys, I wonder if i cloud help with two problems: 1º: When i try to move any inventory item goes to the character login. I think that's the file exchange.cpp in the funtion CExchange::CheckSpace() bool CExchange::CheckSpace() { static CGrid s_grid1(5, INVENTORY_MAX_NUM / 5 / 4); // inven page 1 9 Rows a 5 Columns static CGrid s_grid2(5, INVENTORY_MAX_NUM / 5 / 4); // inven page 2 9 Rows a 5 Columns static CGrid s_grid3(5, INVENTORY_MAX_NUM / 5 / 4); // inven page 3 9 Rows a 5 Columns static CGrid s_grid4(5, INVENTORY_MAX_NUM / 5 / 4); // inven page 4 9 Rows a 5 Columns s_grid1.Clear(); s_grid2.Clear(); s_grid3.Clear(); s_grid4.Clear(); LPCHARACTER victim = GetCompany()->GetOwner(); LPITEM item; int i; const int perPageSlotCount = INVENTORY_MAX_NUM / 4; for (i = 0; i < INVENTORY_MAX_NUM; ++i) { if (!(item = victim->GetInventoryItem(i))) continue; BYTE itemSize = item->GetSize(); if (i < perPageSlotCount) // Notice: This is adjusted for 4 Pages only! s_grid1.Put(i, 1, itemSize); else if (i < perPageSlotCount * 2) s_grid2.Put(i - perPageSlotCount, 1, itemSize); else if (i < perPageSlotCount * 3) s_grid3.Put(i - perPageSlotCount * 2, 1, itemSize); else s_grid4.Put(i - perPageSlotCount * 3, 1, itemSize); } static std::vector <WORD> s_vDSGrid(DRAGON_SOUL_INVENTORY_MAX_NUM); bool bDSInitialized = false; for (i = 0; i < EXCHANGE_ITEM_MAX_NUM; ++i) { if (!(item = m_apItems[i])) continue; BYTE itemSize = item->GetSize(); if (item->IsDragonSoul()) { if (!victim->DragonSoul_IsQualified()) return false; if (!bDSInitialized) { bDSInitialized = true; victim->CopyDragonSoulItemGrid(s_vDSGrid); } bool bExistEmptySpace = false; WORD wBasePos = DSManager::instance().GetBasePosition(item); if (wBasePos >= DRAGON_SOUL_INVENTORY_MAX_NUM) return false; for (int i = 0; i < DRAGON_SOUL_BOX_SIZE; i++) { WORD wPos = wBasePos + i; if (0 == s_vDSGrid[wBasePos]) { bool bEmpty = true; for (int j = 1; j < item->GetSize(); j++) { if (s_vDSGrid[wPos + j * DRAGON_SOUL_BOX_COLUMN_NUM]) { bEmpty = false; break; } } if (bEmpty) { for (int j = 0; j < item->GetSize(); j++) { s_vDSGrid[wPos + j * DRAGON_SOUL_BOX_COLUMN_NUM] = wPos + 1; } bExistEmptySpace = true; break; } } if (bExistEmptySpace) break; } if (!bExistEmptySpace) return false; } else { int iPos = s_grid1.FindBlank(1, itemSize); if (iPos >= 0) { s_grid1.Put(iPos, 1, itemSize); continue; } iPos = s_grid2.FindBlank(1, itemSize); if (iPos >= 0) { s_grid2.Put(iPos, 1, itemSize); continue; } iPos = s_grid3.FindBlank(1, itemSize); if (iPos >= 0) { s_grid3.Put(iPos, 1, itemSize); continue; } iPos = s_grid4.FindBlank(1, itemSize); if (iPos >= 0) { s_grid4.Put(iPos, 1, itemSize); continue; } return false; // No space left in inventory } } return true; } Use 4 Inventories. And 2º: I implemented everything to shop offline system but when trying to open the interface does nothing and giver me these errors Syserr the server. RunState: LUA_ERROR: [string "nixo_private_shops"]:2: attempt to call field `split' (a nil value) WriteRunningStateToSyserr: LUA_ERROR: quest nixo_private_shops.start click Funtion in quest: when button or info begin infos = nixo_private_shops.get_input("get_input") data = string.split(infos, '|') if (nixo_private_shops.checkVariables(data, 0) == true and data[1] == "OPEN") then local shop_id = nixo_private_shops.RefreshShops() if (shop_id != 0) then nixo_private_shops.RefreshItems(shop_id) cmdchat("open_shop_gui") end end if (nixo_private_shops.checkVariables(data, 0) == true and data[1] == "REFRESH") then local shop_id = nixo_private_shops.RefreshShops() if (shop_id != 0) then nixo_private_shops.RefreshItems(shop_id) cmdchat("open_shop_gui_now") else cmdchat("close_shop_gui") end end if (nixo_private_shops.checkVariables(data, 1) == true and data[1] == "SELECT_SHOP") then if (nixo_private_shops.isMyShop(tonumber(data[2])) == true) then nixo_private_shops.RefreshItems(tonumber(data[2])) end end if (nixo_private_shops.checkVariables(data, 2) == true and data[1] == "WITH_DRAW") then if (nixo_private_shops.isMyShop(tonumber(data[2])) == true) then if (nixo_private_shops.getShopStatus(tonumber(data[2])) == 2) then if (nixo_private_shops.getEarnings(tonumber(data[2]), tonumber(data[3])) > 0) then nixo_private_shops.withDraw(tonumber(data[2]), tonumber(data[3])) nixo_private_shops.RefreshItems(tonumber(data[2])) else syschat("Nie mo¿na wyp³aciæ.") end else syschat("Aby wyp³aciæ zarobione waluty musisz zamkn¹æ sklep.") end end end if (nixo_private_shops.checkVariables(data, 2) == true and data[1] == "GET_ITEM") then if (nixo_private_shops.isMyShop(tonumber(data[2])) == true) then nixo_private_shops.getItem(tonumber(data[2]), tonumber(data[3])) nixo_private_shops.RefreshItems(tonumber(data[2])) end end if (nixo_private_shops.checkVariables(data, 1) == true and data[1] == "CLOSE_SHOP") then if (nixo_private_shops.isMyShop(tonumber(data[2])) == true and nixo_private_shops.getShopStatus(tonumber(data[2])) == 1) then pc.close_shop(tonumber(data[2])) local shop_id = nixo_private_shops.RefreshShops() if (shop_id != 0) then nixo_private_shops.RefreshItems(shop_id) else cmdchat("close_shop_gui") end syschat("Sklep zosta³ zamkniêty.") end end Infinitely appreciate your help. Sorry for my bad english!
  7. Someone help me? : S @Rumor Could you explain a little better the steps? Sorry for bad English
  8. Thanks for the reply, but I am afraid that the problem is customer since otherwise there is no problem! :s
  9. Hi guys I would like to help me with a small error that has generated out of nothing on my client and I honestly do not know where or how to repair it! The fact is that when any window of any quest automatically opens two open, one below the other in this way .. Closing the quest the following window is and continues to follow me to the next .. Like some help with this error! Kind regards Wered
  10. Sorry but I have compiled this way: if (((false == ch->IsRiding() && fDist > 35) || fDist > 50) && OXEVENT_MAP_INDEX != ch->GetMapIndex()) Y aun no se repara el error con el Lykan! Alguien tiene alguna forma de ayudarme? Sorry for bad english!
  11. As much as I can add him to fix the bug? Mainly it reflected in the wolfman to go on a horse or walking! Spend a lot and it's annoying, Thanks! If i understood correct.. you have that problem with mounts bringing you back when you ride them ? As much as I can add him to fix the bug? Mainly it reflected in the wolfman to go on a horse or walking! Spend a lot and it's annoying, Thanks! If i understood correct.. you have that problem with mounts bringing you back when you ride them ? Yes, that's the problem that I have, if only reflects the wolfman, returns me all the time and says active protection as if I teleport to /go! With the other characters will normal you could help me with this problem? Thanks! Actually i sell the fix for the mount speed fix but you may have other problem which reffers to the wolfman race.. I suppose so, but how it could place the solution given by @safademirel as increased values of 25 and 40?
  12. As much as I can add him to fix the bug? Mainly it reflected in the wolfman to go on a horse or walking! Spend a lot and it's annoying, Thanks! If i understood correct.. you have that problem with mounts bringing you back when you ride them ? As much as I can add him to fix the bug? Mainly it reflected in the wolfman to go on a horse or walking! Spend a lot and it's annoying, Thanks! If i understood correct.. you have that problem with mounts bringing you back when you ride them ? Yes, that's the problem that I have, if only reflects the wolfman, returns me all the time and says active protection as if I teleport to /go! With the other characters will normal you could help me with this problem? Thanks!
  13. As much as I can add him to fix the bug? Mainly it reflected in the wolfman to go on a horse or walking! Spend a lot and it's annoying, Thanks!
  14. Oee brot, we must add or subtract to repair the bug? Sorry for bad english
  15. Hi guys! I have a problem with a core that achievement does not solve! I made this step 10001 times and have not managed to repair the fallen of the characters! I really need help users leave me! Syserr Imput_main.cpp [Hidden Content] I need help please! Wered
  16. hello community I have a problem! Syserr Core1 CH1 Source Code maxmi 81000 Quest Pet system Help me please!
  17. Hi guys, I have a problem with my server! It is this problem: When putting on the armor is not seen, but changing character in armor all is normal until you take it off! In customer SYSERR no kind of error regarding this, and I've already reviewed the archios msm Help! Sorry for bad English
×
×
  • 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.