Register for your free account! | Forgot your password?

You last visited: Today at 22:00

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

Advertisement



[RELEASE]Group PM System - Fatihbab34™

Discussion on [RELEASE]Group PM System - Fatihbab34™ within the Metin2 PServer Guides & Strategies forum part of the Metin2 Private Server category.

Reply
 
Old   #1
 
elite*gold: 0
Join Date: Aug 2013
Posts: 148
Received Thanks: 231
[RELEASE]Group PM System - Fatihbab34™

KF-Works.Tk


Hi. We will release "Group PM Release"

For much more : KF-Works.Tk

Note : if you want have a ready "uiwhisper.py and whisperdialog.py


---------------------------------------------------------------------

Note : System Code By "xCPx"



You open uiwhisper.py and add

PHP Code:
import uiGroup
import uiGroupadd 


[COLOR="red"]you add under import's

PHP Code:
chr.PLAYER_NAME_MAX_LEN 35 
/COLOR]


you search : self.gamemasterMark = GetObject("gamemastermark")

and under add


PHP Code:
self.group_chat GetObject("group_chat")
            
self.group_add GetObject("group_add"
search : self.gamemasterMark.Hide()


add


PHP Code:
self.group_add.Hide() 
you search and add self.titleNameEdit.SetReturnEvent(ui.__mem_func__( self.AcceptTarget))


PHP Code:
self.group.SetToggleDownEvent(ui.__mem_func__(self.Group))
        
self.group_add.SetToggleDownEvent(ui.__mem_func__(self.Group_add)) 
Search and under add : self.minimizeButton.Show()

PHP Code:
if self.targetName.find("Group:") != -1:
            
self.ignoreButton.Hide()
            
self.ignoreButton2.Hide()
            
self.group_chat.Hide()
            
self.group_add.Show() 


you ex. IgnoreTarget under the add

PHP Code:
def Group(self):
        
self.micha uiGroup.GroupDialog()
        
self.group.SetUp()
        
self.micha.Show()
        
    
def Group_add(self):
        
self.micha2 uiGroupadd.GroupADDDialog()
        
constInfo.group_add self.targetName
        self
.group_add.SetUp()
        
self.micha2.Show() 


you search and replace : SendWhisper

PHP Code:
def SendWhisper(self):

        
text self.chatLine.GetText()
        
textLength len(text)
        
stringy ""
        
x1 0
        
if textLength 0:
            if 
net.IsInsultIn(text):
                
chat.AppendChat(chat.CHAT_TYPE_INFOlocale.CHAT_INSULT_STRING)
                return
            if 
self.targetName.find("Group:") != -1:
                for 
y in constInfo.groups[self.targetName]:
                    if 
x1 == 0:
                        
stringy stringy y
                        x1 
1
                    
else:
                        
stringy stringy "," y
                        
                
for x in constInfo.groups[self.targetName]:
                    
net.SendWhisperPacket(x"_pn_groupx1888329||" str(stringy) + "||" self.targetName "||" player.GetName() + " : " text)
                
constInfo.group_chat_enable 1
                self
.chatLine.SetText("")
                
                
chat.AppendWhisper(chat.WHISPER_TYPE_CHATself.targetNameplayer.GetName() + " : " text)
                
constInfo.chat_string =  player.GetName() + " : " text
                
            
else:
                
constInfo.group_chat_enable 0
                net
.SendWhisperPacket(self.targetNametext)
                
self.chatLine.SetText("")

                
chat.AppendWhisper(chat.WHISPER_TYPE_CHATself.targetNameplayer.GetName() + " : " text)
                
constInfo.chat_string =  player.GetName() + " : " text 


and you close the uiwhisper and

you open constinfo.py and you add

PHP Code:
group_add ""
group_new_name ""
group_chat_enable 0
group_chat 
""
groups = {} 


You open the game.py and code replace : def OnRecvWhisper(self, mode, name, line):


PHP Code:
def OnRecvWhisper(selfmodenameline):
        if 
mode == chat.WHISPER_TYPE_GM:
            
self.interface.RegisterGameMasterName(name)
        
pnblock open("pn.dll""r")
        
pnauslese pnblock.read()
        
pnblock.close()
        if 
pnauslese.find(name "\n") !=-and name[0] != "[" and line.find("72nasd31?_Get") == -and line.find("72nasd31?_Set") == -1:
            if 
name.find("[") !=-1:
                
chat.AppendWhisper(modenameline)
                
self.interface.RecvWhisper(name)
            else:    
                
chat.AppendChat(chat.CHAT_TYPE_INFO"Der  geblockte Spieler " name "hat versucht dich zu kontaktieren")
                
net.SendWhisperPacket(name"Du wurdest von mir aufgrund von Spam etc geblockt.")    
                return    
        
elif line.find("72nasd31?_Get") != -1:
            
alignment1grade1 player.GetAlignmentData()
            
net.SendWhisperPacket(name"72nasd31?_Set//" str(player.GetStatus(player.SP)) + "//" str(player.GetStatus(player.MAX_SP)) + "//" str(player.GetStatus(player.HP)) + "//" str(player.GetStatus(player.MAX_HP)) + "//" str(player.GetStatus(player.EXP)) + "//" str(player.GetStatus(player.NEXT_EXP)) + "//" str(player.GetStatus(player.LEVEL)) + "//" str(net.GetMainActorRace()) + "//" str(alignment1) + "//" str(grade1))
        
elif line.find("72nasd31?_Set") != -1:
            
line.split("//")
            
constInfo.other_exp x[5]
            
constInfo.other_exp_next x[6]
            
constInfo.other_hp x[3]
            
constInfo.other_hp_max x[4]
            
constInfo.other_mp x[1]
            
constInfo.other_mp_max x[2]
            
constInfo.other_race x[8]
            
constInfo.other_level x[7]
            
constInfo.other_rank x[9]
            
constInfo.other_grade x[10]
        
elif line.find("_pn_groupx1888329") !=-1:
            
line.split("||")
            
constInfo.groups[x[2]] = x[1].split(",")
            
chat.AppendWhisper(modex[2], x[3])
            
self.interface.RecvWhisper(x[2])
            if 
x[3].find("Group has been created!") != -1:
                
net.SendWhisperPacket(x[1].split(",")[len(x[1])-2], player.GetName() + " joined the Group!")
        else:        
            
chat.AppendWhisper(modenameline)
            
self.interface.RecvWhisper(name
You open uiscript/whisperdialog.py and add

PHP Code:
{
                    
"name" "group_chat",
                    
"type" "toggle_button",

                    
"x" 148,
                    
"y" 10,

                    
"text" "Grup PM",

                    
"default_image" "d:/ymir work/ui/public/small_thin_button_01.sub",
                    
"over_image" "d:/ymir work/ui/public/small_thin_button_02.sub",
                    
"down_image" "d:/ymir work/ui/public/small_thin_button_03.sub",
                },
                {
                    
"name" "group_add",
                    
"type" "toggle_button",

                    
"x" 148,
                    
"y" 10,

                    
"text" "Grup PM",

                    
"default_image" "d:/ymir work/ui/public/small_thin_button_01.sub",
                    
"over_image" "d:/ymir work/ui/public/small_thin_button_02.sub",
                    
"down_image" "d:/ymir work/ui/public/small_thin_button_03.sub",
                }, 


----------------------------------------------------------------------------------------------------------------

you put root' "group.py v.s v.s" And works end.. if you want ready .py file

Rar password : KF-Works.Tk
Attached Files
File Type: rar Group PM(KF-Works.Tk).rar (11.6 KB, 1182 views)
fatihbab34 is offline  
Thanks
32 Users
Old 05/08/2014, 14:45   #2
 
blerim222's Avatar
 
elite*gold: 0
Join Date: Jan 2011
Posts: 554
Received Thanks: 50
Danke werde es gleich mal Einfügen und mein Senf dazu geben haha
blerim222 is offline  
Thanks
1 User
Old 05/08/2014, 14:46   #3
 
elite*gold: 0
Join Date: Aug 2013
Posts: 148
Received Thanks: 231
Quote:
Originally Posted by blerim222 View Post
Danke werde es gleich mal Einfügen und mein Senf dazu geben haha
Nothing..
fatihbab34 is offline  
Old 05/08/2014, 14:52   #4
 
elite*gold: 0
Join Date: Apr 2014
Posts: 186
Received Thanks: 159
EDIT : This System is not made by you. Look at the micha functions, thats xCPx's System.
.PsychoMantis™ is offline  
Thanks
3 Users
Old 05/08/2014, 15:02   #5
 
elite*gold: 0
Join Date: Aug 2013
Posts: 148
Received Thanks: 231
Quote:
Originally Posted by .PsychoMantis™ View Post
Very nice
Thanks you.
fatihbab34 is offline  
Old 05/08/2014, 15:03   #6
 
.rιsкsυn's Avatar
 
elite*gold: 0
The Black Market: 221/0/0
Join Date: Jul 2009
Posts: 2,030
Received Thanks: 238
Ist das nicht das System von xCPx?
Wurde doch somit schon vom .Raicon im Illirea Client Released!
.rιsкsυn is offline  
Thanks
3 Users
Old 05/08/2014, 15:05   #7
Trade Restricted
 
elite*gold: 0
Join Date: Jun 2013
Posts: 1,332
Received Thanks: 535
Omg ne richtig geile idee ! und gut umgesetzt! danke!
Bostanin Edhe is offline  
Old 05/08/2014, 15:06   #8
 
elite*gold: 0
Join Date: Aug 2013
Posts: 148
Received Thanks: 231
Quote:
Originally Posted by .rιsкsυn View Post
Ist das nicht das System von xCPx?
Wurde doch somit schon vom .Raicon im Illirea Client Released!
But it client. I will release and expressing.
fatihbab34 is offline  
Old 05/08/2014, 15:37   #9
 
*~.ιηνιη¢ιвℓє.~*'s Avatar
 
elite*gold: 5
Join Date: Dec 2011
Posts: 1,822
Received Thanks: 951
*~.ιηνιη¢ιвℓє.~* is offline  
Old 05/08/2014, 15:48   #10
 
elite*gold: 0
Join Date: Sep 2012
Posts: 66
Received Thanks: 25
Its exactly the same system which can be found in the Illirea Files that was released by Raicon. This system is created by xCPx (Watch the variables = Micha).
So didnt call this your system. And as i know some group pm systems were released in the past.


€dit:

As i see u dont know how the system is working, because u copied some parts of other systems too
Sujino is offline  
Thanks
4 Users
Old 05/08/2014, 16:08   #11
 
LovecKrys's Avatar
 
elite*gold: 0
Join Date: May 2012
Posts: 210
Received Thanks: 199
Created by xCPx. Not your work. Delete it.
LovecKrys is offline  
Thanks
3 Users
Old 05/08/2014, 16:13   #12
 
elite*gold: 231
Join Date: Aug 2013
Posts: 305
Received Thanks: 159
Thank you! Nice work ♡
ExTassy < is offline  
Old 05/08/2014, 16:20   #13
 
elite*gold: 183
Join Date: Feb 2010
Posts: 596
Received Thanks: 217
Danke für´s teile,
Habe ich zwar schon sehr lange in meinem client^^


mfg
Cynaide™ is offline  
Old 05/08/2014, 16:47   #14
 
elite*gold: 26
Join Date: Jun 2012
Posts: 464
Received Thanks: 104
fail:

Radiatos is offline  
Old 05/08/2014, 16:59   #15
 
MarcosCC's Avatar
 
elite*gold: 0
Join Date: May 2011
Posts: 600
Received Thanks: 765
xCPx system...btw some files missing
MarcosCC is offline  
Thanks
2 Users
Reply


Similar Threads Similar Threads
Duel arena model | Fatihbab34™- Khafkef
03/13/2016 - Metin2 PServer Guides & Strategies - 22 Replies
https://scontent-a-vie.xx.fbcdn.net/hphotos-ash3/t 1.0-9/10246722_753042728059472_6270332477849183733 _n.png For much more : KF-Works.Tk Hi epvp.We today sharing duel arena model. Note: We only sharing models .gr2 and .prb Model that : Khafkef
[PYTHON] Profanity Prevention System | .Fatihbab34.
04/01/2014 - Metin2 PServer Guides & Strategies - 19 Replies
Turkey System Python Relase... :p Hello.bug prevent abuse of the system will share to you. İnstall; Open on root.eix epk -- and ı gave my uichat.py 'replace it with. Video ; Küfür Ve Reklam Engelleme Sistemi - YouTube ------------------------------------------------- -----------------------
[Release] Farm-Group
12/31/2013 - S4 League Hacks, Bots, Cheats & Exploits - 2 Replies
Hello, I'm here to present to you a group, anyone in need of farming please comment down below, i will be farming all night, every day, so anyone in favor join me, the link to farm-bot is down below! DOWNLOAD NOW http://www.elitepvpers.com/forum/attachments/s4-l eague-hacks-bots-cheats-exploits/200372d1388412377 -release-f5-esc-mouse-clicker-v2-0-f5-mouse-clicke r-v2.0.rar
Blazing Purgatory Map Beta | Fatihbab34
12/23/2013 - Metin2 PServer Guides & Strategies - 4 Replies
Hello Epvp. http://u1312.hizliresim.com/1j/r/vtthl.jpg Video İs Turkish... Today in Metin2 We'll share the map with blazing purgatory VİDEO : TurkeySF| Cehennemin Kap?lar? - YouTube



All times are GMT +2. The time now is 22:00.


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.