Hey Leute
Ich habe mir das TuT angeschaut:
Nun ist mein Problem ich komme bei der
constinfo.py also dem anfang nicht klar...
Game.py habe ich fertig würde ich sagen
und bei dem rest komme ich leider auch nicht wirklich zurecht...
Kann mir da jemand evtl per TV oder so helfen?
Des weiteren weiß ich auch nicht wo ich die GM Logos einfügen soll...
dort steht effect etc. habe da mit den effecten so gemacht:
def OnUpdate(self):
app.UpdateGame()
gamemasta = player.GetName()
if self.mapNameShower.IsShow():
self.mapNameShower.Update()
if self.isShowDebugInfo:
self.UpdateDebugInfo()
if self.enableXMasBoom:
self.__XMasBoom_Update()
if gamemasta.find("[CoMa]")!=-1 and constInfo.GM_MARK == 0:
constInfo.GM_MARK = 1
net.SendChatPacket("/effect 20")
if gamemasta.fing("[TM]") !=-1 and constInfo.GM_Mark == 0:
constInfo.GM_Mark = 1
net.SendChatPacket("/effect 19")
if gamemasta.fing("[GA]") !=-1 and constInfo.GM_Mark == 0:
constInfo.GM_Mark = 1
net.SendChatPacket("/effect 18")
if gamemasta.fing("[SGM]") !=-1 and constInfo.GM_Mark == 0:
constInfo.GM_Mark = 1
net.SendChatPacket("/effect 17")
if gamemasta.find("[GM]")!=-1 and constInfo.GM_MARK == 0:
constInfo.GM_MARK = 1
net.SendChatPacket("/effect 16")
if gamemasta.fing("[EM]") !=-1 and constInfo.GM_Mark == 0:
constInfo.GM_Mark = 1
net.SendChatPacket("/effect 15")
if gamemasta.fing("[TGM]") !=-1 and constInfo.GM_Mark == 0:
constInfo.GM_Mark = 1
net.SendChatPacket("/effect 14")
if gamemasta.fing("[MOD]") !=-1 and constInfo.GM_Mark == 0:
constInfo.GM_Mark = 1
net.SendChatPacket("/effect 13")
self.interface.BUILD_OnUpdate()
Ist das richtig? Bräuchte da echtmal ne helfende hand damit ich da etwas zurecht komme..^^