[wpdev-commits] xmlscripts/scripts potions.py,1.49,1.50
Brought to you by:
rip,
thiagocorrea
From: Sebastian H. <dar...@us...> - 2004-09-11 15:59:05
|
Update of /cvsroot/wpdev/xmlscripts/scripts In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4014 Modified Files: potions.py Log Message: potion fixes Index: potions.py =================================================================== RCS file: /cvsroot/wpdev/xmlscripts/scripts/potions.py,v retrieving revision 1.49 retrieving revision 1.50 diff -C2 -d -r1.49 -r1.50 *** potions.py 11 Sep 2004 15:55:07 -0000 1.49 --- potions.py 11 Sep 2004 15:58:57 -0000 1.50 *************** *** 10,14 **** POTION_HEAL_RANGE, POTION_LESSERHEAL_RANGE, MAGERY, \ POTION_LESSEREXPLOSION_RANGE, POTION_GREATEREXPLOSION_RANGE, \ ! POTION_EXPLOSION_RANGE, SOUND_STRENGTH_UP, HEAL_POT_DELAY, GRAY --- 10,14 ---- POTION_HEAL_RANGE, POTION_LESSERHEAL_RANGE, MAGERY, \ POTION_LESSEREXPLOSION_RANGE, POTION_GREATEREXPLOSION_RANGE, \ ! POTION_EXPLOSION_RANGE, SOUND_STRENGTH_UP, HEAL_POT_DELAY *************** *** 415,419 **** elapsed = int( char.gettag( "heal_pot_timer" ) ) if elapsed > wolfpack.time.currenttime(): ! socket.clilocmessage( 500235, '', GRAY ) # You must wait 10 seconds before using another healing potion. return False else: --- 415,419 ---- elapsed = int( char.gettag( "heal_pot_timer" ) ) if elapsed > wolfpack.time.currenttime(): ! socket.clilocmessage( 500235 ) # You must wait 10 seconds before using another healing potion. return False else: *************** *** 436,441 **** # Resend Health char.updatehealth() ! #char.socket.clilocmessage( 1060203, str(amount) , GRAY, NORMAL ) # broken ! socket.sysmessage( 'You have had ' + str( amount ) + ' hit points of damage healed.', GRAY ) char.action( ANIM_FIDGET3 ) --- 436,441 ---- # Resend Health char.updatehealth() ! #char.socket.clilocmessage( 1060203, str(amount) ) # broken ! socket.sysmessage( 'You have had ' + str( amount ) + ' hit points of damage healed.' ) char.action( ANIM_FIDGET3 ) |