Register for your free account! | Forgot your password?

Go Back   elitepvpers > Popular Games > Metin2
You last visited: Today at 13:38

  • Please register to post and access all features, it's quick, easy and FREE!

Advertisement



Someone help me aki on new bin

Discussion on Someone help me aki on new bin within the Metin2 forum part of the Popular Games category.

Reply
 
Old   #1
 
elite*gold: 0
Join Date: Feb 2013
Posts: 43
Received Thanks: 1
Someone help me aki on new bin

I tried for over 2013 new bin me of an error:
----------
He intentado durante más de 2.013 nuevos me bin de un error:

Quote:
0526 15:13:08844 ::
networkModule.py(line:194) SetSelectCharacterPhase
system.py(line:130) __pack_import
system.py(line:110) _process_result
introSelect.py(line:23) ?
system.py(line:130) __pack_import
system.py(line:110) _process_result
uiAffectShower.py(line:8) ?
system.py(line:130) __pack_import
system.py(line:110) _process_result
uiToolTip.py(line:314) ?
uiToolTip.py(line:338) ItemToolTip

networkModule.SetSelectCharacterPhase - exceptions.AttributeError:'module' object has no attribute 'APPLY_DEF_GRADE'

0526 15:13:08844 :: ================================================== ================================================== ========
0526 15:13:08844 :: Abort!!!!
el problema de lo que puedo ver es en:
--------
the problem from what I can see is in:
networkmodule.py
I leave to my archive aki ve if someone can help me:
--------------------
Dejo a mi archivo aki ve si alguien me puede ayudar:
Quote:
################################################## #################################################
# Network

import app
import chr
import dbg
import net
import snd

import chr
import chrmgr
import background
import player
import playerSettingModule

import ui
import uiPhaseCurtain

import locale

class PopupDialog(ui.ScriptWindow):

def __init__(self):
print "NEW POPUP DIALOG ----------------------------------------------------------------------------"
ui.ScriptWindow.__init__(self)
self.CloseEvent = 0

def __del__(self):
print "---------------------------------------------------------------------------- DELETE POPUP DIALOG "
ui.ScriptWindow.__del__(self)

def LoadDialog(self):
PythonScriptLoader = ui.PythonScriptLoader()
PythonScriptLoader.LoadScriptFile(self, "UIScript/PopupDialog.py")

def Open(self, Message, event = 0, ButtonName = locale.UI_CANCEL):

if TRUE == self.IsShow():
self.Close()

self.Lock()
self.SetTop()
self.CloseEvent = event

AcceptButton = self.GetChild("accept")
AcceptButton.SetText(ButtonName)
AcceptButton.SetEvent(ui.__mem_func__(self.Close))

self.GetChild("message").SetText(Message)
self.Show()

def Close(self):

if FALSE == self.IsShow():
self.CloseEvent = 0
return

self.Unlock()
self.Hide()

if 0 != self.CloseEvent:
self.CloseEvent()
self.CloseEvent = 0

def Destroy(self):
self.Close()
self.ClearDictionary()

def OnPressEscapeKey(self):
self.Close()
return TRUE

def OnIMEReturn(self):
self.Close()
return TRUE

##
## Main Stream
##
class MainStream(object):
isChrData=0

def __init__(self):
print "NEWMAIN STREAM ----------------------------------------------------------------------------"
net.SetHandler(self)
net.SetTCPRecvBufferSize(64*1024)
net.SetTCPSendBufferSize(1024)
net.SetUDPRecvBufferSize(4096)

self.id=""
self.pwd=""
self.addr=""
self.port=0
self.account_addr=0
self.account_port=0
self.slot=0
self.isAutoSelect=0
self.isAutoLogin=0

self.curtain = 0
self.curPhaseWindow = 0
self.newPhaseWindow = 0

def __del__(self):
print "---------------------------------------------------------------------------- DELETE MAIN STREAM "

def Destroy(self):
if self.curPhaseWindow:
self.curPhaseWindow.Close()
self.curPhaseWindow = 0

if self.newPhaseWindow:
self.newPhaseWindow.Close()
self.newPhaseWindow = 0

self.popupWindow.Destroy()
self.popupWindow = 0

self.curtain = 0

def Create(self):
self.CreatePopupDialog()

self.curtain = uiPhaseCurtain.PhaseCurtain()

def SetPhaseWindow(self, newPhaseWindow):
if self.newPhaseWindow:
#print "ÀÌ¹Ì »õ·Î¿î À©µµ¿ì·Î ¹Ù²Û»óÅ¿¡¼* ¶Ç ¹Ù²Þ", newPhaseWindow
self.__ChangePhaseWindow()

self.newPhaseWindow=newPhaseWindow

