Jump to content

FlorinMarian

Premium
  • Posts

    305
  • Joined

  • Last visited

  • Days Won

    2
  • Feedback

    0%

Posts posted by FlorinMarian

  1. Hi !

    I try to compile this code part and i get some errors. Some help ?

    if (ch->GetParty())
    	{
    		#include "party.h"
    		TMemberMap::iterator it;
    		std::string listOfPlayers;
    		
    		for (it = m_memberMap.begin(); it != m_memberMap.end(); ++it)
    			listOfPlayers += " - " + it->second->strName;
    	}
    cmd_general.cpp:2426: error: 'TMemberMap' has not been declared
    cmd_general.cpp:2426: error: expected `;' before 'it'
    cmd_general.cpp:2429: error: 'it' was not declared in this scope
    cmd_general.cpp:2429: error: 'm_memberMap' was not declared in this scope

    I have included "party.h".

    Thank you !

  2. Hello !

    I've bought duel system from a turkish man but this system it's fully turkish. Seller is too busy to help me transate these files.

    Some help? Thank you !

    *Some messages are repeated to be sure i will translate completly the files.

    game.py
    chat.AppendChat(chat.CHAT_TYPE_INFO,"Düello paneli açıkken item kullanamazsın.")
    chat.AppendChat(chat.CHAT_TYPE_INFO, "<Düello> Rakip 15 saniye içinde kalkmadığı için duello iptal olmuştur.")
    chat.AppendChat(chat.CHAT_TYPE_INFO, "<Itemine VS:> : İtemine vs engelliyken, itemine vs yapamazsın.")
    chat.AppendChat(chat.CHAT_TYPE_INFO, "<Itemine VS:> : İtemine vs engelliyken, itemine vs yapamazsın.")
    chat.AppendChat(chat.CHAT_TYPE_INFO, "<Itemine VS:> : İtemine vs engelliyken, itemine vs yapamazsın.")
    chat.AppendWhisper(chat.WHISPER_TYPE_SYSTEM, name, "Sana itemine vs teklifi yolluyor.")
    chat.AppendChat(chat.CHAT_TYPE_INFO, str(name) + " adli oyuncu sana itemine vs teklifi yolluyor.")
    chat.AppendChat(chat.CHAT_TYPE_INFO,"Bu oyuncu şuanda itemine düello yapamaz.")
    chat.AppendChat(chat.CHAT_TYPE_INFO, "<Itemine VS:> : İtemine vs engelliyken, itemine vs yapamazsın.")
    chat.AppendWhisper(chat.WHISPER_TYPE_SYSTEM, name, "Sana itemine vs teklifi yolluyor.")
    chat.AppendChat(chat.CHAT_TYPE_INFO, str(name) + " adli oyuncu sana itemine vs teklifi yolluyor.")
    
    localegame.py
    dbg.LogBox("Beklenmeyen Hata(%(gelenDosya)s)" % locals())
    raise RuntimeError, "Belirsiz Token kodu tespit edildi!"
    dbg.LogBox("%s: Bulunan Satır(%d): %s" % (gelenDosya, yer, i), "localegame[game.txt]")
    
    uigameoption.py
    chat.AppendChat(chat.CHAT_TYPE_INFO,"Ýtemine ws varken serbest modunu kullanamazsýn.")
    chat.AppendChat(chat.CHAT_TYPE_INFO,"Ýtemine ws varken lonca modunu kullanamazsýn.")
    
    uiiteminduello.py
    self.ListBox.InsertItem(0, " |cFF0080FF|H|hitemine ws paneli açýldý.")
    chat.AppendChat(chat.CHAT_TYPE_INFO, "<Düello> : Düello'ya hazýrken bu iţlem yapýlamaz.")
    chat.AppendChat(chat.CHAT_TYPE_INFO, "<Düello> : Düello'ya hazýrken bu iţlem yapýlamaz.")
    chat.AppendChat(chat.CHAT_TYPE_INFO, "<Düello> : Düello'ya hazýrken bu iţlem yapýlamaz.")
    chat.AppendChat(chat.CHAT_TYPE_INFO, "<Düello> : Düello'ya hazýrken bu iţlem yapýlamaz.")
    self.ListBox.InsertItem(0, "|cFFFF0000|H|hSen: " + "|cFFFFFF00|H|hRound sayýsýný " + str(bol[2]) + " olarak deđiţtirdin. |c000000|H|h" + str(bol[5]))
    self.ListBox.InsertItem(0, "|cFF32CD32|H|h" + str(bol[1]) + ": " + "|cFFFFFF00|H|h" + str(bol[2]) + " (" + str(bol[3]) + "x - " + str(bol[4]) + ".Slot)" + " ekledi. |c000000|H|h" + str(bol[5]))
    self.ListBox.InsertItem(0, "|cFF32CD32|H|h" + str(bol[1]) + ": " + "|cFFFFFF00|H|h" + str(localeInfo.NumberToMoneyString(gameInfo.DUELLO_RAKIP_PARA)) + " ekledi. |c000000|H|h" + str(bol[5]))
    self.ListBox.InsertItem(0, "|cFF32CD32|H|h" + str(bol[1]) + ": " + "|cFFFFFF00|H|h" + str(bol[2]) + " (" + str(bol[3]) + "x - " + str(bol[4]) + ".Ekipman Slot)" + " ekledi. |c000000|H|h" + str(bol[5]))
    self.ListBox.InsertItem(0, "|cFF32CD32|H|h" + str(bol[1]) + ": " + "|cFFFFFF00|H|hRound sayýsýný " + str(bol[2]) + " olarak deđiţtirdi. |c000000|H|h" + str(bol[5]))
    self.TitleName.SetText(str(gameInfo.DUELLO_RAKIP) + " adlý oyuncuyla eţyalý düello panelin.")
    self.GetChild("Target_MacBilgileri_1").SetText("Toplam Maç:" + str(gameInfo.DUELLO_BILGILERI[str(gameInfo.DUELLO_RAKIP)+"_info2"].split("#")[1]))
    self.GetChild("Target_MacBilgileri_2").SetText("G/M : " + str(gameInfo.DUELLO_BILGILERI[str(gameInfo.DUELLO_RAKIP)+"_info2"].split("#")[2])+"/"+str(gameInfo.DUELLO_BILGILERI[str(gameInfo.DUELLO_RAKIP)+"_info2"].split("#")[3]))
    self.GetChild("Target_MacBilgileri_3").SetText("Kaçma : " + str(gameInfo.DUELLO_BILGILERI[str(gameInfo.DUELLO_RAKIP)+"_info2"].split("#")[4]))
    self.GetChild("My_MacBilgileri_1").SetText("Toplam Maç:" + str(gameInfo.DUELLO_BILGILERI[str(player.GetName())+"_info2"].split("#")[1]))
    self.GetChild("My_MacBilgileri_2").SetText("G/M : " + str(gameInfo.DUELLO_BILGILERI[str(player.GetName())+"_info2"].split("#")[2])+"/"+str(gameInfo.DUELLO_BILGILERI[str(player.GetName())+"_info2"].split("#")[3]))
    self.GetChild("My_MacBilgileri_3").SetText("Kaçma : " + str(gameInfo.DUELLO_BILGILERI[str(player.GetName())+"_info2"].split("#")[4]))
    self.roundBildirBUTTON = self.Button(self, 'Rakibi bildir', 'Eđer rakip düellodayken çýktýysa bildir!', 71 + 98, 0, self.__roundBildir, 'd:/ymir work/ui/public/middle_button_01.sub', 'd:/ymir work/ui/public/middle_button_02.sub', 'd:/ymir work/ui/public/middle_button_03.sub')
    self.GetChild("TitleName").SetText("Ýtemine ws depon boţ.")
    self.GetChild("My_Guild").SetText("Lonca Yok")
    self.GetChild("TitleName").SetText(str(self.name) + " ile yaptýđýn itemine ws'de kazandýđýn son eţyalar (Round : " + str(gameInfo.DUELLO_BILGILERI["depo_"+str(self.name)+"_round"]) + " )")
    self.GetChild("TitleName").SetText("Ýtemine ws depon boţ.")
    self.GetChild("My_MacBilgileri_1").SetText("Toplam Maç: " + str(gameInfo.DUELLO_BILGILERI[str(player.GetName())+"_info100"].split("#")[1]))
    self.GetChild("My_MacBilgileri_2").SetText("G/M : " + str(gameInfo.DUELLO_BILGILERI[str(player.GetName())+"_info100"].split("#")[2])+"/"+str(gameInfo.DUELLO_BILGILERI[str(player.GetName())+"_info100"].split("#")[3]))
    self.GetChild("My_MacBilgileri_3").SetText("Kaçma : " + str(gameInfo.DUELLO_BILGILERI[str(player.GetName())+"_info100"].split("#")[4]))
    
    uirestart.py
    chat.AppendChat(chat.CHAT_TYPE_INFO,"Ýtemine VS anýnda, ţehirde yeniden baţlýyamazsýn.")
    BUTTON_NAME_LIST = ( 
    "Eţya ile Düello",
    "Ý.Düello Kabul Et",
    	)
    self.showingButtonList.append(self.buttonDict["Eţya ile Düello"])
    self.Chat("<Düello> : Ţuan'da zaten düellodasýn.")
    self.Chat("<Düello> : Ţuan'da panel ekranýnda iken bu seçeneđi kullanamassýn.")

     

  3. Acum 43 minute, Nevisor a spus:

    Try this one

      Ascunde conținuturi
    
    
    game.py
    Find:
    class GameWindow(ui.ScriptWindow):
    to	def __init__(self): add:
    		self.display = 0
    		self.time = 0
    
    to	def __GuildWar_OpenAskDialog(self, guildID, warType): add:
    		self.display = 1
    		self.time = app.GetTime() + 120 ## 120 seconds
    		
    to	def __GuildWar_OnDecline(self): add:
    		self.display = 0
    		
    to	def OnUpdate(self): add:
    		if app.GetTime() > self.time and self.display:
    			self.__GuildWar_OnDecline()

     

    NOT TESTED

    Thanks but nothing happen, no error/effect.

  4. Two more crashes, found these (twice) in syslog at crash

    Jun 23 08:43:36 :: NightCraw: USE_SKILL: 109 pkVictim 0x2b4cc000
    Jun 23 08:43:36 :: RemoveBadAffect NightCraw
    SYSERR: Jun 23 10:00:32 :: pid_init: 
    Jun 23 10:24:07 :: QUEST ScriptButton pid 181561 idx 2
    Jun 23 10:24:07 :: QUEST ScriptButton pid 181561 idx 2
    Jun 23 10:24:07 :: QUEST ScriptButton pid 181561 idx 2
    Jun 23 10:24:07 :: QUEST ScriptButton pid 181561 idx 2
    Jun 23 10:24:07 :: SuntDoarUnOm: USE_SKILL: 78 pkVictim 0x0

    differences between CHAR:UseSkill untouched/mine

    	if ((dwVnum == SKILL_GEOMKYUNG || dwVnum == SKILL_GWIGEOM) && !GetWear(WEAR_WEAPON))
    		return false;

     

  5. Acum 20 minute, Dobrescu Sebastian a spus:

    Just delete the function, no popular server ever used it and doesn't help with anything.

    Or use this function and as MORTE said, check your quests, but you have no guarantee you will solve by this and it will not appear in future.

    It's hard to check quests, server don't go down with 1 character online.

  6. Server down again.

    SYSERR: Jun 22 23:25:50 :: Click: CQuestManager::Click(pid=181557, target_npc_name=Tyrax) - NOT EXIST NPC RACE VNUM[20091]
    SYSERR: Jun 22 23:29:24 :: checkpointing: CHECKPOINT shutdown: tics did not updated.

    I was concentrated on processes and I saw, before goind down, core got 100% CPU use.

    Any tip?

  7. Acum 4 minute, Dobrescu Sebastian a spus:

    I gave you answer, but it appears a moderator has to verify it.

    
    checkpointing: CHECKPOINT shutdown: tics did not updated. it's the problem for core crash, and you can fix it searching o google.

    But if you disabled encryption packed, wait for my post to be aproved, you have to do some extra changes to, and fix that mismatch 254.

    On google i've found only how to delete that function, but isn't a good point. There it's a reason why this function it's called.

    I've found this time, server has been downed by a quest.

    I've removed it and now i'm waiting to see what's next.

  8. New crash (now on core1)

    
    Core was generated by `game_r1_32'.
    Program terminated with signal 6, Aborted.
    Error while mapping shared library sections:
    ./a1711365.so: No such file or directory.
    Reading symbols from /lib/libmd.so.5...done.
    Loaded symbols for /lib/libmd.so.5
    Reading symbols from /usr/local/lib/libIL.so.1...done.
    Loaded symbols for /usr/local/lib/libIL.so.1
    Reading symbols from /usr/local/lib/libpng16.so.16...done.
    Loaded symbols for /usr/local/lib/libpng16.so.16
    Reading symbols from /usr/local/lib/libtiff.so.5...done.
    Loaded symbols for /usr/local/lib/libtiff.so.5
    Reading symbols from /lib/libmng.so.1...done.
    Loaded symbols for /lib/libmng.so.1
    Reading symbols from /lib/liblcms.so.1...done.
    Loaded symbols for /lib/liblcms.so.1
    Reading symbols from /usr/local/lib/libjpeg.so.8...done.
    Loaded symbols for /usr/local/lib/libjpeg.so.8
    Reading symbols from /lib/libmysqlclient.so.18...done.
    Loaded symbols for /lib/libmysqlclient.so.18
    Reading symbols from /lib/libz.so.6...done.
    Loaded symbols for /lib/libz.so.6
    Reading symbols from /lib/libstdc++.so.6...Error while reading shared library symbols:
    Dwarf Error: wrong version in compilation unit header (is 4, should be 2) [in module /lib/libstdc++.so.6]
    Reading symbols from /lib/libm.so.5...done.
    Loaded symbols for /lib/libm.so.5
    Reading symbols from /lib/libgcc_s.so.1...done.
    Loaded symbols for /lib/libgcc_s.so.1
    Reading symbols from /lib/libthr.so.3...done.
    Loaded symbols for /lib/libthr.so.3
    Reading symbols from /lib/libc.so.7...done.
    Loaded symbols for /lib/libc.so.7
    Reading symbols from /usr/local/lib/libnvtt.so...done.
    Loaded symbols for /usr/local/lib/libnvtt.so
    Reading symbols from /usr/local/lib/libjasper.so.4...done.
    Loaded symbols for /usr/local/lib/libjasper.so.4
    Reading symbols from /usr/lib/liblzma.so.5...done.
    Loaded symbols for /usr/lib/liblzma.so.5
    Reading symbols from /usr/local/lib/libjbig.so.2...done.
    Loaded symbols for /usr/local/lib/libjbig.so.2
    Reading symbols from /lib/libjpeg.so.11...done.
    Loaded symbols for /lib/libjpeg.so.11
    Reading symbols from /usr/local/lib/libnvimage.so...done.
    Loaded symbols for /usr/local/lib/libnvimage.so
    Reading symbols from /usr/local/lib/libnvmath.so...done.
    Loaded symbols for /usr/local/lib/libnvmath.so
    Reading symbols from /usr/local/lib/libnvcore.so...done.
    Loaded symbols for /usr/local/lib/libnvcore.so
    Reading symbols from /usr/local/lib/libImath-2_2.so.12...done.
    Loaded symbols for /usr/local/lib/libImath-2_2.so.12
    Reading symbols from /usr/local/lib/libIlmImf-2_2.so.22...done.
    Loaded symbols for /usr/local/lib/libIlmImf-2_2.so.22
    Reading symbols from /usr/local/lib/libIex-2_2.so.12...done.
    Loaded symbols for /usr/local/lib/libIex-2_2.so.12
    Reading symbols from /usr/local/lib/libHalf.so.12...done.
    Loaded symbols for /usr/local/lib/libHalf.so.12
    Reading symbols from /usr/local/lib/libIlmThread-2_2.so.12...done.
    Loaded symbols for /usr/local/lib/libIlmThread-2_2.so.12
    Reading symbols from /usr/local/lib/libIexMath-2_2.so.12...done.
    Loaded symbols for /usr/local/lib/libIexMath-2_2.so.12
    Reading symbols from /usr/libsvside.so...done.
    Loaded symbols for /usr/libsvside.so
    Error while reading shared library symbols:
    ./a1711365.so: No such file or directory.
    Reading symbols from /libexec/ld-elf.so.1...done.
    Loaded symbols for /libexec/ld-elf.so.1
    #0  0x28ab39cb in thr_kill () from /lib/libc.so.7
    [New Thread 29406100 (LWP 100619/game_r1_32)]
    [New Thread 29405e00 (LWP 100617/game_r1_32)]
    [New Thread 29405b00 (LWP 100616/game_r1_32)]
    [New Thread 29404300 (LWP 100248/game_r1_32)]
    SYSERR: Jun 22 22:22:57 :: pid_init: 
    Start of pid: 17113
    
    SYSERR: Jun 22 22:26:24 :: Process: SEQUENCE 2b7c3800 mismatch 0xaf != 0x0 header 254
    SYSERR: Jun 22 22:26:24 :: Process: SEQUENCE_LOG [UNKNOWN]-------------
    	[254 : 0xaf]
    
    SYSERR: Jun 22 22:26:37 :: Process: SEQUENCE 2b7c2c00 mismatch 0xaf != 0x0 header 254
    SYSERR: Jun 22 22:26:37 :: Process: SEQUENCE_LOG [UNKNOWN]-------------
    	[254 : 0xaf]
    
    SYSERR: Jun 22 22:26:37 :: Process: SEQUENCE 2b7c3c00 mismatch 0xaf != 0x0 header 254
    SYSERR: Jun 22 22:26:37 :: Process: SEQUENCE_LOG [UNKNOWN]-------------
    	[254 : 0xaf]
    
    SYSERR: Jun 22 22:26:51 :: Process: SEQUENCE 2fcf5000 mismatch 0xaf != 0x0 header 254
    SYSERR: Jun 22 22:26:51 :: Process: SEQUENCE_LOG [UNKNOWN]-------------
    	[254 : 0xaf]
    
    SYSERR: Jun 22 22:27:20 :: Process: SEQUENCE 2fcf6000 mismatch 0xaf != 0x0 header 254
    SYSERR: Jun 22 22:27:20 :: Process: SEQUENCE_LOG [UNKNOWN]-------------
    	[254 : 0xaf]
    
    SYSERR: Jun 22 22:27:35 :: Process: SEQUENCE 2fcf5800 mismatch 0xaf != 0x0 header 254
    SYSERR: Jun 22 22:27:35 :: Process: SEQUENCE_LOG [UNKNOWN]-------------
    	[254 : 0xaf]
    
    SYSERR: Jun 22 22:27:46 :: Process: SEQUENCE 2fcf6c00 mismatch 0xaf != 0x0 header 254
    SYSERR: Jun 22 22:27:46 :: Process: SEQUENCE_LOG [UNKNOWN]-------------
    	[254 : 0xaf]
    
    SYSERR: Jun 22 22:28:22 :: Process: SEQUENCE 2fcf7000 mismatch 0xaf != 0x0 header 254
    SYSERR: Jun 22 22:28:22 :: Process: SEQUENCE_LOG [UNKNOWN]-------------
    	[254 : 0xaf]
    
    SYSERR: Jun 22 22:29:11 :: Process: SEQUENCE 2fcf7400 mismatch 0xaf != 0x0 header 254
    SYSERR: Jun 22 22:29:11 :: Process: SEQUENCE_LOG [UNKNOWN]-------------
    	[254 : 0xaf]
    
    SYSERR: Jun 22 22:29:18 :: Process: SEQUENCE 2fcf7800 mismatch 0xaf != 0x0 header 254
    SYSERR: Jun 22 22:29:18 :: Process: SEQUENCE_LOG [UNKNOWN]-------------
    	[254 : 0xaf]
    
    SYSERR: Jun 22 22:30:38 :: Process: SEQUENCE 2fcf5800 mismatch 0xaf != 0x0 header 254
    SYSERR: Jun 22 22:30:38 :: Process: SEQUENCE_LOG [UNKNOWN]-------------
    	[254 : 0xaf]
    
    SYSERR: Jun 22 22:30:59 :: Process: SEQUENCE 2fcf6c00 mismatch 0xaf != 0x0 header 254
    SYSERR: Jun 22 22:30:59 :: Process: SEQUENCE_LOG [UNKNOWN]-------------
    	[254 : 0xaf]
    
    SYSERR: Jun 22 22:31:13 :: Process: SEQUENCE 2b7c3c00 mismatch 0xaf != 0x0 header 254
    SYSERR: Jun 22 22:31:13 :: Process: SEQUENCE_LOG [UNKNOWN]-------------
    	[254 : 0xaf]
    
    SYSERR: Jun 22 22:31:15 :: Process: SEQUENCE 2b7c3800 mismatch 0xaf != 0x0 header 254
    SYSERR: Jun 22 22:31:15 :: Process: SEQUENCE_LOG [UNKNOWN]-------------
    	[254 : 0xaf]
    
    SYSERR: Jun 22 22:31:40 :: Select: wrong QUEST_SELECT request! : 181552
    SYSERR: Jun 22 22:32:52 :: checkpointing: CHECKPOINT shutdown: tics did not updated.

     

  9. Hello devs !

    I have a problem with my server, somebody crash my server (always channel1/core3)

    Syserr:

    SYSERR: Jun 22 22:23:00 :: pid_init: 
    Start of pid: 17117
    
    SYSERR: Jun 22 22:26:10 :: ChildLoop: AsyncSQL: query failed: Unknown column 'account_id' in 'field list' (query: REPLACE INTO levellog (name, level, time, account_id, pid, playtime) VALUES('Jhyn', 98, NOW(), 155900, 181567, 0) errno: 1054)
    SYSERR: Jun 22 22:29:57 :: Click: CQuestManager::Click(pid=181567, target_npc_name=Tyrax) - NOT EXIST NPC RACE VNUM[20091]
    SYSERR: Jun 22 22:31:48 :: Analyze: Handshake phase does not handle packet 71 (fd 29)
    SYSERR: Jun 22 22:31:48 :: Process: SEQUENCE 2e1eec00 mismatch 0xaf != 0x20 header 71
    SYSERR: Jun 22 22:31:48 :: Process: SEQUENCE_LOG [UNKNOWN]-------------
    	[071 : 0xaf]
    
    SYSERR: Jun 22 22:31:50 :: Analyze: Handshake phase does not handle packet 71 (fd 29)
    SYSERR: Jun 22 22:31:50 :: Process: SEQUENCE 2e1eec00 mismatch 0xaf != 0x66 header 71
    SYSERR: Jun 22 22:31:50 :: Process: SEQUENCE_LOG [UNKNOWN]-------------
    	[071 : 0xaf]
    
    SYSERR: Jun 22 22:32:57 :: ChildLoop: AsyncSQL: query failed: Unknown column 'account_id' in 'field list' (query: REPLACE INTO levellog (name, level, time, account_id, pid, playtime) VALUES('DeepThroat', 98, NOW(), 155900, 181568, 0) errno: 1054)
    SYSERR: Jun 22 22:33:47 :: Analyze: Handshake phase does not handle packet 71 (fd 19)
    SYSERR: Jun 22 22:33:47 :: Process: SEQUENCE 2e1ea800 mismatch 0xaf != 0x20 header 71
    SYSERR: Jun 22 22:33:47 :: Process: SEQUENCE_LOG [UNKNOWN]-------------
    	[071 : 0xaf]
    
    SYSERR: Jun 22 22:33:47 :: Analyze: Handshake phase does not handle packet 71 (fd 19)
    SYSERR: Jun 22 22:33:47 :: Process: SEQUENCE 2e1ea800 mismatch 0xaf != 0x66 header 71
    SYSERR: Jun 22 22:33:47 :: Process: SEQUENCE_LOG [UNKNOWN]-------------
    	[071 : 0xaf]
    
    SYSERR: Jun 22 22:33:48 :: Analyze: Handshake phase does not handle packet 71 (fd 19)
    SYSERR: Jun 22 22:33:48 :: Process: SEQUENCE 2e1ea800 mismatch 0xaf != 0x20 header 71
    SYSERR: Jun 22 22:33:48 :: Process: SEQUENCE_LOG [UNKNOWN]-------------
    	[071 : 0xaf]
    
    SYSERR: Jun 22 22:33:49 :: Analyze: Handshake phase does not handle packet 71 (fd 19)
    SYSERR: Jun 22 22:33:49 :: Process: SEQUENCE 2e1ea800 mismatch 0xaf != 0x20 header 71
    SYSERR: Jun 22 22:33:49 :: Process: SEQUENCE_LOG [UNKNOWN]-------------
    	[071 : 0xaf]
    
    SYSERR: Jun 22 22:34:25 :: affect_add_hair: invalid argument
    SYSERR: Jun 22 22:34:59 :: GetQuestStateIndex: QUEST wrong quest state file levelup.run
    SYSERR: Jun 22 22:35:02 :: GetQuestStateIndex: QUEST wrong quest state file levelup.run
    SYSERR: Jun 22 22:35:02 :: ChildLoop: AsyncSQL: query failed: Unknown column 'account_id' in 'field list' (query: REPLACE INTO levellog (name, level, time, account_id, pid, playtime) VALUES('DeepThroat', 99, NOW(), 155900, 181568, 2) errno: 1054)

    Fixes

    [FIX*]PM Flooder Kick Hack
    [FIX*]Messenger Kick Hack
    [FIX*]Messenger SQL Injection [MessengerManager::RemoveFromList]
    [FIX*]Dungeon Core Downer
    [FIX*]Cube Core Downer
    [FIX*]Command /war Fixed
    [FIX*]P2P Header Removed
    [FIX*]Guild Vulnerability Adding Mobs/NPCs Into Guild

    gdb game.core

    
    Core was generated by `game_r1_32'.
    Program terminated with signal 11, Segmentation fault.
    #0  0x082131ca in ?? ()

    I miss something ?

    Thanks you !

  10. Any solution for this BUG ? 

    CIU5f2oMTYW6_virkD4Dow.png

    *10 000 HP from Mount

    How I did this bug ?

    I occupied full inventory pages and mount don't had space to come in inventory (normal this happen if have space).

    How to prevent keeping of that bonus ?

    I've already applied this 

     

    Thank you !

  11. Hello !

    I started to rewrite my souce code and with clean source (mainline and mainline_released).

    I don't changed anything in source and at start already i have one bug.

    My character isn't visible till i don't move any item from character to inventory or reverse.

    Screenshot:

    hJgFAakMTSGWO4q0oNpLCw.png

    Syserr

    0618 21:13:14519 :: invalid idx 0
    0618 21:13:19094 :: GRANNY: r:/granny/rt/granny_file_info.cpp(145): File has run-time type tag of 0x8000000f, which doesn't match this version of Granny (0x80000010).  Automatic conversion will be attempted.
    0618 21:13:21518 :: GRANNY: r:/granny/rt/granny_file.cpp(331): File is not a Granny file
    0618 21:13:32025 :: Ăł¸®µÇÁö ľĘŔş ĆĐŶ Çě´ő 32, state Game -- this appear everytime when i change map/log in
    
    0618 21:14:32628 :: Ăł¸®µÇÁö ľĘŔş ĆĐŶ Çě´ő 32, state Game
    

     

    **UPDATE:

    Error with state Game dissapeared after I've applied this tut to game, launcher already had this.

     

  12. Chiar acum, Syreldar a spus:

    Of course it is, The database string on guild remains, and it' still linked to its owner even tho he doesn't exist anymore.

    You should link the guild deletion to the char deletion from its guild, and the guild itself if hes the leader.

    Can you help me doing this please ? :)

    I just know basically functions in C#, i'm not a developer.

  13. Hello !

    I've found today a strange bug on a metin2 server.

    I had a character where I was guild leader.

    I've deleted the character and created a new one (isn't important if had same name or not).

    When I've tried to create again same guild name, surprise: guild name wasn't removed same time with owner character.

    Is it normal ? (to be guild without leader).

    Thanks !

  14. Acum 24 minute, kntybrn a spus:

    i wish to do multiple channel servers like gameforge, yes maybe you're right public ip can be blocked

    It's easy to do it.

    I had impression you try to make 2 different servers on same VPS.

    Just multiplicate channel1 folder with a new folder name "channel2" and recreate symlinks.

    Auth it's the same.

    Look from my server:

    /usr/home/game/channel1/CONFIG

    HOSTNAME: ch_1
    CHANNEL: 1
    PORT: 13000
    P2P_PORT: 30011
    DB_PORT: 15001
    DB_ADDR: localhost

    /usr/home/game/channel2/CONFIG

    HOSTNAME: ch_2
    CHANNEL: 2
    PORT: 14000
    P2P_PORT: 40011
    DB_PORT: 15001
    DB_ADDR: localhost

     

×
×
  • 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.