comparison orpg/networking/gsclient.py @ 109:5eac6e0308df alpha

Traipse Alpha 'OpenRPG' {091007-03} Traipse is a distribution of OpenRPG that is designed to be easy to setup and go. Traipse also makes it easy for developers to work on code without fear of sacrifice. 'Ornery-Orc' continues the trend of 'Grumpy' and adds fixes to the code. 'Ornery-Orc's main goal is to offer more advanced features and enhance the productivity of the user. Update Summary: {091006} 00: Adds Bookmarks (Alpha) with cool Smiley Star and Plus Symbol images! 03: Changes made to the map for increased portability. SnowDog has changes planned in Core, though. Added an initial push to the BCG. Not much to see, just shows off how it is re-writing Main code. {091007} 00: New images added to Plugin Control Panel for Auto Start. 01: Attempting to fix Deprecation warning from Main. 02: Second attempt, problem in gsclient with "s. 03: Fail.
author sirebral
date Wed, 07 Oct 2009 21:02:28 -0500
parents e8b93e5f3721
children bd6ca89e4cbb
comparison
equal deleted inserted replaced
108:e8b93e5f3721 109:5eac6e0308df
653 else: 653 else:
654 pwd = "" 654 pwd = ""
655 if name == "": 655 if name == "":
656 wx.MessageBox("Invalid Name","Error"); 656 wx.MessageBox("Invalid Name","Error");
657 else: 657 else:
658 ### Alpha ### Should fix the depricated module in Main
659 #msg = "%s is creating room \'%s.\'" % (self.session.name, name) #Old Method
660 msg = "%s is creating room \'%s.\'" % (self.session.name, name) 658 msg = "%s is creating room \'%s.\'" % (self.session.name, name)
661 msg = '<chat type="1" version="1.0">'+msg+'</chat>' % (self.session.name, name) #new method
662 self.session.send( msg ) 659 self.session.send( msg )
663 self.session.send_create_group(name,pwd,boot_pwd,minversion) 660 self.session.send_create_group(name,pwd,boot_pwd,minversion)
664 self.set_lobbybutton(1); #enable the Lobby quickbutton 661 self.set_lobbybutton(1); #enable the Lobby quickbutton
665 662
666 663