Schick, kann nützlich sein danke fürs teilen
Beiträge von Riot Squad
-
-
Du solltest echt mal Englisch lernen.
Und wie man googelt
Das du auf mein Englisch rum hacken musst
Habe es hinbekommen
-
Nein da bekommste TAB Fehler....
Füg doch einfach in der Binary Source das hinzu
UserInterface:
PythonApplicationModule.cpp
Btw jeden Fehler den du hier gepostet hast hättest auch mit selber googlen finden und lösen können
Edit: Bevor du fragst nein du brauchst das System nicht im Source haben es geht nur darum das die Binary es lesen kann und es als deaktiviert erkennt
Danke hat funktioniert
Naja man verliert hat echt die Nerven, weil ich habe im Endeffekt alles so gemacht wie es da steht.
Aber jedes mal kommen andere Fehler dazu, und weiß nicht an was es liegt ob des der aufbau von den Files sind oder kp.
Genauso in Game sehe ich noch nicht, das Acc Inventar. Und kann auch keine Items mehr Benutzen syserr sagt das.
Code- 0810 17:54:19237 :: Traceback (most recent call last):
- 0810 17:54:19237 :: File "ui.py", line 1479, in OnUnselectItemSlot
- 0810 17:54:19237 :: File "ui.py", line 87, in __call__
- 0810 17:54:19237 :: File "ui.py", line 78, in __call__
- 0810 17:54:19237 :: File "uiInventory.py", line 1173, in UseItemSlot
- 0810 17:54:19238 :: TypeError
- 0810 17:54:19238 :: :
- 0810 17:54:19238 :: 'int' object is not callable
- 0810 17:54:19238 ::
-
kommentier den part mit highlight system aus wenn dus nicht drin hast
edit: Bitte melden Sie sich an, um diesen Link zu sehen.
hättest den syserr auch googlen können^^
Passt das so ?
Code- if app.ENABLE_ACCE_SYSTEM:
- slotNumberChecked = 0
- if not constInfo.IS_AUTO_POTION(itemVnum):
- #if app.ENABLE_HIGHLIGHT_SYSTEM:
- #if not slotNumber in self.listHighlightedSlot:
- self.wndItem.DeactivateSlot(i)
- #else:
- #self.wndItem.DeactivateSlot(i)
- for j in xrange(acce.WINDOW_MAX_MATERIALS):
- (isHere, iCell) = acce.GetAttachedItem(j)
- if isHere:
- if iCell == slotNumber:
- self.wndItem.ActivateSlot(i, (36.00 / 255.0), (222.00 / 255.0), (3.00 / 255.0), 1.0)
- if not slotNumber in self.listAttachedAcces:
- self.listAttachedAcces.append(slotNumber)
- slotNumberChecked = 1
- else:
- if slotNumber in self.listAttachedAcces and not slotNumberChecked:
- self.wndItem.DeactivateSlot(i)
- self.listAttachedAcces.remove(slotNumber)
- self.wndItem.RefreshSlot()
- if self.wndBelt:
- self.wndBelt.RefreshSlot()
-
Was steht in File "introSelect.py", line 242
Scheinbar ist der Fehler jetzt weg nach dem ich es neu eingefügt habe.
Allerdings habe ich jetzt das Problem, habe komplett neuen Account gemacht. Wie gewohnt Char erstellt, und wollte starten.
Nach dem bin ich rausgeflogen, bis zum Login habe mich wieder eingeloggt und Char ist weg in der DB "Player" wird er aber angezeigt.
Client syserr:
Code- 0809 23:48:15430 :: Traceback (most recent call last):
- 0809 23:48:15430 :: File "networkModule.py", line 247, in SetGamePhase
- 0809 23:48:15431 :: File "game.py", line 99, in __init__
- 0809 23:48:15431 :: File "interfaceModule.py", line 303, in MakeInterface
- 0809 23:48:15431 :: File "interfaceModule.py", line 174, in __MakeWindows
- 0809 23:48:15431 :: File "uiInventory.py", line 263, in __init__
- 0809 23:48:15431 :: File "uiInventory.py", line 404, in __LoadWindow
- 0809 23:48:15432 :: File "uiInventory.py", line 477, in SetInventoryPage
- 0809 23:48:15432 :: File "uiInventory.py", line 589, in RefreshBagSlotWindow
- 0809 23:48:15432 :: AttributeError
- 0809 23:48:15432 :: :
- 0809 23:48:15432 :: 'module' object has no attribute 'ENABLE_HIGHLIGHT_SYSTEM'
- 0809 23:48:15432 ::
Habe es einmal mit drin, aber ich habe dieses System nicht.
Und laut tutorial, muss ich es so einfügen.Code- """"""
- #1) Search:
- ITEM_FLAG_APPLICABLE = 1 << 14
- #2) Before make a new line and paste:
- if app.ENABLE_ACCE_SYSTEM:
- import acce
- """"""
- """"""
- #1) Search:
- self.SetInventoryPage(0)
- #2) Before make a new line and paste:
- if app.ENABLE_ACCE_SYSTEM:
- self.listAttachedAcces = []
- """"""
- """"""
- #1) Search:
- def RefreshBagSlotWindow(self):
- #2) Inside this func search:
- self.wndItem.RefreshSlot()
- if self.wndBelt:
- self.wndBelt.RefreshSlot()
- #3) Before make a new line and paste:
- if app.ENABLE_ACCE_SYSTEM:
- slotNumberChecked = 0
- if not constInfo.IS_AUTO_POTION(itemVnum):
- if app.ENABLE_HIGHLIGHT_SYSTEM:
- if not slotNumber in self.listHighlightedSlot:
- self.wndItem.DeactivateSlot(i)
- else:
- self.wndItem.DeactivateSlot(i)
- for j in xrange(acce.WINDOW_MAX_MATERIALS):
- (isHere, iCell) = acce.GetAttachedItem(j)
- if isHere:
- if iCell == slotNumber:
- self.wndItem.ActivateSlot(i, (36.00 / 255.0), (222.00 / 255.0), (3.00 / 255.0), 1.0)
- if not slotNumber in self.listAttachedAcces:
- self.listAttachedAcces.append(slotNumber)
- slotNumberChecked = 1
- else:
- if slotNumber in self.listAttachedAcces and not slotNumberChecked:
- self.wndItem.DeactivateSlot(i)
- self.listAttachedAcces.remove(slotNumber)
- """"""
- """"""
- #1) Search:
- def DetachMetinFromItem(self, scrollSlotPos, targetSlotPos):
- scrollIndex = player.GetItemIndex(scrollSlotPos)
- targetIndex = player.GetItemIndex(targetSlotPos)
- if not player.CanDetach(scrollIndex, targetSlotPos):
- chat.AppendChat(chat.CHAT_TYPE_INFO, localeInfo.REFINE_FAILURE_METIN_INSEPARABLE_ITEM)
- return
- self.questionDialog = uiCommon.QuestionDialog()
- self.questionDialog.SetText(localeInfo.REFINE_DO_YOU_SEPARATE_METIN)
- self.questionDialog.SetAcceptEvent(ui.__mem_func__(self.OnDetachMetinFromItem))
- self.questionDialog.SetCancelEvent(ui.__mem_func__(self.OnCloseQuestionDialog))
- self.questionDialog.Open()
- self.questionDialog.sourcePos = scrollSlotPos
- self.questionDialog.targetPos = targetSlotPos
- #2) Replace with:
- def DetachMetinFromItem(self, scrollSlotPos, targetSlotPos):
- scrollIndex = player.GetItemIndex(scrollSlotPos)
- targetIndex = player.GetItemIndex(targetSlotPos)
- if app.ENABLE_ACCE_SYSTEM:
- if not player.CanDetach(scrollIndex, targetSlotPos):
- item.SelectItem(scrollIndex)
- if item.GetValue(0) == acce.CLEAN_ATTR_VALUE0:
- chat.AppendChat(chat.CHAT_TYPE_INFO, localeInfo.ACCE_FAILURE_CLEAN)
- else:
- chat.AppendChat(chat.CHAT_TYPE_INFO, localeInfo.REFINE_FAILURE_METIN_INSEPARABLE_ITEM)
- return
- else:
- if not player.CanDetach(scrollIndex, targetSlotPos):
- chat.AppendChat(chat.CHAT_TYPE_INFO, localeInfo.REFINE_FAILURE_METIN_INSEPARABLE_ITEM)
- return
- self.questionDialog = uiCommon.QuestionDialog()
- self.questionDialog.SetText(localeInfo.REFINE_DO_YOU_SEPARATE_METIN)
- if app.ENABLE_ACCE_SYSTEM:
- item.SelectItem(targetIndex)
- if item.GetItemType() == item.ITEM_TYPE_COSTUME and item.GetItemSubType() == item.COSTUME_TYPE_ACCE:
- item.SelectItem(scrollIndex)
- if item.GetValue(0) == acce.CLEAN_ATTR_VALUE0:
- self.questionDialog.SetText(localeInfo.ACCE_DO_YOU_CLEAN)
- self.questionDialog.SetAcceptEvent(ui.__mem_func__(self.OnDetachMetinFromItem))
- self.questionDialog.SetCancelEvent(ui.__mem_func__(self.OnCloseQuestionDialog))
- self.questionDialog.Open()
- self.questionDialog.sourcePos = scrollSlotPos
- self.questionDialog.targetPos = targetSlotPos
- """"""
- """"""
- #1) Search (DO THIS STEP JUST IF YOU GOT MY HIGHLIGHT SYSTEM):
- def OverInItem(self, overSlotPos):
- if app.ENABLE_HIGHLIGHT_SYSTEM:
- stat = 0
- slotNumber = self.__InventoryLocalSlotPosToGlobalSlotPos(overSlotPos)
- itemVnum = player.GetItemIndex(slotNumber)
- if constInfo.IS_AUTO_POTION(itemVnum):
- metinSocket = [player.GetItemMetinSocket(slotNumber, j) for j in xrange(player.METIN_SOCKET_MAX_NUM)]
- if slotNumber >= player.INVENTORY_PAGE_SIZE:
- slotNumber -= player.INVENTORY_PAGE_SIZE
- isActivated = 0 != metinSocket[0]
- if isActivated:
- stat = 1
- if not stat:
- if slotNumber in self.listHighlightedSlot:
- self.wndItem.DeactivateSlot(overSlotPos)
- try:
- self.listHighlightedSlot.remove(slotNumber)
- except:
- pass
- #2) Replace with:
- def OverInItem(self, overSlotPos):
- if app.ENABLE_HIGHLIGHT_SYSTEM:
- stat = 0
- slotNumber = self.__InventoryLocalSlotPosToGlobalSlotPos(overSlotPos)
- itemVnum = player.GetItemIndex(slotNumber)
- if constInfo.IS_AUTO_POTION(itemVnum):
- metinSocket = [player.GetItemMetinSocket(slotNumber, j) for j in xrange(player.METIN_SOCKET_MAX_NUM)]
- if slotNumber >= player.INVENTORY_PAGE_SIZE:
- slotNumber -= player.INVENTORY_PAGE_SIZE
- isActivated = 0 != metinSocket[0]
- if isActivated:
- stat = 1
- if not stat:
- if slotNumber in self.listHighlightedSlot:
- self.wndItem.DeactivateSlot(overSlotPos)
- try:
- if app.ENABLE_ACCE_SYSTEM:
- if not slotNumber in self.listAttachedAcces:
- self.listHighlightedSlot.remove(slotNumber)
- else:
- self.listHighlightedSlot.remove(slotNumber)
- except:
- pass
- """"""
- """"""
- #1) Search:
- def UseItemSlot(self, slotIndex):
- if constInfo.GET_ITEM_DROP_QUESTION_DIALOG_STATUS():
- return
- slotIndex = self.__InventoryLocalSlotPosToGlobalSlotPos(slotIndex)
- if app.ENABLE_DRAGON_SOUL_SYSTEM:
- if self.wndDragonSoulRefine.IsShow():
- self.wndDragonSoulRefine.AutoSetItem((player.INVENTORY, slotIndex), 1)
- return
- self.__UseItem(slotIndex)
- mouseModule.mouseController.DeattachObject()
- self.OverOutItem()
- #2) Replace with:
- def UseItemSlot(self, slotIndex):
- if constInfo.GET_ITEM_DROP_QUESTION_DIALOG_STATUS():
- return
- slotIndex = self.__InventoryLocalSlotPosToGlobalSlotPos(slotIndex)
- if app.ENABLE_DRAGON_SOUL_SYSTEM:
- if self.wndDragonSoulRefine.IsShow():
- self.wndDragonSoulRefine.AutoSetItem((player.INVENTORY, slotIndex), 1)
- return
- if app.ENABLE_ACCE_SYSTEM:
- if self.isShowAcceWindow():
- acce.Add(player.INVENTORY, slotIndex, 255)
- return
- self.__UseItem(slotIndex)
- mouseModule.mouseController.DeattachObject()
- self.OverOutItem()
- """"""
- """"""
- #1) Search:
- def SetDragonSoulRefineWindow(self, wndDragonSoulRefine):
- if app.ENABLE_DRAGON_SOUL_SYSTEM:
- self.wndDragonSoulRefine = wndDragonSoulRefine
- #2) After make a new line and paste:
- if app.ENABLE_ACCE_SYSTEM:
- def SetAcceWindow(self, wndAcceCombine, wndAcceAbsorption):
- self.wndAcceCombine = wndAcceCombine
- self.wndAcceAbsorption = wndAcceAbsorption
- def isShowAcceWindow(self):
- if self.wndAcceCombine:
- if self.wndAcceCombine.IsShow():
- return 1
- if self.wndAcceAbsorption:
- if self.wndAcceAbsorption.IsShow():
- return 1
- return 0
- """"""
-
Kann es sein das deswegen der Fehler ist, das der Char nach dem Herstellen wieder weg ist ?
Ne, du rufst "MakeCharacter() " mit 7 anstatt mit 8 Parametern
Du hast i-wo vergessen MakeCharacter() zu rufen mit acce oder 0 als letzten Parameter.Wenn du kein englisch kannst, hör einfach auf nen Server machen zu wollen.
Was soll ich da vergessen haben ? Habe es so gemacht wie es da steht und ersetzt.
-
Hast du die spalte in def Refresh(self): auch angepasst?
Kann es sein das deswegen der Fehler ist, das der Char nach dem Herstellen wieder weg ist ?
-
Hast du die spalte in def Refresh(self): auch angepasst?
Sollte ja, kann aber die gleich noch mal neu machen
-
0809 16:50:35258 :: MakeCharacter() takes exactly 8 arguments (7 given)
Poste mal die MakeCharacter funktion ausm client
Code- def MakeCharacter(self, index, id, name, race, form, hair, acce):
- if 0 == id:
- return
- chr.CreateInstance(index)
- chr.SelectInstance(index)
- chr.SetVirtualID(index)
- chr.SetNameString(name)
- chr.SetRace(race)
- chr.SetArmor(form)
- chr.SetHair(hair)
- if app.ENABLE_ACCE_SYSTEM:
- chr.SetAcce(acce)
- chr.Refresh()
- chr.SetMotionMode(chr.MOTION_MODE_GENERAL)
- chr.SetLoopMotion(chr.MOTION_INTRO_WAIT)
- chr.SetRotation(0.0)
-
Was steht in der syserr vom Client und Server?
Client:
Code- 0809 16:50:35257 :: Traceback (most recent call last):
- 0809 16:50:35257 :: File "uiPhaseCurtain.py", line 61, in OnUpdate
- 0809 16:50:35258 :: File "networkModule.py", line 150, in __ChangePhaseWindow
- 0809 16:50:35258 :: File "introSelect.py", line 169, in Open
- 0809 16:50:35258 :: File "introSelect.py", line 242, in Refresh
- 0809 16:50:35258 :: TypeError
- 0809 16:50:35258 :: :
- 0809 16:50:35258 :: MakeCharacter() takes exactly 8 arguments (7 given)
- 0809 16:50:35258 ::
Core Reiche:
Code- SYSERR: Aug 9 18:39:55 :: regen_load: No mob data by vnum 20406
- SYSERR: Aug 9 18:39:55 :: SpawnMob: SpawnMob: no mob data for vnum 20406
- SYSERR: Aug 9 18:40:57 :: SpawnMob: SpawnMob: no mob data for vnum 20406
- SYSERR: Aug 9 18:41:57 :: SpawnMob: SpawnMob: no mob data for vnum 20406
- SYSERR: Aug 9 18:42:57 :: SpawnMob: SpawnMob: no mob data for vnum 20406
- SYSERR: Aug 9 18:43:57 :: SpawnMob: SpawnMob: no mob data for vnum 20406
- SYSERR: Aug 9 18:44:57 :: SpawnMob: SpawnMob: no mob data for vnum 20406
- SYSERR: Aug 9 18:45:57 :: SpawnMob: SpawnMob: no mob data for vnum 20406
- SYSERR: Aug 9 18:46:57 :: SpawnMob: SpawnMob: no mob data for vnum 20406
- SYSERR: Aug 9 18:47:57 :: SpawnMob: SpawnMob: no mob data for vnum 20406
- SYSERR: Aug 9 18:48:57 :: SpawnMob: SpawnMob: no mob data for vnum 20406
- SYSERR: Aug 9 18:49:41 :: Empire: EmpireSelectFailed 1
- SYSERR: Aug 9 18:49:57 :: SpawnMob: SpawnMob: no mob data for vnum 20406
Datenbank:
Code- SYSERR: Aug 9 18:39:54 :: __GetAdminInfo: __GetAdminInfo() ==> DirectQuery failed(SELECT mID,mAccount,mName,mContactIP,mServerIP,mAuthority FROM gmlist WHERE mServerIP='ALL' or mServerIP='192.168.0.100')
- SYSERR: Aug 9 18:39:56 :: __GetAdminInfo: __GetAdminInfo() ==> DirectQuery failed(SELECT mID,mAccount,mName,mContactIP,mServerIP,mAuthority FROM gmlist WHERE mServerIP='ALL' or mServerIP='192.168.0.100')
- SYSERR: Aug 9 18:39:58 :: __GetAdminInfo: __GetAdminInfo() ==> DirectQuery failed(SELECT mID,mAccount,mName,mContactIP,mServerIP,mAuthority FROM gmlist WHERE mServerIP='ALL' or mServerIP='192.168.0.100')
- SYSERR: Aug 9 18:40:00 :: __GetAdminInfo: __GetAdminInfo() ==> DirectQuery failed(SELECT mID,mAccount,mName,mContactIP,mServerIP,mAuthority FROM gmlist WHERE mServerIP='ALL' or mServerIP='192.168.0.100')
- SYSERR: Aug 9 18:40:02 :: __GetAdminInfo: __GetAdminInfo() ==> DirectQuery failed(SELECT mID,mAccount,mName,mContactIP,mServerIP,mAuthority FROM gmlist WHERE mServerIP='ALL' or mServerIP='192.168.0.100')
DB Admin.err:
Code- 2020-08-09 18:35:26 1078 [ERROR] Cannot open mysql.event
- 2020-08-09 18:35:26 1078 [ERROR] Event Scheduler: An error occurred when initializing system tables. Disabling the Event Scheduler.
- 2020-08-09 18:35:26 1078 [Note] /usr/local/libexec/mysqld: ready for connections.
- Version: '5.6.41' socket: '/tmp/mysql.sock' port: 3306 Source distribution
- 2020-08-09 18:35:34 1078 [Warning] IP address '192.168.0.47' could not be resolved: hostname nor servname provided, or not known
- 2020-08-09 18:39:42 1078 [Note] /usr/local/libexec/mysqld: Normal shutdown
- 2020-08-09 18:39:42 1078 [Note] Giving 2 client threads a chance to die gracefully
- 2020-08-09 18:39:42 1078 [Note] Shutting down slave threads
- 2020-08-09 18:39:44 1078 [Note] Forcefully disconnecting 2 remaining clients
- 2020-08-09 18:39:44 1078 [Warning] /usr/local/libexec/mysqld: Forcing close of thread 1 user: 'root'
- 2020-08-09 18:39:44 1078 [Warning] /usr/local/libexec/mysqld: Forcing close of thread 2 user: 'root'
- 2020-08-09 18:39:44 1078 [Note] Binlog end
- 2020-08-09 18:39:44 1078 [Note] Shutting down plugin 'partition'
- 2020-08-09 18:39:44 1078 [Note] Shutting down plugin 'PERFORMANCE_SCHEMA'
- 2020-08-09 18:39:44 1078 [Note] Shutting down plugin 'INNODB_SYS_DATAFILES'
- 2020-08-09 18:39:44 1078 [Note] Shutting down plugin 'INNODB_SYS_TABLESPACES'
- 2020-08-09 18:39:44 1078 [Note] Shutting down plugin 'INNODB_SYS_FOREIGN_COLS'
- 2020-08-09 18:39:44 1078 [Note] Shutting down plugin 'INNODB_SYS_FOREIGN'
- 2020-08-09 18:39:44 1078 [Note] Shutting down plugin 'INNODB_SYS_FIELDS'
- 2020-08-09 18:39:44 1078 [Note] Shutting down plugin 'INNODB_SYS_COLUMNS'
- 2020-08-09 18:39:44 1078 [Note] Shutting down plugin 'INNODB_SYS_INDEXES'
- 2020-08-09 18:39:44 1078 [Note] Shutting down plugin 'INNODB_SYS_TABLESTATS'
- 2020-08-09 18:39:44 1078 [Note] Shutting down plugin 'INNODB_SYS_TABLES'
- 2020-08-09 18:39:44 1078 [Note] Shutting down plugin 'INNODB_FT_INDEX_TABLE'
- 2020-08-09 18:39:44 1078 [Note] Shutting down plugin 'INNODB_FT_INDEX_CACHE'
- 2020-08-09 18:39:44 1078 [Note] Shutting down plugin 'INNODB_FT_CONFIG'
- 2020-08-09 18:39:44 1078 [Note] Shutting down plugin 'INNODB_FT_BEING_DELETED'
- 2020-08-09 18:39:44 1078 [Note] Shutting down plugin 'INNODB_FT_DELETED'
- 2020-08-09 18:39:44 1078 [Note] Shutting down plugin 'INNODB_FT_DEFAULT_STOPWORD'
- 2020-08-09 18:39:44 1078 [Note] Shutting down plugin 'INNODB_METRICS'
- 2020-08-09 18:39:44 1078 [Note] Shutting down plugin 'INNODB_BUFFER_POOL_STATS'
- 2020-08-09 18:39:44 1078 [Note] Shutting down plugin 'INNODB_BUFFER_PAGE_LRU'
- 2020-08-09 18:39:44 1078 [Note] Shutting down plugin 'INNODB_BUFFER_PAGE'
- 2020-08-09 18:39:44 1078 [Note] Shutting down plugin 'INNODB_CMP_PER_INDEX_RESET'
- 2020-08-09 18:39:44 1078 [Note] Shutting down plugin 'INNODB_CMP_PER_INDEX'
- 2020-08-09 18:39:44 1078 [Note] Shutting down plugin 'INNODB_CMPMEM_RESET'
- 2020-08-09 18:39:44 1078 [Note] Shutting down plugin 'INNODB_CMPMEM'
- 2020-08-09 18:39:44 1078 [Note] Shutting down plugin 'INNODB_CMP_RESET'
- 2020-08-09 18:39:44 1078 [Note] Shutting down plugin 'INNODB_CMP'
- 2020-08-09 18:39:44 1078 [Note] Shutting down plugin 'INNODB_LOCK_WAITS'
- 2020-08-09 18:39:44 1078 [Note] Shutting down plugin 'INNODB_LOCKS'
- 2020-08-09 18:39:44 1078 [Note] Shutting down plugin 'INNODB_TRX'
- 2020-08-09 18:39:44 1078 [Note] Shutting down plugin 'InnoDB'
- 2020-08-09 18:39:44 1078 [Note] InnoDB: FTS optimize thread exiting.
- 2020-08-09 18:39:44 1078 [Note] InnoDB: Starting shutdown...
- 2020-08-09 18:39:45 1078 [Note] InnoDB: Shutdown completed; log sequence number 1608091
- 2020-08-09 18:39:45 1078 [Note] Shutting down plugin 'BLACKHOLE'
- 2020-08-09 18:39:45 1078 [Note] Shutting down plugin 'ARCHIVE'
- 2020-08-09 18:39:45 1078 [Note] Shutting down plugin 'MRG_MYISAM'
- 2020-08-09 18:39:45 1078 [Note] Shutting down plugin 'MyISAM'
- 2020-08-09 18:39:45 1078 [Note] Shutting down plugin 'MEMORY'
- 2020-08-09 18:39:45 1078 [Note] Shutting down plugin 'CSV'
- 2020-08-09 18:39:45 1078 [Note] Shutting down plugin 'sha256_password'
- 2020-08-09 18:39:45 1078 [Note] Shutting down plugin 'mysql_old_password'
- 2020-08-09 18:39:45 1078 [Note] Shutting down plugin 'mysql_native_password'
- 2020-08-09 18:39:45 1078 [Note] Shutting down plugin 'binlog'
- 2020-08-09 18:39:45 1078 [Note] /usr/local/libexec/mysqld: Shutdown complete
- 200809 18:39:45 mysqld_safe mysqld from pid file /var/db/mysql/Admin.pid ended
- 200809 18:39:45 mysqld_safe Logging to '/var/db/mysql/Admin.err'.
- 200809 18:39:45 mysqld_safe Starting mysqld daemon with databases from /var/db/mysql
- 2020-08-09 18:39:46 0 [Warning] TIMESTAMP with implicit DEFAULT value is deprecated. Please use --explicit_defaults_for_timestamp server option (see documentation for more details).
- 2020-08-09 18:39:46 0 [Note] /usr/local/libexec/mysqld (mysqld 5.6.41) starting as process 1226 ...
- 2020-08-09 18:39:46 1226 [Note] Plugin 'FEDERATED' is disabled.
- /usr/local/libexec/mysqld: Table 'mysql.plugin' doesn't exist
- 2020-08-09 18:39:46 1226 [ERROR] Can't open the mysql.plugin table. Please run mysql_upgrade to create it.
- 2020-08-09 18:39:46 1226 [Note] InnoDB: Using atomics to ref count buffer pool pages
- 2020-08-09 18:39:46 1226 [Note] InnoDB: The InnoDB memory heap is disabled
- 2020-08-09 18:39:46 1226 [Note] InnoDB: Mutexes and rw_locks use GCC atomic builtins
- 2020-08-09 18:39:46 1226 [Note] InnoDB: Memory barrier is not used
- 2020-08-09 18:39:46 1226 [Note] InnoDB: Compressed tables use zlib 1.2.11
- 2020-08-09 18:39:46 1226 [Note] InnoDB: Not using CPU crc32 instructions
- 2020-08-09 18:39:46 1226 [Note] InnoDB: Initializing buffer pool, size = 128.0M
- 2020-08-09 18:39:46 1226 [Note] InnoDB: Completed initialization of buffer pool
- 2020-08-09 18:39:46 1226 [Note] InnoDB: Highest supported file format is Barracuda.
- 2020-08-09 18:39:46 1226 [Note] InnoDB: 128 rollback segment(s) are active.
- 2020-08-09 18:39:46 1226 [Note] InnoDB: Waiting for purge to start
- 2020-08-09 18:39:46 1226 [Note] InnoDB: 5.6.41 started; log sequence number 1608091
- 2020-08-09 18:39:46 1226 [Note] RSA private key file not found: /var/db/mysql//private_key.pem. Some authentication plugins will not work.
- 2020-08-09 18:39:46 1226 [Note] RSA public key file not found: /var/db/mysql//public_key.pem. Some authentication plugins will not work.
- 2020-08-09 18:39:46 1226 [Note] Server hostname (bind-address): '*'; port: 3306
- 2020-08-09 18:39:46 1226 [Note] IPv6 is available.
- 2020-08-09 18:39:46 1226 [Note] - '::' resolves to '::';
- 2020-08-09 18:39:46 1226 [Note] Server socket created on IP: '::'.
- 2020-08-09 18:39:46 1226 [Warning] Insecure configuration for --pid-file: Location '/var/db/mysql' in the path is accessible to all OS users. Consider choosing a different directory.
- 2020-08-09 18:39:46 1226 [ERROR] Missing system table mysql.proxies_priv; please run mysql_upgrade to create it
- 2020-08-09 18:39:46 1226 [ERROR] Can't open and lock privilege tables: Table 'mysql.servers' doesn't exist
- 2020-08-09 18:39:46 1226 [ERROR] Native table 'performance_schema'.'cond_instances' has the wrong structure
- 2020-08-09 18:39:46 1226 [ERROR] Native table 'performance_schema'.'events_waits_current' has the wrong structure
- 2020-08-09 18:39:46 1226 [ERROR] Native table 'performance_schema'.'events_waits_history' has the wrong structure
- 2020-08-09 18:39:46 1226 [ERROR] Native table 'performance_schema'.'events_waits_history_long' has the wrong structure
- 2020-08-09 18:39:46 1226 [ERROR] Native table 'performance_schema'.'events_waits_summary_by_host_by_event_name' has the wrong structure
- 2020-08-09 18:39:46 1226 [ERROR] Native table 'performance_schema'.'events_waits_summary_by_instance' has the wrong structure
- 2020-08-09 18:39:46 1226 [ERROR] Native table 'performance_schema'.'events_waits_summary_by_thread_by_event_name' has the wrong structure
- 2020-08-09 18:39:46 1226 [ERROR] Native table 'performance_schema'.'events_waits_summary_by_user_by_event_name' has the wrong structure
- 2020-08-09 18:39:46 1226 [ERROR] Native table 'performance_schema'.'events_waits_summary_by_account_by_event_name' has the wrong structure
- 2020-08-09 18:39:46 1226 [ERROR] Native table 'performance_schema'.'events_waits_summary_global_by_event_name' has the wrong structure
- 2020-08-09 18:39:46 1226 [ERROR] Native table 'performance_schema'.'file_instances' has the wrong structure
- 2020-08-09 18:39:46 1226 [ERROR] Native table 'performance_schema'.'file_summary_by_event_name' has the wrong structure
- 2020-08-09 18:39:46 1226 [ERROR] Native table 'performance_schema'.'file_summary_by_instance' has the wrong structure
- 2020-08-09 18:39:46 1226 [ERROR] Native table 'performance_schema'.'host_cache' has the wrong structure
- 2020-08-09 18:39:46 1226 [ERROR] Native table 'performance_schema'.'mutex_instances' has the wrong structure
- 2020-08-09 18:39:46 1226 [ERROR] Native table 'performance_schema'.'objects_summary_global_by_type' has the wrong structure
- 2020-08-09 18:39:46 1226 [ERROR] Native table 'performance_schema'.'performance_timers' has the wrong structure
- 2020-08-09 18:39:46 1226 [ERROR] Native table 'performance_schema'.'rwlock_instances' has the wrong structure
- 2020-08-09 18:39:46 1226 [ERROR] Native table 'performance_schema'.'setup_actors' has the wrong structure
- 2020-08-09 18:39:46 1226 [ERROR] Native table 'performance_schema'.'setup_consumers' has the wrong structure
- 2020-08-09 18:39:46 1226 [ERROR] Native table 'performance_schema'.'setup_instruments' has the wrong structure
- 2020-08-09 18:39:46 1226 [ERROR] Native table 'performance_schema'.'setup_objects' has the wrong structure
- 2020-08-09 18:39:46 1226 [ERROR] Native table 'performance_schema'.'setup_timers' has the wrong structure
- 2020-08-09 18:39:46 1226 [ERROR] Native table 'performance_schema'.'table_io_waits_summary_by_index_usage' has the wrong structure
- 2020-08-09 18:39:46 1226 [ERROR] Native table 'performance_schema'.'table_io_waits_summary_by_table' has the wrong structure
- 2020-08-09 18:39:46 1226 [ERROR] Native table 'performance_schema'.'table_lock_waits_summary_by_table' has the wrong structure
- 2020-08-09 18:39:46 1226 [ERROR] Native table 'performance_schema'.'threads' has the wrong structure
- 2020-08-09 18:39:46 1226 [ERROR] Native table 'performance_schema'.'events_stages_current' has the wrong structure
- 2020-08-09 18:39:46 1226 [ERROR] Native table 'performance_schema'.'events_stages_history' has the wrong structure
- 2020-08-09 18:39:46 1226 [ERROR] Native table 'performance_schema'.'events_stages_history_long' has the wrong structure
- 2020-08-09 18:39:46 1226 [ERROR] Native table 'performance_schema'.'events_stages_summary_by_thread_by_event_name' has the wrong structure
- 2020-08-09 18:39:46 1226 [ERROR] Native table 'performance_schema'.'events_stages_summary_by_account_by_event_name' has the wrong structure
- 2020-08-09 18:39:46 1226 [ERROR] Native table 'performance_schema'.'events_stages_summary_by_user_by_event_name' has the wrong structure
- 2020-08-09 18:39:46 1226 [ERROR] Native table 'performance_schema'.'events_stages_summary_by_host_by_event_name' has the wrong structure
- 2020-08-09 18:39:46 1226 [ERROR] Native table 'performance_schema'.'events_stages_summary_global_by_event_name' has the wrong structure
- 2020-08-09 18:39:46 1226 [ERROR] Native table 'performance_schema'.'events_statements_current' has the wrong structure
- 2020-08-09 18:39:46 1226 [ERROR] Native table 'performance_schema'.'events_statements_history' has the wrong structure
- 2020-08-09 18:39:46 1226 [ERROR] Native table 'performance_schema'.'events_statements_history_long' has the wrong structure
- 2020-08-09 18:39:46 1226 [ERROR] Native table 'performance_schema'.'events_statements_summary_by_thread_by_event_name' has the wrong structure
- 2020-08-09 18:39:46 1226 [ERROR] Native table 'performance_schema'.'events_statements_summary_by_account_by_event_name' has the wrong structure
- 2020-08-09 18:39:46 1226 [ERROR] Native table 'performance_schema'.'events_statements_summary_by_user_by_event_name' has the wrong structure
- 2020-08-09 18:39:46 1226 [ERROR] Native table 'performance_schema'.'events_statements_summary_by_host_by_event_name' has the wrong structure
- 2020-08-09 18:39:46 1226 [ERROR] Native table 'performance_schema'.'events_statements_summary_global_by_event_name' has the wrong structure
- 2020-08-09 18:39:46 1226 [ERROR] Native table 'performance_schema'.'events_statements_summary_by_digest' has the wrong structure
- 2020-08-09 18:39:46 1226 [ERROR] Native table 'performance_schema'.'users' has the wrong structure
- 2020-08-09 18:39:46 1226 [ERROR] Native table 'performance_schema'.'accounts' has the wrong structure
- 2020-08-09 18:39:46 1226 [ERROR] Native table 'performance_schema'.'hosts' has the wrong structure
- 2020-08-09 18:39:46 1226 [ERROR] Native table 'performance_schema'.'socket_instances' has the wrong structure
- 2020-08-09 18:39:46 1226 [ERROR] Native table 'performance_schema'.'socket_summary_by_instance' has the wrong structure
- 2020-08-09 18:39:46 1226 [ERROR] Native table 'performance_schema'.'socket_summary_by_event_name' has the wrong structure
- 2020-08-09 18:39:46 1226 [ERROR] Native table 'performance_schema'.'session_connect_attrs' has the wrong structure
- 2020-08-09 18:39:46 1226 [ERROR] Native table 'performance_schema'.'session_account_connect_attrs' has the wrong structure
- 2020-08-09 18:39:46 1226 [ERROR] Column count of mysql.db is wrong. Expected 22, found 20. Created with MySQL 50092, now running 50641. Please use mysql_upgrade to fix this error.
- 2020-08-09 18:39:46 1226 [ERROR] Cannot open mysql.event
- 2020-08-09 18:39:46 1226 [ERROR] Event Scheduler: An error occurred when initializing system tables. Disabling the Event Scheduler.
- 2020-08-09 18:39:46 1226 [Note] /usr/local/libexec/mysqld: ready for connections.
- Version: '5.6.41' socket: '/tmp/mysql.sock' port: 3306 Source distribution
- 2020-08-09 18:43:03 1226 [Warning] IP address '192.168.0.47' could not be resolved: hostname nor servname provided, or not known
-
Und wenn ich einen Account erstellt habe, bekomme ich Schwarzes Bild.
Beim neuen Einloggen ist der Char wieder weg.
Bin echt am Verzweifeln
Sitze die ganze nacht daran und nichts Funktioniert.
DB syserr:
Loginserver syserr:
Code- Aug 9 18:43:14 :: SYSTEM: new connection from [192.168.0.47] fd: 16 handshake 2925659887 output input_len 0, ptr 0x28cb1e00
- Aug 9 18:43:14 :: SYSTEM: closing socket. DESC #15
- Aug 9 18:43:14 :: Handshake: lower than zero -20
- Aug 9 18:43:14 :: Handshake: client_time 0 server_time 190815
- Aug 9 18:43:14 :: AUTH_PHASE 0x28cb1e00
- Aug 9 18:43:14 :: InputAuth::Login : kev(3) desc 0x28cb1e00
- Aug 9 18:43:14 :: SetLoginKey 94477517
- Aug 9 18:43:14 :: InputAuth::Login : key 94477517 login kev
- Aug 9 18:43:14 :: QID_AUTH_LOGIN: START 94477517 0x28cb1e00
- Aug 9 18:43:14 :: Create_Time 0 19700101
- Aug 9 18:43:14 :: Block Time -2
- Aug 9 18:43:14 :: SetRemainSecs kev 0 type 2
- Aug 9 18:43:14 :: SendAuthLogin kev key 4
- Aug 9 18:43:15 :: AuthLogin result 1 key 94477517
- Aug 9 18:43:15 :: SYSTEM: closing socket. DESC #16
-
Entweder meine query anpassen oder bei Default im drop down was auswählen
Wenn ich da zb. Null oder String genutzt habe ging es auch nicht. Habe jetzt da ne 0 rein und bis jetzt sieht es danach aus das es geht.
Code- 85000 "ÆÄÀΠõ" "ITEM_MATERIAL" "MATERIAL_LEATHER" 1 "ANTI_DROP | ANTI_SELL | ANTI_PKDROP | ANTI_MYSHOP | ANTI_GIVE | ANTI_SAFEBOX" "ITEM_STACKABLE" "NONE" "NONE" 0 0 0 0 0 "LIMIT_NONE" 0 "LIMIT_NONE" 0 "APPLY_NONE" 0 "APPLY_NONE" 0 "APPLY_NONE" 0 0 0 0 0 0 0 0 0 0
- 85001 "ÁÖ´Ô Àå½Ä ¶ì (±âº»)" "ITEM_COSTUME" "COSTUME_SASH" 1 "ANTI_DROP | ANTI_SELL | ANTI_STACK | ANTI_PKDROP | ANTI_MYSHOP | ANTI_GIVE" "NONE" "NONE" "NONE" 0 0 0 0 0 "LIMIT_NONE" 0 "LIMIT_NONE" 0 "APPLY_NONE" 0 "APPLY_NONE" 0 "APPLY_NONE" 0 1 0 0 0 0 0 100 0 0
- 85002 "ÁÖ´Ô Àå½Ä ¶ì (¹Ì¼¼)" "ITEM_COSTUME" "COSTUME_SASH" 1 "ANTI_DROP | ANTI_SELL | ANTI_STACK | ANTI_PKDROP | ANTI_MYSHOP | ANTI_GIVE" "NONE" "NONE" "NONE" 0 0 0 0 0 "LIMIT_NONE" 0 "LIMIT_NONE" 0 "APPLY_NONE" 0 "APPLY_NONE" 0 "APPLY_NONE" 0 2 0 0 0 0 0 100 0 0
- 85003 "ÁÖ´Ô Àå½Ä ¶ì (±ÍÁ·)" "ITEM_COSTUME" "COSTUME_SASH" 1 "ANTI_DROP | ANTI_SELL | ANTI_STACK | ANTI_PKDROP | ANTI_MYSHOP | ANTI_GIVE" "NONE" "NONE" "NONE" 0 0 0 0 0 "LIMIT_NONE" 0 "LIMIT_NONE" 0 "APPLY_NONE" 0 "APPLY_NONE" 0 "APPLY_NONE" 0 3 0 0 0 0 0 100 0 0
- 85004 "ÁÖ´Ô Àå½Ä ¶ì (»ç¿ëÀÚ Á¤ÀÇ)" "ITEM_COSTUME" "COSTUME_SASH" 1 "ANTI_DROP | ANTI_SELL | ANTI_STACK | ANTI_PKDROP" "NONE" "NONE" "NONE" 0 0 0 0 0 "LIMIT_NONE" 0 "LIMIT_NONE" 0 "APPLY_NONE" 0 "APPLY_NONE" 0 "APPLY_NONE" 0 4 0 0 0 0 0 100 0 0
- 85005 "¸¶½ºÅÍ Àå½Ä ¶ì (±âº»)" "ITEM_COSTUME" "COSTUME_SASH" 1 "ANTI_DROP | ANTI_SELL | ANTI_STACK | ANTI_PKDROP | ANTI_MYSHOP | ANTI_GIVE" "NONE" "NONE" "NONE" 0 0 0 0 0 "LIMIT_NONE" 0 "LIMIT_NONE" 0 "APPLY_NONE" 0 "APPLY_NONE" 0 "APPLY_NONE" 0 1 0 0 0 0 0 100 0 0
- 85006 "¸¶½ºÅÍ Àå½Ä ¶ì (¹Ì¼¼)" "ITEM_COSTUME" "COSTUME_SASH" 1 "ANTI_DROP | ANTI_SELL | ANTI_STACK | ANTI_PKDROP | ANTI_MYSHOP | ANTI_GIVE" "NONE" "NONE" "NONE" 0 0 0 0 0 "LIMIT_NONE" 0 "LIMIT_NONE" 0 "APPLY_NONE" 0 "APPLY_NONE" 0 "APPLY_NONE" 0 2 0 0 0 0 0 100 0 0
- 85007 "¸¶½ºÅÍ Àå½Ä ¶ì (±ÍÁ·)" "ITEM_COSTUME" "COSTUME_SASH" 1 "ANTI_DROP | ANTI_SELL | ANTI_STACK | ANTI_PKDROP | ANTI_MYSHOP | ANTI_GIVE" "NONE" "NONE" "NONE" 0 0 0 0 0 "LIMIT_NONE" 0 "LIMIT_NONE" 0 "APPLY_NONE" 0 "APPLY_NONE" 0 "APPLY_NONE" 0 3 0 0 0 0 0 100 0 0
- 85008 "¸¶½ºÅÍ Àå½Ä ¶ì (»ç¿ëÀÚ Á¤ÀÇ)" "ITEM_COSTUME" "COSTUME_SASH" 1 "ANTI_DROP | ANTI_SELL | ANTI_STACK | ANTI_PKDROP" "NONE" "NONE" "NONE" 0 0 0 0 0 "LIMIT_NONE" 0 "LIMIT_NONE" 0 "APPLY_NONE" 0 "APPLY_NONE" 0 "APPLY_NONE" 0 4 0 0 0 0 0 100 0 0
- 85009 "¹ÝÀü ÀÇ ÀÎÁõ¼+" "ITEM_USE" "USE_DETACHMENT" 1 "ANTI_DROP | ANTI_SELL | ANTI_STACK | ANTI_PKDROP" "NONE" "NONE" "NONE" 0 0 0 0 0 "LIMIT_NONE" 0 "LIMIT_NONE" 0 "APPLY_NONE" 0 "APPLY_NONE" 0 "APPLY_NONE" 0 7 0 0 0 0 0 0 0 0
- 85011 "·Î¾â Àå½Ä ¶ì (±âº»)" "ITEM_COSTUME" "COSTUME_SASH" 1 "ANTI_DROP | ANTI_SELL | ANTI_STACK | ANTI_PKDROP | ANTI_MYSHOP | ANTI_GIVE" "NONE" "NONE" "NONE" 0 0 0 0 0 "LIMIT_NONE" 0 "LIMIT_NONE" 0 "APPLY_NONE" 0 "APPLY_NONE" 0 "APPLY_NONE" 0 1 0 0 0 0 0 100 0 0
- 85012 "·Î¾â Àå½Ä ¶ì (¹Ì¼¼)" "ITEM_COSTUME" "COSTUME_SASH" 1 "ANTI_DROP | ANTI_SELL | ANTI_STACK | ANTI_PKDROP | ANTI_MYSHOP | ANTI_GIVE" "NONE" "NONE" "NONE" 0 0 0 0 0 "LIMIT_NONE" 0 "LIMIT_NONE" 0 "APPLY_NONE" 0 "APPLY_NONE" 0 "APPLY_NONE" 0 2 0 0 0 0 0 100 0 0
- 85013 "·Î¾â Àå½Ä ¶ì (±ÍÁ·)" "ITEM_COSTUME" "COSTUME_SASH" 1 "ANTI_DROP | ANTI_SELL | ANTI_STACK | ANTI_PKDROP | ANTI_MYSHOP | ANTI_GIVE" "NONE" "NONE" "NONE" 0 0 0 0 0 "LIMIT_NONE" 0 "LIMIT_NONE" 0 "APPLY_NONE" 0 "APPLY_NONE" 0 "APPLY_NONE" 0 3 0 0 0 0 0 100 0 0
- 85014 "·Î¾â Àå½Ä ¶ì (»ç¿ëÀÚ Á¤ÀÇ)" "ITEM_COSTUME" "COSTUME_SASH" 1 "ANTI_DROP | ANTI_SELL | ANTI_STACK | ANTI_PKDROP" "NONE" "NONE" "NONE" 0 0 0 0 0 "LIMIT_NONE" 0 "LIMIT_NONE" 0 "APPLY_NONE" 0 "APPLY_NONE" 0 "APPLY_NONE" 0 4 0 0 0 0 0 100 0 0
- 85015 "¼Ò¹ö¸° Àå½Ä ¶ì (±âº»)" "ITEM_COSTUME" "COSTUME_SASH" 1 "ANTI_DROP | ANTI_SELL | ANTI_STACK | ANTI_PKDROP | ANTI_MYSHOP | ANTI_GIVE" "NONE" "NONE" "NONE" 0 0 0 0 0 "LIMIT_NONE" 0 "LIMIT_NONE" 0 "APPLY_NONE" 0 "APPLY_NONE" 0 "APPLY_NONE" 0 1 0 0 0 0 0 100 0 0
- 85016 "¼Ò¹ö¸° Àå½Ä ¶ì (¹Ì¼¼)" "ITEM_COSTUME" "COSTUME_SASH" 1 "ANTI_DROP | ANTI_SELL | ANTI_STACK | ANTI_PKDROP | ANTI_MYSHOP | ANTI_GIVE" "NONE" "NONE" "NONE" 0 0 0 0 0 "LIMIT_NONE" 0 "LIMIT_NONE" 0 "APPLY_NONE" 0 "APPLY_NONE" 0 "APPLY_NONE" 0 2 0 0 0 0 0 100 0 0
- 85017 "¼Ò¹ö¸° Àå½Ä ¶ì (±ÍÁ·)" "ITEM_COSTUME" "COSTUME_SASH" 1 "ANTI_DROP | ANTI_SELL | ANTI_STACK | ANTI_PKDROP | ANTI_MYSHOP | ANTI_GIVE" "NONE" "NONE" "NONE" 0 0 0 0 0 "LIMIT_NONE" 0 "LIMIT_NONE" 0 "APPLY_NONE" 0 "APPLY_NONE" 0 "APPLY_NONE" 0 3 0 0 0 0 0 100 0 0
- 85018 "¼Ò¹ö¸° Àå½Ä ¶ì (»ç¿ëÀÚ Á¤ÀÇ)" "ITEM_COSTUME" "COSTUME_SASH" 1 "ANTI_DROP | ANTI_SELL | ANTI_STACK | ANTI_PKDROP" "NONE" "NONE" "NONE" 0 0 0 0 0 "LIMIT_NONE" 0 "LIMIT_NONE" 0 "APPLY_NONE" 0 "APPLY_NONE" 0 "APPLY_NONE" 0 4 0 0 0 0 0 100 0 0
-
Bitte melden Sie sich an, um diesen Link zu sehen.
Wo und was soll ich da rein schreiben. Ich habe davon 0 Ahnung
-
Hehe Danke jetzt geht es nun weiter Bitte melden Sie sich an, um diesen Link zu sehen.
kann doch net sein das da alles crasht
-
Entweder um nen Default wert erweitern oder in jeder query nen wert mitschicken.
Werde ich dann mal schauen, anderes Problem noch bekomme die txt auf server nicht zum Laufen.
Hat jemand die mit den Bändern ?
-
Gib dem Feld einfach ein Default value?
Den Fehler einfach googlen
Ach keine Ahnung habe schon gegoogelt aber nichts wirklich gefunden.
Irgendwie habe ich das Gefühl das die db.player.player (run this query) vom System das ganze crasht bzw das Ganze System.
-
Jap einfach nach Shild eintragen
Ok danke, werde es nachher sehen ob es Funktioniert hat wenn ich alles eingebaut habe
Bekomme jetzt die Fehler Bitte melden Sie sich an, um diesen Link zu sehen.
Fehler Behoben!
Ich habe jetzt ein anderes Problem mit der Datenbank, wenn ich einen Account erstellen will kommt dieser Fehler Bitte melden Sie sich an, um diesen Link zu sehen.
Weiß halt nicht ob es an dem System liegt oder an was anderem. Habe auch schon öfters ein Backup von der DB aufgespielt aber immer wieder der selbe fehler.
Was ich gemacht habe, habe die item_proto & mob_proto.txt auf Server geladen.
hoffe mir kann jemand helfen.
Ah und benutze Fliege Fieles V2
Datenbank syserr Server:
Code- SYSERR: Aug 9 08:09:41 :: pid_init:
- Start of pid: 1414
- SYSERR: Aug 9 08:09:41 :: QueryLocaleSet: cannot set locale latin1 by 'mysql_set_character_set', errno 2013 Lost connection to MySQL server during query
- SYSERR: Aug 9 08:09:43 :: __GetAdminInfo: __GetAdminInfo() ==> DirectQuery failed(SELECT mID,mAccount,mName,mContactIP,mServerIP,mAuthority FROM gmlist WHERE mServerIP='ALL' or mServerIP='192.168.0.100')
- SYSERR: Aug 9 08:09:45 :: __GetAdminInfo: __GetAdminInfo() ==> DirectQuery failed(SELECT mID,mAccount,mName,mContactIP,mServerIP,mAuthority FROM gmlist WHERE mServerIP='ALL' or mServerIP='192.168.0.100')
- SYSERR: Aug 9 08:09:47 :: __GetAdminInfo: __GetAdminInfo() ==> DirectQuery failed(SELECT mID,mAccount,mName,mContactIP,mServerIP,mAuthority FROM gmlist WHERE mServerIP='ALL' or mServerIP='192.168.0.100')
- SYSERR: Aug 9 08:09:49 :: __GetAdminInfo: __GetAdminInfo() ==> DirectQuery failed(SELECT mID,mAccount,mName,mContactIP,mServerIP,mAuthority FROM gmlist WHERE mServerIP='ALL' or mServerIP='192.168.0.100')
- SYSERR: Aug 9 08:09:51 :: __GetAdminInfo: __GetAdminInfo() ==> DirectQuery failed(SELECT mID,mAccount,mName,mContactIP,mServerIP,mAuthority FROM gmlist WHERE mServerIP='ALL' or mServerIP='192.168.0.100')
- SYSERR: Aug 9 08:13:16 :: hupsig: SIGHUP, SIGINT, SIGTERM signal has been received. shutting down.
- SYSERR: Aug 9 16:27:27 :: pid_init:
- Start of pid: 760
MFG
-
-
Hei Leute,
ich baue grad das Schulterband System bei mir ein aber stoße grad auf ein problem.
Bei mir gibt es in der "ItemData.h" nicht diese Funktion "WEAR_COSTUME_HAIR," und ich soll da diese Funktion hinzufügen
#ifdef ENABLE_ACCE_SYSTEM
WEAR_COSTUME_ACCE,
#endif
Kann mir da jemand helfen ?
MFG
-
Neues Projekt - Blank Solution erstellt und die sachen eingefügt, so wie es im Ordner ist.
Aber es lässt sich nicht kompilieren.
Ich kann es nur als .sln speichern.