Jump to content

werednnbs

Member
  • Posts

    95
  • Joined

  • Last visited

  • Days Won

    4
  • Feedback

    0%

Posts 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: https://metin2.download/picture/r3F9504x09DVmF8K988YXgTtGTP6KMUj/.gif

    Honestly I have no idea what the error is.

    If someone could help me I will be grateful! :D

    Sorry for bad english.

  2. -> Table 'common.priv_settings' doesn't exist 1º

    -> Unknown column 'applytype0' in 'field list' 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. 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!

     

  5. 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 ..

    questerror1.jpg

    Closing the quest the following window is and continues to follow me to the next ..

    questerror2.jpg

    Like some help with this error!

    Kind regards

    Wered

  6.  

     

     

     

    Add :)

    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 ?

     

     

     

     

    Add :)

    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?

  7.  

     

    Add :)

    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 ?

     

     

     

     

    Add :)

    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!

  8. 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

     

    SYSERR: Apr  2 05:12:21.193671 :: SyncPosition: Too often SyncPosition Interval(0ms)(Orco Negro) from Name(DarkLorD) VICTIM(315183,728650) SYNC(315185,728649)

    SYSERR: Apr  2 05:12:22.440133 :: Analyze: login phase does not handle this packet! header 66
    SYSERR: Apr  2 05:12:23.227503 :: SyncPosition: Too often SyncPosition Interval(0ms)(Siervo Salvaje) from Name(lForeverl) VICTIM(903227,283533) SYNC(903282,283519)
    SYSERR: Apr  2 05:12:40.609650 :: SyncPosition: Too often SyncPosition Interval(1ms)(Capitán Bestial) from Name(lForeverl) VICTIM(903252,283914) SYNC(903269,283852)
    SYSERR: Apr  2 05:12:40.609778 :: SyncPosition: Too often SyncPosition Interval(1ms)(Siervo Salvaje Fuerte) from Name(lForeverl) VICTIM(903343,283926) SYNC(903347,283981)
    SYSERR: Apr  2 05:12:53.786067 :: SyncPosition: Too often SyncPosition Interval(87ms)(Orco Negro) from Name(DarkLorD) VICTIM(315248,732854) SYNC(315245,732856)
    SYSERR: Apr  2 05:12:53.786192 :: SyncPosition: Too often SyncPosition Interval(87ms)(Hechicero Orco Élite) from Name(DarkLorD) VICTIM(314854,733152) SYNC(314844,733157)
    SYSERR: Apr  2 05:12:53.786265 :: SyncPosition: Too often SyncPosition Interval(87ms)(Orco Negro) from Name(DarkLorD) VICTIM(314880,733034) SYNC(314879,733034)
    SYSERR: Apr  2 05:12:57.986643 :: SyncPosition: Too often SyncPosition Interval(0ms)(Orco Negro) from Name(DarkLorD) VICTIM(314810,733097) SYNC(314829,733010)
    SYSERR: Apr  2 05:13:03.1195 :: GetServerLocation: location error name  mapindex 0 0 x 0 empire 3
    SYSERR: Apr  2 05:13:03.3421 :: GetServerLocation: location error name  mapindex 0 0 x 0 empire 3
    SYSERR: Apr  2 05:13:03.4405 :: SyncPosition: Too often SyncPosition Interval(0ms)(General Salvaje) from Name(lForeverl) VICTIM(903355,284830) SYNC(903505,284948)
    SYSERR: Apr  2 05:13:21.491370 :: GetServerLocation: location error name  mapindex 0 0 x 0 empire 3
    SYSERR: Apr  2 05:13:21.493596 :: GetServerLocation: location error name  mapindex 0 0 x 0 empire 3
    SYSERR: Apr  2 05:13:40.82335 :: SyncPosition: Too often SyncPosition Interval(90ms)(Siervo Salvaje) from Name(lForeverl) VICTIM(903186,283944) SYNC(903173,283963)
    SYSERR: Apr  2 05:13:40.84107 :: SyncPosition: Too often SyncPosition Interval(90ms)(Siervo Salvaje) from Name(lForeverl) VICTIM(903271,284044) SYNC(903271,284044)
    SYSERR: Apr  2 05:13:40.84232 :: SyncPosition: Too often SyncPosition Interval(90ms)(General Salvaje Fuerte) from Name(lForeverl) VICTIM(903270,284045) SYNC(903270,284045)
    SYSERR: Apr  2 05:13:40.84352 :: SyncPosition: Too often SyncPosition Interval(90ms)(Siervo Salvaje Fuerte) from Name(lForeverl) VICTIM(903229,284044) SYNC(903229,284044)
    SYSERR: Apr  2 05:14:23.379837 :: CreateItem: ITEM_ID_DUP: 110033359 Tombola_ticket_today owner 0x38536000
    SYSERR: Apr  2 05:14:23.379924 :: ItemLoad: cannot create item by vnum 38002 (name [GA]Forpax id 110033359)
    SYSERR: Apr  2 05:15:58.293410 :: SyncPosition: Too often SyncPosition Interval(0ms)(Sold. Infantería Salvaje) from Name(lForeverl) VICTIM(902578,284908) SYNC(902696,284880)
    SYSERR: Apr  2 05:15:58.293537 :: SyncPosition: Too often SyncPosition Interval(46ms)(Sold. Infantería Salvaje) from Name(lForeverl) VICTIM(902869,284953) SYNC(902860,284929)
    SYSERR: Apr  2 05:15:58.293635 :: SyncPosition: Too often SyncPosition Interval(47ms)(Soldado Viento Negro) from Name(lForeverl) VICTIM(902874,284901) SYNC(902874,284901)
    SYSERR: Apr  2 05:16:08.409417 :: SyncPosition: Too often SyncPosition Interval(92ms)(Siervo Salvaje) from Name(lForeverl) VICTIM(903006,284699) SYNC(903426,284497)
    SYSERR: Apr  2 05:16:08.409602 :: SyncPosition: Too often SyncPosition Interval(92ms)(Siervo Salvaje) from Name(lForeverl) VICTIM(902900,284602) SYNC(903075,284204)
    SYSERR: Apr  2 05:16:08.409687 :: SyncPosition: Too often SyncPosition Interval(92ms)(Siervo Salvaje Fuerte) from Name(lForeverl) VICTIM(902777,284596) SYNC(902674,284121)
    SYSERR: Apr  2 05:16:44.184535 :: SyncPosition: Too often SyncPosition Interval(0ms)(Arquero Viento Negro) from Name(lForeverl) VICTIM(903068,284921) SYNC(903067,284920)
    SYSERR: Apr  2 05:16:44.184727 :: SyncPosition: Too often SyncPosition Interval(0ms)(Arquero Viento Negro) from Name(lForeverl) VICTIM(903068,284921) SYNC(903091,284928)
    SYSERR: Apr  2 05:17:35.278921 :: GetServerLocation: location error name  mapindex 0 0 x 0 empire 3
    SYSERR: Apr  2 05:17:35.281147 :: GetServerLocation: location error name  mapindex 0 0 x 0 empire 3
    SYSERR: Apr  2 05:17:36.549152 :: SyncPosition: Too often SyncPosition Interval(86ms)(Sold. Infantería Salvaje) from Name(lForeverl) VICTIM(902807,284944) SYNC(902806,284943)
    SYSERR: Apr  2 05:17:36.549266 :: SyncPosition: Too often SyncPosition Interval(86ms)(General Salvaje) from Name(lForeverl) VICTIM(902658,284883) SYNC(902715,284857)
    SYSERR: Apr  2 05:17:36.549317 :: SyncPosition: Too often SyncPosition Interval(86ms)(Siervo Salvaje) from Name(lForeverl) VICTIM(902627,284813) SYNC(902694,284804)
    SYSERR: Apr  2 05:17:36.549450 :: SyncPosition: Too often SyncPosition Interval(87ms)(Pho-Hwa Torm. Negra Mal.) from Name(lForeverl) VICTIM(902883,284986) SYNC(902902,285194)
    SYSERR: Apr  2 05:17:36.549566 :: SyncPosition: Too often SyncPosition Interval(87ms)(Siervo Salvaje) from Name(lForeverl) VICTIM(902908,284938) SYNC(902913,285048)
    SYSERR: Apr  2 05:17:36.549693 :: SyncPosition: Too often SyncPosition Interval(88ms)(Sold. Infantería Salvaje) from Name(lForeverl) VICTIM(903076,284980) SYNC(903093,284999)
    SYSERR: Apr  2 05:17:38.189473 :: SyncPosition: Too often SyncPosition Interval(45ms)(Siervo Salvaje) from Name(lForeverl) VICTIM(903006,284535) SYNC(902987,284585)
    SYSERR: Apr  2 05:17:40.125881 :: SyncPosition: Too often SyncPosition Interval(0ms)(General Salvaje Fuerte) from Name(lForeverl) VICTIM(902803,284584) SYNC(902824,284644)
    SYSERR: Apr  2 05:17:40.126143 :: SyncPosition: Too often SyncPosition Interval(0ms)(Siervo Salvaje Fuerte) from Name(lForeverl) VICTIM(903100,284624) SYNC(903055,284668)
    SYSERR: Apr  2 05:17:40.391226 :: SyncPosition: Too often SyncPosition Interval(0ms)(Pho-Hwa Torm. Negra Mal.) from Name(lForeverl) VICTIM(902710,284938) SYNC(902690,284949)
    SYSERR: Apr  2 05:17:53.408876 :: CreateItem: ITEM_ID_DUP: 110033359 Tombola_ticket_today owner 0x38536000
    SYSERR: Apr  2 05:17:53.408962 :: ItemLoad: cannot create item by vnum 38002 (name [GA]Forpax id 110033359)
    SYSERR: Apr  2 05:18:16.83058 :: GetServerLocation: location error name  mapindex 0 0 x 0 empire 3
    SYSERR: Apr  2 05:18:16.85304 :: GetServerLocation: location error name  mapindex 0 0 x 0 empire 3
    SYSERR: Apr  2 05:18:39.741395 :: SyncPosition: Too often SyncPosition Interval(1ms)(Siervo Salvaje) from Name(lForeverl) VICTIM(902385,284833) SYNC(901897,284573)
    SYSERR: Apr  2 05:18:39.741490 :: SyncPosition: Too often SyncPosition Interval(1ms)(Siervo Salvaje) from Name(lForeverl) VICTIM(902185,284810) SYNC(901811,284532)
    SYSERR: Apr  2 05:18:39.741576 :: SyncPosition: Too often SyncPosition Interval(1ms)(Infantería Salv. Fuerte) from Name(lForeverl) VICTIM(902315,284795) SYNC(902148,284394)
    SYSERR: Apr  2 05:18:39.741627 :: SyncPosition: Too often SyncPosition Interval(1ms)(General Salvaje) from Name(lForeverl) VICTIM(902200,284755) SYNC(901775,284688)
    SYSERR: Apr  2 05:18:39.741716 :: SyncPosition: Too often SyncPosition Interval(1ms)(Jak-To Viento Negro) from Name(lForeverl) VICTIM(902231,284817) SYNC(901896,284509)
    SYSERR: Apr  2 05:18:47.16398 :: SyncPosition: Too often SyncPosition Interval(0ms)(Bandido del Desierto) from Name(Yanku) VICTIM(292530,549630) SYNC(292580,549708)
    SYSERR: Apr  2 05:18:50.97363 :: SyncPosition: Too often SyncPosition Interval(0ms)(Bandido del Desierto) from Name(Yanku) VICTIM(292717,549920) SYNC(292728,549938)
    SYSERR: Apr  2 05:19:18.279709 :: SyncPosition: Too often SyncPosition Interval(15ms)(Orco Negro) from Name(Abdeel) VICTIM(333752,757637) SYNC(333755,757655)
    SYSERR: Apr  2 05:19:40.294051 :: UpdateSectree: null sectree name: Curita 935185 217161
    SYSERR: Apr  2 05:19:57.374831 :: GetServerLocation: location error name  mapindex 0 0 x 0 empire 1
    SYSERR: Apr  2 05:19:57.377135 :: GetServerLocation: location error name  mapindex 0 0 x 0 empire 1
    SYSERR: Apr  2 05:20:14.783679 :: HandshakeProcess: handshake retry limit reached! (limit 32 character !NO CHARACTER!)
    SYSERR: Apr  2 05:20:41.510095 :: HandshakeProcess: handshake retry limit reached! (limit 32 character !NO CHARACTER!)
    SYSERR: Apr  2 05:20:47.916011 :: SyncPosition: Too often SyncPosition Interval(0ms)(Orco Negro) from Name(Abdeel) VICTIM(333387,758313) SYNC(333386,758314)
    SYSERR: Apr  2 05:20:47.916121 :: SyncPosition: Too often SyncPosition Interval(0ms)(ExploradorDK) from Name(Abdeel) VICTIM(333157,758471) SYNC(333131,758463)
    SYSERR: Apr  2 05:20:59.345041 :: SyncPosition: Too often SyncPosition Interval(0ms)(Soldado Jura Bl. Cobarde) from Name(BlackAngel) VICTIM(432810,912876) SYNC(432791,912886)
    SYSERR: Apr  2 05:21:01.484910 :: SyncPosition: Too often SyncPosition Interval(0ms)(Soldado Jura Bl. Cobarde) from Name(BlackAngel) VICTIM(432976,912581) SYNC(432976,912591)
    SYSERR: Apr  2 05:21:01.484987 :: SyncPosition: Too often SyncPosition Interval(0ms)(Comandante Juram. Blanco) from Name(BlackAngel) VICTIM(433225,912733) SYNC(433121,912695)
    SYSERR: Apr  2 05:21:01.485043 :: SyncPosition: Too often SyncPosition Interval(0ms)(Soldado Juramento Blanco) from Name(BlackAngel) VICTIM(433252,912819) SYNC(433246,912819)
    SYSERR: Apr  2 05:21:01.485107 :: SyncPosition: Too often SyncPosition Interval(0ms)(Comandante Juram. Blanco) from Name(BlackAngel) VICTIM(433071,913037) SYNC(433067,913029)
    SYSERR: Apr  2 05:21:01.485154 :: SyncPosition: Too often SyncPosition Interval(0ms)(Soldado Juramento Blanco) from Name(BlackAngel) VICTIM(432923,913106) SYNC(432951,912988)
    SYSERR: Apr  2 05:21:01.485207 :: SyncPosition: Too often SyncPosition Interval(0ms)(Jin-Hee) from Name(BlackAngel) VICTIM(432957,912952) SYNC(432956,912955)
    SYSERR: Apr  2 05:21:01.485318 :: SyncPosition: Too often SyncPosition Interval(0ms)(Se-Rang Desanimada) from Name(BlackAngel) VICTIM(432883,913054) SYNC(432890,913031)
    SYSERR: Apr  2 05:21:01.485375 :: SyncPosition: Too often SyncPosition Interval(0ms)(General Juramento Blanco) from Name(BlackAngel) VICTIM(433030,913061) SYNC(433031,913065)
    SYSERR: Apr  2 05:21:13.875774 :: GetServerLocation: location error name  mapindex 0 0 x 0 empire 1
    SYSERR: Apr  2 05:21:13.878003 :: GetServerLocation: location error name  mapindex 0 0 x 0 empire 1
    SYSERR: Apr  2 05:21:13.936520 :: SyncPosition: Too often SyncPosition Interval(63ms)(Arquera Juramento Blanco) from Name(Ramsey) VICTIM(901220,220096) SYNC(901218,220098)
    SYSERR: Apr  2 05:21:28.298410 :: SyncPosition: Too often SyncPosition Interval(46ms)(Arquera Juramento Blanco) from Name(Ramsey) VICTIM(902559,222735) SYNC(902560,222730)
    SYSERR: Apr  2 05:21:36.513779 :: SyncPosition: Too often SyncPosition Interval(0ms)(Soldado Juramento Blanco) from Name(Ramsey) VICTIM(902466,222891) SYNC(902462,222893)
    SYSERR: Apr  2 05:21:36.513899 :: SyncPosition: Too often SyncPosition Interval(0ms)(Soldado Juramento Blanco) from Name(Ramsey) VICTIM(902460,222805) SYNC(902456,222803)
    SYSERR: Apr  2 05:21:39.308032 :: SyncPosition: Too often SyncPosition Interval(0ms)(Soldado Juramento Blanco) from Name(Ramsey) VICTIM(902573,222747) SYNC(902575,222737)
    SYSERR: Apr  2 05:21:39.308949 :: SyncPosition: Too often SyncPosition Interval(1ms)(Soldado Juramento Blanco) from Name(Ramsey) VICTIM(902573,222747) SYNC(902578,222725)
    SYSERR: Apr  2 05:21:40.766493 :: SyncPosition: Too often SyncPosition Interval(0ms)(Soldado Juramento Blanco) from Name(Ramsey) VICTIM(902481,222980) SYNC(902479,222984)
    SYSERR: Apr  2 05:21:42.492363 :: SyncPosition: Too often SyncPosition Interval(0ms)(Bandido del Des. Fuerte) from Name(Yanku) VICTIM(292581,547453) SYNC(292555,547552)
    SYSERR: Apr  2 05:21:44.500755 :: SyncPosition: Too often SyncPosition Interval(0ms)(Arquera Juramento Blanco) from Name(Ramsey) VICTIM(902463,222463) SYNC(902453,222463)
    SYSERR: Apr  2 05:21:46.16629 :: SyncPosition: Too often SyncPosition Interval(0ms)(Soldado Juramento Blanco) from Name(Ramsey) VICTIM(902516,222598) SYNC(902514,222602)
    SYSERR: Apr  2 05:21:46.16738 :: SyncPosition: Too often SyncPosition Interval(0ms)(Soldado Juramento Blanco) from Name(Ramsey) VICTIM(902538,222605) SYNC(902537,222610)
    SYSERR: Apr  2 05:21:47.61058 :: SyncPosition: Too often SyncPosition Interval(0ms)(Soldado Juramento Blanco) from Name(Ramsey) VICTIM(902509,222619) SYNC(902506,222628)
    SYSERR: Apr  2 05:21:47.61177 :: SyncPosition: Too often SyncPosition Interval(0ms)(Soldado Juramento Blanco) from Name(Ramsey) VICTIM(902535,222628) SYNC(902534,222637)
    SYSERR: Apr  2 05:21:47.61355 :: SyncPosition: Too often SyncPosition Interval(0ms)(Arquera Juramento Blanco) from Name(Ramsey) VICTIM(902350,222397) SYNC(902340,222393)
    SYSERR: Apr  2 05:21:57.188136 :: SyncPosition: Too often SyncPosition Interval(0ms)(Hombre Escorpión Joven) from Name(Yanku) VICTIM(292545,547202) SYNC(292546,547184)
    SYSERR: Apr  2 05:22:22.102497 :: SyncPosition: Too often SyncPosition Interval(0ms)(General Orco Élite) from Name(Abdeel) VICTIM(333582,756656) SYNC(333616,756709)
    SYSERR: Apr  2 05:22:22.102646 :: SyncPosition: Too often SyncPosition Interval(0ms)(Orco Gigante Negro Osado) from Name(Abdeel) VICTIM(333587,756699) SYNC(333584,756695)
    SYSERR: Apr  2 05:22:22.102724 :: SyncPosition: Too often SyncPosition Interval(1ms)(General Orco Élite) from Name(Abdeel) VICTIM(333914,756728) SYNC(333867,756770)
    SYSERR: Apr  2 05:22:22.102796 :: SyncPosition: Too often SyncPosition Interval(1ms)(Orco Negro) from Name(Abdeel) VICTIM(333862,756687) SYNC(333820,756717)
    SYSERR: Apr  2 05:22:22.103592 :: SyncPosition: Too often SyncPosition Interval(0ms)(Arquera Juramento Blanco) from Name(Ramsey) VICTIM(902125,221730) SYNC(902120,221733)
    SYSERR: Apr  2 05:22:22.103719 :: SyncPosition: Too often SyncPosition Interval(0ms)(Arquera Juramento Blanco) from Name(Ramsey) VICTIM(902125,221730) SYNC(902114,221736)
    SYSERR: Apr  2 05:22:22.103858 :: SyncPosition: Too often SyncPosition Interval(0ms)(Arquera Juramento Blanco) from Name(Ramsey) VICTIM(902125,221730) SYNC(902108,221739)
    SYSERR: Apr  2 05:22:29.587762 :: SyncPosition: Too often SyncPosition Interval(0ms)(Soldado Juramento Blanco) from Name(Ramsey) VICTIM(901980,221694) SYNC(901980,221688)
    SYSERR: Apr  2 05:22:29.587885 :: SyncPosition: Too often SyncPosition Interval(0ms)(Soldado Juramento Blanco) from Name(Ramsey) VICTIM(902032,221724) SYNC(902043,221712)
    SYSERR: Apr  2 05:22:35.726245 :: SyncPosition: Too often SyncPosition Interval(0ms)(Arquera Juramento Blanco) from Name(Ramsey) VICTIM(901526,221451) SYNC(901518,221443)
    SYSERR: Apr  2 05:22:35.726360 :: SyncPosition: Too often SyncPosition Interval(0ms)(Arquera Juramento Blanco) from Name(Ramsey) VICTIM(901548,221394) SYNC(901543,221383)
    SYSERR: Apr  2 05:22:35.726456 :: SyncPosition: Too often SyncPosition Interval(0ms)(Arquera Juramento Blanco) from Name(Ramsey) VICTIM(901548,221394) SYNC(901547,221392)
    SYSERR: Apr  2 05:22:35.726522 :: SyncPosition: Too often SyncPosition Interval(0ms)(Arquera Juramento Blanco) from Name(Ramsey) VICTIM(901526,221451) SYNC(901515,221441)
    SYSERR: Apr  2 05:22:48.757181 :: SyncPosition: Too often SyncPosition Interval(0ms)(Soldado Juramento Blanco) from Name(Ramsey) VICTIM(900786,221385) SYNC(900786,221380)
    SYSERR: Apr  2 05:22:49.276164 :: SyncPosition: Too often SyncPosition Interval(85ms)(Soldado Juramento Blanco) from Name(Ramsey) VICTIM(900921,221628) SYNC(900931,221634)
    SYSERR: Apr  2 05:22:54.303015 :: SyncPosition: Too often SyncPosition Interval(0ms)(Eun-Jung) from Name(BlackAngel) VICTIM(433199,911851) SYNC(433512,911503)
    SYSERR: Apr  2 05:22:54.303194 :: SyncPosition: Too often SyncPosition Interval(0ms)(Mi-Jung Desanimada) from Name(BlackAngel) VICTIM(433287,911957) SYNC(433745,912053)
    SYSERR: Apr  2 05:22:55.498345 :: SyncPosition: Too often SyncPosition Interval(85ms)(Jin-Hee) from Name(BlackAngel) VICTIM(433024,912005) SYNC(433192,912034)
    SYSERR: Apr  2 05:23:03.471069 :: Analyze: Handshake phase does not handle packet 66 (fd 123)
     

     

    Imput_main.cpp http://pastebin.com/TR913T97

    I need help please!

    Wered

     

  9. hello community
     
    I have a problem!

    Syserr Core1 CH1 Source Code maxmi 81000

     

    SYSERR: Mar 31 19:33:48.280875 :: SyncPosition: Too often SyncPosition Interval(0ms)(Arahan Oscuro Soberbio) from Name(Pain) VICTIM(558415,130281) SYNC(558563,130327)

    SYSERR: Mar 31 19:34:53.642741 :: RunState: LUA_ERROR: (none):0: attempt to index field `?' (a nil value)
    SYSERR: Mar 31 19:34:53.642841 :: WriteRunningStateToSyserr: LUA_ERROR: quest pet_system.start letter
    SYSERR: Apr  1 00:43:18.359211 :: WarpSet: cannot find map location index 46 x 256000 y 819200 name Yanku
    SYSERR: Apr  1 00:51:10.964921 :: UpdateSectree: null sectree name: Yanku 373994 181817

     

    Quest Pet system

     

     

    quest pet_system begin

    state start begin
    when 53001.use or 53002.use or 53003.use or 53005.use or 53006.use or 53007.use or 53008.use or 53009.use 
    or 53010.use or 53011.use or 53012.use or 53013.use or 53014.use or 53015.use or 53016.use or 53017.use begin
    local v = item.get_vnum()
    local petName, mobVnum, effect = pet_info[v][2], pet_info[v][1], pet_info[v][3]
    local petName
    if pet.is_named() then petName = " - "..pet.get_name(mobVnum)..""
    else petName = pet_info[v][2] end
    if pet.get_level() == 0 then pc.give_pet(v) return end
    if true == pet.is_summon(mobVnum) then pet.seal_menu() return end
    if pet.count_summoned() < 1 then
    pet.summon(mobVnum, petName, false)
    pc.setqf("pet_spawn", mobVnum) pc.setqf("pet_spawn_id", v)
    pet.spawn_effect(mobVnum, effect_table[pet_info[v][6]])
    pet.give_bonus() pet.summon_log()
    loop_timer("refresh_pet_stats", 0.5)
    else syschat(pet_text.cantsummonmore) end
    end
    when refresh_pet_stats.timer with pc.getqf("pet_spawn") != 0 begin if pc.is_dead() then pet.remove_bonus() pet.delete_infos() end pet.gui_info() end
    when kill with not npc.is_pc() and pet.count_summoned() >= 1 and pet.get_level() < 150 begin pet.level_up() end
    when login begin cmdchat("SetPetIncreaseBoniButtonIndex "..q.getcurrentquestindex()) end
    when info or button begin  pet.remove_bonus() pet.increase_stats()  pet.give_bonus() end
    when logout with pc.getqf("pet_spawn") != 0 and pet.count_summoned() > 0 begin  pet.remove_bonus() pet.delete_infos() end
    when 17220.use or 11951.use or 11952.use or 11953.use or 11954.use 
    or 11955.use or 11956.use or 11957.use or 11958.use or 11959.use or
    14501.use or 11961.use or 11962.use or 11963.use or 11964.use or 11965.use
    or 11966.use or 11967.use or 11968.use or 11969.use or 17521.use or 11971.use
    or 11972.use or 11973.use or 11974.use or 11975.use or 11976.use or 11977.use
    or 11978.use or 11979.use or 17540.use or 17541.use with pc.getqf("pet_spawn") ~= 0 begin pet.set_item(item.get_vnum()) end
    when 34001.click or 34002.click or 34003.click or 34004.click or 34005.click or 34006.click 
    or 34007.click or 34008.click or 34009.click or 34010.click or 34011.click or 34012.click 
    or 34013.click or 34014.click or 34015.click or 34016.click begin if pet.is_mine() == true then pet.gui_info() cmdchat("ShowPet") end
    end
    end
    end

     

    Help me please!

  10. Hi guys, I have a problem with my server! It is this problem:

     

    wolfbug.jpg

     

    When putting on the armor is not seen, but changing character in armor all is normal until you take it off!

     

    wolfbug2.jpg

     

    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.