[wpdev-commits] xmlscripts/scripts/wolfpack consts.py,1.30,1.31
Brought to you by:
rip,
thiagocorrea
|
From: <co...@us...> - 2003-10-03 16:21:16
|
Update of /cvsroot/wpdev/xmlscripts/scripts/wolfpack In directory sc8-pr-cvs1:/tmp/cvs-serv18209/scripts/wolfpack Modified Files: consts.py Log Message: little work on global skill checking and mining Index: consts.py =================================================================== RCS file: /cvsroot/wpdev/xmlscripts/scripts/wolfpack/consts.py,v retrieving revision 1.30 retrieving revision 1.31 diff -C2 -d -r1.30 -r1.31 *** consts.py 1 Oct 2003 22:23:06 -0000 1.30 --- consts.py 3 Oct 2003 16:21:11 -0000 1.31 *************** *** 122,126 **** MANA = 0 STAMINA = 1 ! HITPOINTS = 2 DEXTERITY = 3 INTELLIGENCE = 4 --- 122,126 ---- MANA = 0 STAMINA = 1 ! HEALTH = 2 DEXTERITY = 3 INTELLIGENCE = 4 *************** *** 315,320 **** # Colors ! YELLOW = 0x37 ! GRAY = 0x3b2 # Fonts --- 315,328 ---- # Colors ! BLACK = 1 ! DARKBLUE = 2 ! BLUE = 3 ! RED = 38 ! DARDRED = 37 ! PINK = 19 ! DARKGREEN = 67 ! GREEN = 68 ! YELLOW = 55 ! GRAY = 999 # Fonts *************** *** 335,336 **** --- 343,353 ---- MUTATECHANCE = 6 FALLBACKCHANCE = 7 + + #SKILLS GROW LOCKS + GROWUP = 0 + GROWDOWN = 1 + GROWLOCK = 2 + + #Stat gain delay = 15 minutes ( 900 seconds ) + STATGAINDELAY = 900 + |