Changeset 1606
- Timestamp:
- 07/05/08 02:13:58 (3 months ago)
- Files:
-
- branches/community/torque/mmo/v1/talentraspel_development/changes.txt (deleted)
- branches/community/torque/mmo/v1/talentraspel_development/data (deleted)
- branches/community/torque/mmo/v1/talentraspel_development/main.cs (modified) (1 diff)
- branches/community/torque/mmo/v1/talentraspel_development/mud/client/gui/pointsOfInterest.py (modified) (1 diff)
- branches/community/torque/mmo/v1/talentraspel_development/mud/client/gui/skillinfo.py (modified) (1 diff)
- branches/community/torque/mmo/v1/talentraspel_development/mud/gamesettings.py (modified) (2 diffs)
- branches/community/torque/mmo/v1/talentraspel_development/packaging/nsis/mmogame_installer TEST.nsi (deleted)
- branches/community/torque/mmo/v1/talentraspel_development/packaging/nsis/mmogame_installer WORK.nsi (deleted)
- branches/community/torque/mmo/v1/talentraspel_development/patchlist.txt (deleted)
- branches/community/torque/mmo/v1/talentraspel_development/projects (deleted)
- branches/community/torque/mmo/v1/talentraspel_development/serverconfig/Premium_MMORPG.py (modified) (1 diff)
- branches/community/torque/mmo/v1/talentraspel_development/testgame.mmo (deleted)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/community/torque/mmo/v1/talentraspel_development/main.cs
r1090 r1606 7 7 $Py::MasterPort = "2007"; 8 8 9 $defaultGame = " testgame.mmo";9 $defaultGame = "starter.mmo"; 10 10 11 11 $displayHelp = false; branches/community/torque/mmo/v1/talentraspel_development/mud/client/gui/pointsOfInterest.py
r1063 r1606 6 6 7 7 POI = {} 8 9 POI["The swamp"] = {10 "Bindstone": (50.841, -270.494, 126.569)11 }12 13 POI["The mountains"] = {14 "Bindstone": (76.4553, -361.364, 134.113)15 }16 17 POI["The grassland"] = {18 "Bindstone": (42.676, -276.238, 117.611)19 }20 8 21 9 POI["The City of Trinst"] = { branches/community/torque/mmo/v1/talentraspel_development/mud/client/gui/skillinfo.py
r1384 r1606 93 93 SKILLINFOS['Sanctify'] = SkillInfo('Sanctify',False,"SPELLICON_3_24") #priest 94 94 95 SKILLINFOS['Healing Hands']=SkillInfo('Healing Hands',False,"SPELLICON_1_0")96 97 95 98 96 def GetSkillInfo(name,autocreate=True): branches/community/torque/mmo/v1/talentraspel_development/mud/gamesettings.py
r1399 r1606 5 5 from ConfigParser import SafeConfigParser 6 6 7 GAMENAME = " TestgameMMO"8 GAMEROOT = " testgame.mmo"7 GAMENAME = "Starter MMO" 8 GAMEROOT = "starter.mmo" 9 9 10 10 MASTERIP = '127.0.0.1' … … 23 23 24 24 CLUSTERNAMES = [ 25 ("base", "landone","landtwo"),25 ("base",), 26 26 ] 27 27 branches/community/torque/mmo/v1/talentraspel_development/serverconfig/Premium_MMORPG.py
r821 r1606 9 9 10 10 STATICZONES = [ 11 "base" ,"landone","landtwo"11 "base" 12 12 ] 13 13

