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


jburch

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 670

Show
Ignore:
Timestamp:
12/18/07 09:25:04 (1 year ago)
Author:
jritter
Message:

changes to character server

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/games/minionsofmirth/v1/mud/characterserver/server.py

    r669 r670  
    4747 
    4848GUARDIANS = [ 
    49 "cheopisiv","Citrine","magnus","OldRod","Thalia","Dacca","elexadora","Morvik","IamAshley","Ganghiss","Solvar" 
     49"cheopisiv","Citrine","magnus","OldRod","Thalia","Dacca","elexadora","Morvik","IamAshley","Ganghiss","Solvar", 
     50"Josheb" 
    5051] 
    5152 
     
    296297         
    297298    def remote_contestLevelUpEvent(self,publicName,levelType,Level): 
     299        return 0 
     300         
    298301        if MASTER_IP == "test.prairiegames.com": 
    299302            return 0 
     
    545548         
    546549def AwardTicket(pname,levelType="",level=None): 
     550 
     551    return "" 
     552 
    547553    try: 
    548554        connection = MySQLdb.connect(host="localhost", user=MYSQL_USER, passwd=MYSQL_PASSWORD, db="minions" )  
  • trunk/games/minionsofmirth/v1/mud/world/character.py

    r669 r670  
    12301230                    advance = True 
    12311231                    from cserveravatar import AVATAR 
    1232                     if AVATAR: 
    1233                         AVATAR.doContestLevelUp(self.player,"primary",spawn.plevel) 
     1232                    #if AVATAR: 
     1233                    #    AVATAR.doContestLevelUp(self.player,"primary",spawn.plevel) 
    12341234 
    12351235                    # Iterate over the amount of levels for which advancement 
     
    13041304                if advDiff > 0: 
    13051305                    from cserveravatar import AVATAR 
    1306                     if AVATAR: 
    1307                         AVATAR.doContestLevelUp(self.player,"secondary",spawn.slevel) 
     1306                    #if AVATAR: 
     1307                    #    AVATAR.doContestLevelUp(self.player,"secondary",spawn.slevel) 
    13081308 
    13091309                    # Set a flag indicating an advancement was gained. 
     
    13761376                if advDiff > 0: 
    13771377                    from cserveravatar import AVATAR 
    1378                     if AVATAR: 
    1379                         AVATAR.doContestLevelUp(self.player,"tertiary",spawn.tlevel) 
     1378                    #if AVATAR: 
     1379                    #    AVATAR.doContestLevelUp(self.player,"tertiary",spawn.tlevel) 
    13801380 
    13811381