if self.curPhaseWindow:
#print "ÆäÀÌµå ¾Æ¿ôµÇ¸é ¹Ù²Þ"
self.curtain.FadeOut(self.__ChangePhaseWindow)
else:
#print "ÇöÀç À©µµ¿ì°¡ ¾ø´Â »óŶó ¹Ù·Î ¹Ù²Þ"
self.__ChangePhaseWindow()

def __ChangePhaseWindow(self):
oldPhaseWindow=self.curPhaseWindow
newPhaseWindow=self.newPhaseWindow
self.curPhaseWindow=0
self.newPhaseWindow=0

if oldPhaseWindow:
oldPhaseWindow.Close()

if newPhaseWindow:
newPhaseWindow.Open()

self.curPhaseWindow=newPhaseWindow

if self.curPhaseWindow:
self.curtain.FadeIn()
else:
app.Exit()

def CreatePopupDialog(self):
self.popupWindow = PopupDialog()
self.popupWindow.LoadDialog()
self.popupWindow.SetCenterPosition()
self.popupWindow.Hide()


## SelectPhase
################################################## ########################################
def SetLoginPhase(self):
net.Disconnect()

import introLogin
self.SetPhaseWindow(introLogin.LoginWindow(self))

def SetSelectEmpirePhase(self):
try:
import introEmpire
self.SetPhaseWindow(introEmpire.SelectEmpireWindow (self))
except:
import exception
exception.Abort("networkModule.SetSelectEmpirePhas e")


def SetReselectEmpirePhase(self):
try:
import introEmpire
self.SetPhaseWindow(introEmpire.ReselectEmpireWind ow(self))
except:
import exception
exception.Abort("networkModule.SetReselectEmpirePh ase")

def SetSelectCharacterPhase(self):
try:
locale.LoadLocaleData()
import introSelect
self.popupWindow.Close()
self.SetPhaseWindow(introSelect.SelectCharacterWin dow(self))
except:
import exception
exception.Abort("networkModule.SetSelectCharacterP hase")

def SetCreateCharacterPhase(self):
try:
import introCreate
self.SetPhaseWindow(introCreate.CreateCharacterWin dow(self))
except:
import exception
exception.Abort("networkModule.SetCreateCharacterP hase")

def SetTestGamePhase(self, x, y):
try:
import introLoading
loadingPhaseWindow=introLoading.LoadingWindow(self )
loadingPhaseWindow.LoadData(x, y)
self.SetPhaseWindow(loadingPhaseWindow)
except:
import exception
exception.Abort("networkModule.SetLoadingPhase")



def SetLoadingPhase(self):
try:
import introLoading
self.SetPhaseWindow(introLoading.LoadingWindow(sel f))
except:
import exception
exception.Abort("networkModule.SetLoadingPhase")

def SetGamePhase(self):
try:
import game
self.popupWindow.Close()
self.SetPhaseWindow(game.GameWindow(self))
except:
raise
import exception
exception.Abort("networkModule.SetGamePhase")

################################
# Functions used in python

## Login
def Connect(self):
import constInfo
if constInfo.KEEP_ACCOUNT_CONNETION_ENABLE:
net.ConnectToAccountServer(self.addr, self.port, self.account_addr, self.account_port)
else:
net.ConnectTCP(self.addr, self.port)

#net.ConnectUDP(IP, Port)

def SetConnectInfo(self, addr, port, account_addr=0, account_port=0):
self.addr = addr
self.port = port
self.account_addr = account_addr
self.account_port = account_port

def GetConnectAddr(self):
return self.addr

def SetLoginInfo(self, id, pwd):
self.id = id
self.pwd = pwd
net.SetLoginInfo(id, pwd)

def CancelEnterGame(self):
pass

## Select
def SetCharacterSlot(self, slot):
self.slot=slot

def GetCharacterSlot(self):
return self.slot

## Empty
def EmptyFunction(self):
pass
sinvalloko is offline  
Old 05/27/2013, 00:17   #2
 
elite*gold: 0
Join Date: Apr 2013
Posts: 44
Received Thanks: 9
Du hast einen Fail :3
Jibu is offline  
Old 05/27/2013, 10:57   #3
 
Golden Trades's Avatar
 
elite*gold: 8
Join Date: May 2013
Posts: 1,559
Received Thanks: 182
You try to reinstall it?
Golden Trades is offline  
Reply




All times are GMT +2. The time now is 13:38.


Powered by vBulletin®
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
SEO by vBSEO ©2011, Crawlability, Inc.
This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

Support | Contact Us | FAQ | Advertising | Privacy Policy | Terms of Service | Abuse
Copyright ©2024 elitepvpers All Rights Reserved.