Mercurial > traipse_dev
comparison orpg/networking/gsclient.py @ 108:e8b93e5f3721 alpha
Traipse Alpha 'OpenRPG' {091007-02}
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.
author | sirebral |
---|---|
date | Wed, 07 Oct 2009 19:23:03 -0500 |
parents | ded1e7a25f8d |
children | 5eac6e0308df |
comparison
equal
deleted
inserted
replaced
107:ded1e7a25f8d | 108:e8b93e5f3721 |
---|---|
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 | 658 ### Alpha ### Should fix the depricated module in Main |
659 #msg = "%s is creating room \'%s.\'" % (self.session.name, name) #Old Method | 659 #msg = "%s is creating room \'%s.\'" % (self.session.name, name) #Old Method |
660 msg = "<chat type="1" version="1.0"> %s is creating room \'%s.\' </chat>" % (self.session.name, name) #new method | 660 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 | |
661 self.session.send( msg ) | 662 self.session.send( msg ) |
662 self.session.send_create_group(name,pwd,boot_pwd,minversion) | 663 self.session.send_create_group(name,pwd,boot_pwd,minversion) |
663 self.set_lobbybutton(1); #enable the Lobby quickbutton | 664 self.set_lobbybutton(1); #enable the Lobby quickbutton |
664 | 665 |
665 | 666 |