Yardım bankamanger System PROBLEM :(

Konu sahibi bu konuda soru soruyor. Sorusu ile ilgili bilgisi olanların yanıtlamasını bekliyor.

JezMan

Üye
Üye
Mesaj
39
Beğeni
6
Puan
56
Ticaret Puanı
0
Syserr

Kod:
0910 22: 51: 15827 :: File "networkModule.py", line 245, in SetGamePhase

0910 22: 51: 15827 :: File "system.py", line 130, in __pack_import

0910 22: 51: 15827 :: File "system.py", line 110, in _process_result

0910 22: 51: 15827 :: File "game.py", line 84, in <module>

0910 22: 51: 15827 :: File "game.py", line 2471, in GameWindow

0910 22: 51: 15828 :: AttributeError
0910 22: 51: 15828 ::: 
0910 22: 51: 15828 :: 'module' object has no attribute 'ENABLE_MANAGER_BANK_SYSTEM'
0910 22: 51: 15828 :: 


[/ CODE] [/ CODE]
 
Have you added it to PythonAplicationModule.cpp?
 
if app.ENABLE_MANAGER_BANK_SYSTEM
If you are using the command you have to add.
 
I have already done the steps, added it to its files, and did all the steps correctly
if app.ENABLE_MANAGER_BANK_SYSTEM
This is added in Game.py

but PythonAplicationModule.cpp Not in the System
 
Search and add below
C++:
    PyModule_AddIntConstant(poModule, "CAMERA_STOP",            CPythonApplication::CAMERA_STOP);

C++:
#ifdef  ENABLE_MANAGER_BANK_SYSTEM
    PyModule_AddIntConstant(poModule, "ENABLE_MANAGER_BANK_SYSTEM",    1);
#else
    PyModule_AddIntConstant(poModule, "ENABLE_MANAGER_BANK_SYSTEM",    0);
#endif
 
I don't know what she added to game.py.
 
Kod:
 # 1.) Search:
        self.playerGauge = None
# 2.) Add bellow:
        if app.ENABLE_MANAGER_BANK_SYSTEM:
            self.managerAccountBank = None

# 1.) Search:
        self.playerGauge = uiPlayerGauge.PlayerGauge (self)
        self.playerGauge.Hide ()
# 2.) Add before:
        if app.ENABLE_MANAGER_BANK_SYSTEM:
            import uibankamanger
            self.managerAccountBank = uibankamanger.BankGui ()
            self.managerAccountBank.Hide ()

# 1.) Search:
        self.serverCommander = stringCommander.Analyzer ()
        for serverCommandItem in serverCommandList.items ():
            self.serverCommander.SAFE_RegisterCallBack (
                serverCommandItem [0], serverCommandItem [1]
            )
# 2.) Add before:
        if app.ENABLE_MANAGER_BANK_SYSTEM:
            serverCommandList ["BINARY_Account_Bank"] = self.managerAccountBank.Loading

# 1.) Search:
    def __LoverFar (self):
        if self.affectShower:
            self.affectShower.HideLoverState ()
# 2.) Add before:
    if app.ENABLE_MANAGER_BANK_SYSTEM:
        def BINARY_Account_Bank_Logs (self):
            self.managerAccountBank.BINARY_Account_Bank_Logs ()

# 1.) Search:
    def OnUpdate (self):
        app.UpdateGame ()
# 2.) Add before:
        if app.ENABLE_MANAGER_BANK_SYSTEM:
            self.managerAccountBank.OnUpdate ()

# 1.) Search:
        if self.targetBoard:
            self.targetBoard.Destroy ()
            self.targetBoard = None
# 2.) Add bellow:
        if app.ENABLE_MANAGER_BANK_SYSTEM:
            if self.managerAccountBank:
                self.managerAccountBank.Close () [/ CODE]
 
Try the command you added to the cmd.cpp file.
 
I've already tried it
But he says
<Bank> Password is incorrect, 4 characters are required
Without writing anything
I think the system is missing files
 
Son düzenleme:
Generate a password via db and try
Do you have syserr, check them too, channel and client
 
Geri
Üst