[wpdev-commits] xmlscripts/scripts/magic circle5.py,1.16,1.17 circle7.py,1.13,1.14
Brought to you by:
rip,
thiagocorrea
From: Klaus M. <nad...@us...> - 2004-09-01 09:44:32
|
Update of /cvsroot/wpdev/xmlscripts/scripts/magic In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9163/magic Modified Files: circle5.py circle7.py Log Message: bugs fixed pointed out by Incanus Index: circle7.py =================================================================== RCS file: /cvsroot/wpdev/xmlscripts/scripts/magic/circle7.py,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** circle7.py 25 Aug 2004 17:03:05 -0000 1.13 --- circle7.py 1 Sep 2004 09:44:07 -0000 1.14 *************** *** 272,276 **** continue ! if self.checkresist(char, tgarget): target.effect(0x3779, 10, 20) else: --- 272,276 ---- continue ! if self.checkresist(char, target): target.effect(0x3779, 10, 20) else: Index: circle5.py =================================================================== RCS file: /cvsroot/wpdev/xmlscripts/scripts/magic/circle5.py,v retrieving revision 1.16 retrieving revision 1.17 diff -C2 -d -r1.16 -r1.17 *** circle5.py 25 Aug 2004 17:03:05 -0000 1.16 --- circle5.py 1 Sep 2004 09:44:07 -0000 1.17 *************** *** 110,114 **** duration = int(1 + (6 * char.skill[MAGERY]) / 50.0) * 1000 - duration = 10000 char.orgskin = char.skin --- 110,113 ---- *************** *** 125,129 **** if char.id == 0x190: ! char.name = 'Mann' # Create new hair --- 124,128 ---- if char.id == 0x190: ! char.name = 'Man' # Create new hair *************** *** 131,135 **** newbeard = random.choice(['203e', '203f', '2040', '2041', '204b', '204c', '204d', '']) else: ! char.name = 'Frau' newhair = random.choice(['2044', '2045', '2046', '203c', '203b', '203d', '2047', '2048', '2049', '204a', '']) --- 130,134 ---- newbeard = random.choice(['203e', '203f', '2040', '2041', '204b', '204c', '204d', '']) else: ! char.name = 'Woman' newhair = random.choice(['2044', '2045', '2046', '203c', '203b', '203d', '2047', '2048', '2049', '204a', '']) *************** *** 162,167 **** char.additem(LAYER_BEARD, beard) char.incognito = 1 ! char.update() char.resendtooltip() --- 161,169 ---- char.additem(LAYER_BEARD, beard) + hair.update() + beard.update() + char.incognito = 1 ! char.update() char.resendtooltip() |