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


talentraspel

mpratt - MMO Game
xapken - nice
foodstamp - Another Day Another Step Accomplished
hallsofvalhalla - After a long epiphany
Leathel - FoHO pre-Alpha 2.42
OldRod - More Musings on the MMO Industry
J.C. Smith - 0.0.4.1 Build Notes
Wolf Dreamer - Pointless blog of pointless things
... MORE BLOGS!

No worlds showing up
Problem with reactor.connectTCP(...
Quest Remnants of Chaos
Foundations of Hope Online
need help with creating spells
avatar
ITEM VARIANTS ERADICATED... (for...
Recruiting a artist and 3D artis...
Looking for support and 3D model...
Trouble

Changeset 205

Show
Ignore:
Timestamp:
07/27/07 05:09:26 (1 year ago)
Author:
prairiegames
Message:

merging fixes into trunk for patch 1.25.1

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/games/minionsofmirth/v1/mud/client/gui/clientcommands.py

    r196 r205  
    2929 
    3030def CmdIgnore(args): 
    31     from gui.playerSettings import PLAYERSETTINGS 
     31    from playerSettings import PLAYERSETTINGS 
    3232    from tomeGui import TOMEGUI 
    3333    nick = ' '.join(args) 
     
    3939 
    4040def CmdUnignore(args): 
    41     from gui.playerSettings import PLAYERSETTINGS 
     41    from playerSettings import PLAYERSETTINGS 
    4242    from tomeGui import TOMEGUI 
    4343    nick = ' '.join(args) 
     
    4949 
    5050def CmdIgnored(args): 
    51     from gui.playerSettings import PLAYERSETTINGS 
     51    from playerSettings import PLAYERSETTINGS 
    5252    IGNORED = PLAYERSETTINGS.ignored 
    5353     
  • trunk/games/minionsofmirth/v1/mud/client/gui/friendsWnd.py

    r196 r205  
    112112        return 
    113113    try: 
    114         PLAYERMIND.perspective.callRemote("PlayerAvatar","submitFriends",FRIENDS) 
     114        from playerSettings import PLAYERSETTINGS 
     115        PLAYERMIND.perspective.callRemote("PlayerAvatar","submitFriends",PLAYERSETTINGS.friends) 
    115116    except: 
    116117        pass 
  • trunk/games/minionsofmirth/v1/mud/client/gui/helpWnd.py

    r196 r205  
    1111<color:FFFF00>OSX Note:<color:BBFFBB> Command click simulates a right click  
    1212 
    13 <color:FFFF00>Item Linking:<color:BBFFBB> For many areas of the UI, such as inventory window, spell book, skill listing, and effects window: 
    14 <color:FFFFFF>Shift + Left Click <color:BBAAAA><color:BBFFBB> - Open Encyclopedia to appropriate page. 
    15 <color:FFFFFF>Shift + Right Click <color:BBAAAA><color:BBFFBB> - Place link to appropriate page in chat. 
    16  
    1713<color:FFFFFF>Left + Right Click <color:BBAAAA><color:BBFFBB> - Move Forward 
    1814<color:FFFFFF>Left Click <color:BBAAAA>on npc, monster, or player avatar <color:BBFFBB> - Select 
     15<color:FFFFFF>Shift + Left Click <color:BBAAAA>on npc, monster, or player avatar <color:BBFFBB> - Inspect 
    1916<color:FFFFFF>Left Click <color:BBAAAA>on quick slot or macro slot <color:BBFFBB> - Activate 
    2017<color:FFFFFF>Left Click <color:BBAAAA>on target health bar with player targeted <color:BBFFBB> - Cycle Targets 
     
    4239<color:FFFFFF>Double Click <color:BBAAAA>on nonharmful effect icon <color:BBFFBB> - Cancel Effect 
    4340 
     41<color:FFFF00>Item Linking:<color:BBFFBB> For many areas of the UI, such as inventory window, spell book, skill listing, and effects window: 
     42 
     43<color:FFFFFF>Shift + Left Click <color:BBAAAA><color:BBFFBB> - Opens encyclopedia to appropriate page. 
     44<color:FFFFFF>Shift + Right Click <color:BBAAAA><color:BBFFBB> - Places link in chat. 
     45 
    4446<font:Arial:16><just:center> 
    4547<color:BBBBFF>Default Keyboard<just:left><font:Arial:13> 
     
    199201<color:FFFFFF>/friend remove <character name> <color:BBFFBB> - Remove a character from your friend list. 
    200202 
     203<color:FFFFFF>/map <description> <color:BBFFBB> - Add a map annotation to your 3d map and tracking list at your current location. 
     204 
    201205<just:center><font:Arial:16> 
    202206<color:BBBBFF>Guild Commands<just:left><font:Arial:13> 
  • trunk/games/minionsofmirth/v1/mud/client/gui/playerSettings.py

    r196 r205  
    206206        self.loadIgnored() 
    207207         
     208        # Dictionary for window settings. Keys are window names, 
     209        #  values are tuples of (window object,boolean True if active,flag if resizable). 
     210        self.windows = {} 
    208211        # Name of current world. 
    209212        self.worldname = "" 
     
    322325                    cursor.execute("UPDATE world SET singleplayer=? WHERE id=?;",(singleplayer,self.worldID)) 
    323326        try: 
    324             self.lastRealm = int(TGEGetGlobal("$Py::REALM")) 
     327            realm = int(TGEGetGlobal("$Py::REALM")) 
     328            if self.lastRealm != realm: 
     329                self.lastRealm = realm 
     330                cursor.execute("UPDATE misc SET last_realm=?;",(realm,)) 
    325331        except: 
    326332            # Use default. 
     
    411417        charID = cursor.execute("SELECT id FROM character WHERE world_id=? AND realm=? AND name=?;",(self.worldID,self.lastRealm,charname)).fetchone() 
    412418        if charID == None: 
    413             print 'Error: Character to be deleted could not be found!' 
     419            # Nothing to delete, character probably didn't get used yet. 
    414420            return 
    415421        charID = charID[0] 
  • trunk/games/minionsofmirth/v1/mud/world/character.py

    r196 r205  
    777777        # Find first slot that isn't used that item can go into. 
    778778        for slot in slots: 
    779             found = False 
    780779            # Check if an item is already equipped in that slot. 
    781780            for citem in self.items: 
    782781                if citem.slot == slot: 
    783                     found = True 
    784782                    break 
    785783            # No item equipped in checked slot. 
     
    790788        unequip = None 
    791789        if useslot == None: 
     790            # If item that should be equipped has invalid slot, don't attempt to switch. 
     791            if item.slot == -1 or RPG_SLOT_LOOT_BEGIN <= item.slot < RPG_SLOT_LOOT_END: 
     792                return 
    792793            unequip = item 
    793794            useslot = slots.pop() 
  • trunk/games/minionsofmirth/v1/mud/world/genesistime.py

    r196 r205  
    22#AUTOMATICALLY GENERATED FILE DO NOT EDIT! 
    33 
    4 GENESISTIME = "2007-06-25 06:49:02
     4GENESISTIME = "2007-07-26 14:38:09