New.

Vino cu o sugestie si noi o vom lua in calcul daca merita!
User avatar
[MOD]Lorena
Posts: 6718
Location: Leona♕❤⚘❤

New.

Post by [MOD]Lorena » Wed Mar 30, 2016 10:06 pm

Propun, să se implementeze "Sistemul afk", după părerea mea este o idee bună , mai ales pentru membrii staff atunci când nu sunt la pc .
Image
"Şi nu mă las până nu-mi pun numele-n lumină
şi nu-i departe ziua-n care am să-ţi devin regină"
♥♥ El amor no se compra❤ se gana! ♥♥
Image
Image

User avatar
ΣISTIC
Posts: 14

Re: New.

Post by ΣISTIC » Wed Mar 30, 2016 10:23 pm

PRO.


> Incepe cu constinfo.py din root
la inceput de tot scriem:

Code: Select all

AFK = 0
> Trecem in game.py
facem un import sub import ime:

Code: Select all

import time
> Acum cautam:

Code: Select all

onPressKeyDict[app.DIK_F4]   = lambda : self.__PressQuickSlot(7)
> Si sub el adaugam:

Code: Select all

onPressKeyDict[app.DIK_F6]    = lambda : self.__afk()
> Mergem jos de tot si adaugam:

Code: Select all

# AFk Systen
   def   __afk(self):
      if constInfo.AFK == 0:
         constInfo.AFK = 1
         self.PopupMessage("Ai pornit sistemul afk")
      elif constInfo.AFK == 1:
         constInfo.AFK = 0
         self.PopupMessage("Ai oprit sistemul afk")
# Afk, sfarsit
> Acum cautam:

Code: Select all

