Developer Store
Support
Member Forums

Screenshots
FAQ
Documentation
License
Known Issues
Downloads

MMOWorkshop.com Store Opened!
Torque MMO Kit - Open Sourced!
Torque MMO Kit - 1.5.2 Port Alpha Test
Torque MMO Kit - OSX Status

GarageGames.com irc.prairiegames.com
#mmoworkshop

PyTorque
TGB Web Browser


chayfo

hallsofvalhalla - After a long epiphany
Leathel - FoHO pre-Alpha 2.42
OldRod - More Musings on the MMO Industry
xapken - nice
J.C. Smith - 0.0.4.1 Build Notes
Wolf Dreamer - Pointless blog of pointless things
AthlonJedi2 - Server Nuked !!!!!
gamer_goof - New character model GIRL1 available only $4
... MORE BLOGS!

Mob chase range?
Auction House + Internal Mail Sy...
Crafting Wiki
Every Day a new question... :)
Lets talk skills.
Web Host
Seeking experienced programmer
Integrating Green-Ear SDK (paid)
where character information is s...
Spells Problem...

Changeset 1592

Show
Ignore:
Timestamp:
06/22/08 10:12:18 (4 months ago)
Author:
Llarlen
Message:
  • Fixed a bug in GMTool on exit.
  • Revised gmtool2app, works again.
  • Updated version count on GMTool.
Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • branches/games/minionsofmirth/v1/testing/mud/gamesettings.py

    r1345 r1592  
    1313#GAMEROOT = "starter.mmo" 
    1414 
     15#MASTERIP = "minions.prairiegames.com" 
    1516MASTERIP = 'test.prairiegames.com' 
    1617MASTERPORT = 2002 
  • branches/games/minionsofmirth/v1/testing/mud/gmtool/gmmind.py

    r1197 r1592  
    77import traceback 
    88from md5 import md5 
    9 from mud.gamesettings import * 
     9from mud.gamesettings import GMSERVER_IP,GMSERVER_PORT 
    1010 
    1111 
  • branches/games/minionsofmirth/v1/testing/mud/gmtool/gmtool.py

    r1197 r1592  
    1616 
    1717 
    18 VERSION = "v1.0
     18VERSION = "v1.1
    1919 
    2020USERNAME = "" 
     
    247247    def DoExit(self, event): 
    248248        global GMCONNECTION 
    249         GMCONNECTION.disconnect() 
     249        if GMCONNECTION: 
     250            GMCONNECTION.disconnect() 
    250251        GMCONNECTION = None 
    251252        reactor.stop() 
  • branches/games/minionsofmirth/v1/testing/packaging/gmtool2app.py

    r410 r1592  
    22# Please see LICENSE.TXT for details 
    33 
    4 from distutils.core import setup 
    5 import py2app 
     4from setuptools import setup 
    65import os 
    7 import string 
    86import shutil 
    9 import findertool
     7import sy
    108 
    11 OUTPUT_FOLDER = "gmtool" 
    129 
    13 if os.path.exists('./dist'): 
    14     shutil.rmtree('./dist') 
     10OUTPUT_FOLDER = './GMTool' 
     11 
     12 
     13if os.path.exists(OUTPUT_FOLDER): 
     14    shutil.rmtree(OUTPUT_FOLDER) 
     15 
    1516 
    1617if os.path.exists('./build'): 
    1718    shutil.rmtree('./build') 
    1819 
    19 setup( 
    20     app=['./mud/gmtool/gmtool.py'],options = dict (py2app = {"iconfile":"./packaging/MinionsOfMirth.icns","excludes":["genesis"],"packages":["encodings"]}) 
    21 
     20 
     21sys.path.append(os.getcwd()) 
    2222 
    2323 
    24  
     24setup( 
     25    app = ['./mud/gmtool/gmtool.py'], 
     26    options = {'py2app' : { 
     27        'iconfile' : './packaging/MinionsOfMirth.icns', 
     28        'includes' : ['mud.gamesettings'], 
     29        'packages' : ['encodings'], 
     30        'compressed' : True, 
     31        'argv_emulation' : True, 
     32        'dist_dir' : OUTPUT_FOLDER, 
     33    }}, 
     34    setup_requires = ['py2app'], 
     35