Results 1 to 6 of 6
  1. #1
    wowus123's Avatar
    Join Date
    Mar 2011
    Gender
    male
    Posts
    1
    Reputation
    10
    Thanks
    0

    aIWLobby - The Official Lobbying System

    Greetings,

    After days of hard labor I have finally completed aIWLobby, the ultimate lobbying system for AlterIWNet. The software was developed extensively under Python 2.5 using the WX GUI toolkit. BETA VERSION.

    It doesn't take much to find endless amounts of so-called "Server listing" computer programs on this forum. However, every single one lacks one thing or another. This is not the case with aIWLobby. We incorporated all of these ideas into one computer application. So you might be wondering what makes aIWLobby different from the others.

    Well first things first, you can chat with everybody using the software in real time. Another cool feature is that our software fetches the entire AlterIWNet server list, hence you have access to every server that is running. You can also select favorites and continue playing on those servers at a later time. All server information is fetched in real time. Thus, you can officially connect to servers with no or little lag!

    We also integrated a invite system. You heard right, you can now invite those whom matter to you or even strangers to your sessions via game and party invites.

    You connect to servers and perform nearly every action by right-clicking on the displays. This makes it easy for our users to work with our software.

    You can view player ranking in active game rooms and even send them "information exchange" requests. Which in turn, allow you to connect to those players at any given time.

    More information is available in the README document located within' the download. We urge you to beta test our software and provide feedback regarding your experiences. If you like our software, tell your friends!

    I'll see you in game,

    Froweey


    Virus total result:
    https://www.virustotal.com/file/f200...is/1329208464/

    one false positive.


    Download link:
    https://www.m e d i a f i r e.com/?i975qi3edph7ser - Remove spaces.


    Screenshots:




    Last edited by wowus123; 02-14-2012 at 01:34 AM.

  2. #2
    aIW|Convery's Avatar
    Join Date
    Oct 2010
    Gender
    male
    Posts
    2,875
    Reputation
    124
    Thanks
    604
    My Mood
    Cynical
    I love how everyone but aIW makes 'official' tools for it..

    Also, 'official tool' + outside links with 'false positives', seems legit..

    Not to mention that it's awesome how you find a server without lag when you're pinging and querying 1000 servers 4 times a second.. and with 1000 people using the tool at the same time you might just keep some servers down, good job..
    Last edited by aIW|Convery; 02-14-2012 at 02:00 AM.

  3. #3
    sdm's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Posts
    169
    Reputation
    10
    Thanks
    8
    My Mood
    Angelic
    Awesome, great job man.
    And I have a idea to make it easier to the "path.dat" problem

    to create a widget that the user puts the path and than its ok.

    I made it really fast, and I dont know if I did anything wrong, and this is the code for the idea, I dont know if it will "inset" in your code
    So there is the options, I dont know what did you used (Tkinter or wxPython) I didnt look at the library.zip
     
    Code:
    import os
    from Tkinter import *
    
    class GUI(Frame):
        def __init__(self, master=None):
            Frame.__init__(self,master)
            self.master.title('<TITLE>')
            self.grid(padx=10, pady=10)
            self.lbText = Label(self, text="Modern Warfare 2 Path: ")
            self.lbText.grid(row=0, column=0)
            self.enText = Entry(self)
            self.enText.grid(row=0, column=1, columnspan=6)
            self.btnEnt = Button(self, text='Save', command=self.Save)
            self.btnEnt.grid(row=0, column=7)
    
        def Save(self):
            mw2p = str(self.enText.get())
            mw2p = os.path.realpath(mw2p)
            pathdat = open(os.path.realpath(os.path.join(os.getcwd(), 'path.dat')), 'w')
            pathdat.write(mw2p)
            pathdat.close()
            self.master.destroy()
    
    guiFrame = GUI()
    guiFrame.mainloop()

     
    Code:
    import os
    from wxPython import *
    from wx import *
    
    class GUI(Frame):
        def __init__(self, parent, id, title):
            Frame.__init__(self,parent,id,title)
            self.parent = parent
            sizer = GridBagSizer()
            self.enText = TextCtrl(self,-1,value=u"")
            sizer.Add(self.enText,(0,1),DefaultSpan,EXPAND)
            btnEnt = Button(self,-1,label="Save")
            sizer.Add(btnEnt, (0,2))
            self.lbText = StaticText(self,-1,label=u"Modern Warfare 2 Path: ")
            sizer.Add(self.lbText,(0,0),DefaultSpan, EXPAND)
            self.Bind(EVT_BUTTON, self.Save, btnEnt)
            sizer.AddGrowableCol(0)
            self.SetSizerAndFit(sizer)
            self.SetSizeHints(-1,self.GetSize().y,-1,self.GetSize().y);
            self.Show(True)
    
        def Save(self,event):
            mw2p = str(self.enText.GetValue())
            mw2p = os.path.realpath(mw2p)
            pathdat = open(os.path.realpath(os.path.join(os.getcwd(), 'path.dat')), 'w')
            pathdat.write(mw2p)
            pathdat.close()
            self.Destroy()
            
    
    app = App()
    guiFrame = GUI(None, -1, "<TITLE>")
    app.MainLoop()

    Actually, I prefer the wxPython
    Please test it, if you want

    If its was a good idea and it really did help you, please Thanks me =DD and put my Name in thanks list =DD (kding =X)

  4. #4
    aIW|Convery's Avatar
    Join Date
    Oct 2010
    Gender
    male
    Posts
    2,875
    Reputation
    124
    Thanks
    604
    My Mood
    Cynical
    @master131

    Outside link for 5 days with a tool that'll ping 1000 servers 4 times a second, wai you no awake?

  5. #5
    Larity2056's Avatar
    Join Date
    Feb 2012
    Gender
    male
    Location
    UDF 2457
    Posts
    2,497
    Reputation
    188
    Thanks
    700
    My Mood
    Dead
    Get your asses back lazy minions, you guys still need to approve my download:/
    Last edited by Larity2056; 02-18-2012 at 11:29 AM.

  6. #6
    White-Black Gaming's Avatar
    Join Date
    Feb 2012
    Gender
    male
    Location
    Windsor, Ontario, Canada
    Posts
    4
    Reputation
    10
    Thanks
    0
    How do i set this up I cant find IW4MP i need help bad.

Similar Threads

  1. what's the best gaming system
    By XxxMattstaxxX in forum General Gaming
    Replies: 33
    Last Post: 12-17-2010, 04:01 AM
  2. The Official ImNoobzz Sig Request Thread
    By ImNoobzz in forum Help & Requests
    Replies: 14
    Last Post: 11-06-2008, 09:43 PM
  3. The Official 'Rate The Siggy Above You' Thread.
    By TheColors in forum Showroom
    Replies: 11
    Last Post: 09-16-2008, 04:10 PM
  4. The Official RoPW: MPGH Thread
    By gbitz in forum General
    Replies: 17
    Last Post: 08-20-2008, 03:52 PM
  5. The Official WarRock Hack, created by K2 Network
    By masaki619 in forum WarRock - International Hacks
    Replies: 44
    Last Post: 12-10-2007, 01:00 PM