def OnRecvWhisper(
> Si sub el adaugam:

Code: Select all

 afk = time.strftime("%H:%M")
      if mode == chat.WHISPER_TYPE_GM:
         self.interface.RegisterGameMasterName(name)
      if line[-25:] == "Im cer scuze sunt AFK":
            net.SendWhisperPacket(name, afk)
            chat.AppendWhisper(mode, name, line)
            self.interface.RecvWhisper(name)
            return
      afk = time.strftime("%H:%M")
      if constInfo.AFK == 1 and line[-5:] != afk and line[-28] != "Im cer scuze sunt AFK": 
      net.SendWhisperPacket(name, "Im cer scuze sunt AFK")
      chat.AppendWhisper(mode, name, line)
         self.interface.RecvWhisper(name)
      else:   
      chat.AppendWhisper(mode, name, line)
         self.interface.RecvWhisper(name)
> In intrologin.py cautam:

Code: Select all

def __OpenLoginBoard(self):
> Si sub el adaugam:

Code: Select all

constInfo.AFK = 0
Image

User avatar
[GM]Lexx
Posts: 5884
Location: ▶ YouTube: Lexx Gaming
Contact:

Re: New.

Post by [GM]Lexx » Thu Mar 31, 2016 12:03 am

Idee foarte bună!


PRO!
Image

CONTACT:
▶ Pe joc: [GM]Lexx / [Dn]Lexx / Lexx
▶ Discord: Lexx#7523
▶ Youtube: http://www.youtube.com/LexxGaming
▶ Facebook: https://www.facebook.com/lexx.gaming.75
▶ Server de Discord: https://dsc.gg/metin2steel


Image

User avatar
[MOD]Lorena
Posts: 6718
Location: Leona♕❤⚘❤

Re: New.

Post by [MOD]Lorena » Thu Mar 31, 2016 12:18 am

E prea simplu, mulţumim.. dar mna cine să bage?..
ΣISTIC wrote:PRO.


> Incepe cu constinfo.py din root
la inceput de tot scriem:

Code: Select all

AFK = 0
> Trecem in game.py
facem un import sub import ime:

Code: Select all

import time
> Acum cautam:

Code: Select all

onPressKeyDict[app.DIK_F4]   = lambda : self.__PressQuickSlot(7)
> Si sub el adaugam:

Code: Select all

onPressKeyDict[app.DIK_F6]    = lambda : self.__afk()
> Mergem jos de tot si adaugam:

Code: Select all

# AFk Systen
   def   __afk(self):
      if constInfo.AFK == 0:
         constInfo.AFK = 1
         self.PopupMessage("Ai pornit sistemul afk")
      elif constInfo.AFK == 1:
         constInfo.AFK = 0
         self.PopupMessage("Ai oprit sistemul afk")
# Afk, sfarsit
> Acum cautam:

Code: Select all

def OnRecvWhisper(
> Si sub el adaugam:

Code: Select all

 afk = time.strftime("%H:%M")
      if mode == chat.WHISPER_TYPE_GM:
         self.interface.RegisterGameMasterName(name)
      if line[-25:] == "Im cer scuze sunt AFK":
            net.SendWhisperPacket(name, afk)
            chat.AppendWhisper(mode, name, line)
            self.interface.RecvWhisper(name)
            return
      afk = time.strftime("%H:%M")
      if constInfo.AFK == 1 and line[-5:] != afk and line[-28] != "Im cer scuze sunt AFK": 
      net.SendWhisperPacket(name, "Im cer scuze sunt AFK")
      chat.AppendWhisper(mode, name, line)
         self.interface.RecvWhisper(name)
      else:   
      chat.AppendWhisper(mode, name, line)
         self.interface.RecvWhisper(name)
> In intrologin.py cautam:

Code: Select all

def __OpenLoginBoard(self):
> Si sub el adaugam:

Code: Select all

constInfo.AFK = 0
Image
Image
"Şi nu mă las până nu-mi pun numele-n lumină
şi nu-i departe ziua-n care am să-ţi devin regină"
♥♥ El amor no se compra❤ se gana! ♥♥
Image
Image

User avatar
ΣISTIC
Posts: 14

Re: New.

Post by ΣISTIC » Thu Mar 31, 2016 12:39 am

[VIP]Lorenna♕ wrote:E prea simplu, mulţumim.. dar mna cine să bage?..
ΣISTIC wrote:PRO.


> Incepe cu constinfo.py din root
la inceput de tot scriem:

Code: Select all

AFK = 0
> Trecem in game.py
facem un import sub import ime:

Code: Select all

import time
> Acum cautam:

Code: Select all

onPressKeyDict[app.DIK_F4]   = lambda : self.__PressQuickSlot(7)
> Si sub el adaugam:

Code: Select all

onPressKeyDict[app.DIK_F6]    = lambda : self.__afk()
> Mergem jos de tot si adaugam:

Code: Select all

# AFk Systen
   def   __afk(self):
      if constInfo.AFK == 0:
         constInfo.AFK = 1
         self.PopupMessage("Ai pornit sistemul afk")
      elif constInfo.AFK == 1:
         constInfo.AFK = 0
         self.PopupMessage("Ai oprit sistemul afk")
# Afk, sfarsit
> Acum cautam:

Code: Select all

def OnRecvWhisper(
> Si sub el adaugam:

Code: Select all

 afk = time.strftime("%H:%M")
      if mode == chat.WHISPER_TYPE_GM:
         self.interface.RegisterGameMasterName(name)
      if line[-25:] == "Im cer scuze sunt AFK":
            net.SendWhisperPacket(name, afk)
            chat.AppendWhisper(mode, name, line)
            self.interface.RecvWhisper(name)
            return
      afk = time.strftime("%H:%M")
      if constInfo.AFK == 1 and line[-5:] != afk and line[-28] != "Im cer scuze sunt AFK": 
      net.SendWhisperPacket(name, "Im cer scuze sunt AFK")
      chat.AppendWhisper(mode, name, line)
         self.interface.RecvWhisper(name)
      else:   
      chat.AppendWhisper(mode, name, line)
         self.interface.RecvWhisper(name)
> In intrologin.py cautam:

Code: Select all

def __OpenLoginBoard(self):
> Si sub el adaugam:

Code: Select all

constInfo.AFK = 0
Image
Eu daca imi da cineva clientul decriptat .

User avatar
[Diva]Diabla
Posts: 8263
Contact:

Re: New.

Post by [Diva]Diabla » Thu Mar 31, 2016 12:43 am

a mai fost popus , dar PRO here too :)

Bandituu
Posts: 3

Re: New.

Post by Bandituu » Fri Apr 01, 2016 4:00 pm

Pro! !

IDWLTYH
Posts: 3

Re: New.

Post by IDWLTYH » Tue Apr 05, 2016 9:12 am

ΣISTIC wrote:
Eu daca imi da cineva clientul decriptat .

Ţi-ai dat mo3 singur, te-ai şi făcut de râs.

User avatar
Mădă şmk
Posts: 996
Location: Baia Mare.
Contact:

Re: New.

Post by Mădă şmk » Tue Apr 05, 2016 6:52 pm

> Incepe cu constinfo.py din root
la inceput de tot scriem:

Code: Select all

AFK = 0
> Trecem in game.py
facem un import sub import ime:

Code: Select all

import time
> Acum cautam:

Code: Select all

onPressKeyDict[app.DIK_F4]   = lambda : self.__PressQuickSlot(7)
> Si sub el adaugam:

Code: Select all

onPressKeyDict[app.DIK_F6]    = lambda : self.__afk()
> Mergem jos de tot si adaugam:

Code: Select all

# AFk Systen
   def   __afk(self):
      if constInfo.AFK == 0:
         constInfo.AFK = 1
         self.PopupMessage("Ai pornit sistemul afk")
      elif constInfo.AFK == 1:
         constInfo.AFK = 0
         self.PopupMessage("Ai oprit sistemul afk")
# Afk, sfarsit
> Acum cautam:

Code: Select all

def OnRecvWhisper(
> Si sub el adaugam:

Code: Select all

 afk = time.strftime("%H:%M")
      if mode == chat.WHISPER_TYPE_GM:
         self.interface.RegisterGameMasterName(name)
      if line[-25:] == "Im cer scuze sunt AFK":
            net.SendWhisperPacket(name, afk)
            chat.AppendWhisper(mode, name, line)
            self.interface.RecvWhisper(name)
            return
      afk = time.strftime("%H:%M")
      if constInfo.AFK == 1 and line[-5:] != afk and line[-28] != "Im cer scuze sunt AFK": 
      net.SendWhisperPacket(name, "Im cer scuze sunt AFK")
      chat.AppendWhisper(mode, name, line)
         self.interface.RecvWhisper(name)
      else:   
      chat.AppendWhisper(mode, name, line)
         self.interface.RecvWhisper(name)
> In intrologin.py cautam:

Code: Select all

def __OpenLoginBoard(self):
> Si sub el adaugam:

Code: Select all

constInfo.AFK = 0
Image
prooooooooooooooooo
That means I don't fuck with you
I'm a boss, you a worker bitch

[VIP]Black
Posts: 35

Re: New.

Post by [VIP]Black » Tue Apr 05, 2016 8:14 pm

PROOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO. !

Locked

Return to “Sugestii si Sfaturi - Suggestions and Advices”