[wpdev-commits] xmlscripts/scripts/magic runebook.py,1.4,1.5
Brought to you by:
rip,
thiagocorrea
From: Richard M. <dr...@us...> - 2004-07-15 20:31:26
|
Update of /cvsroot/wpdev/xmlscripts/scripts/magic In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16946/magic Modified Files: runebook.py Log Message: Runebook fixes Index: runebook.py =================================================================== RCS file: /cvsroot/wpdev/xmlscripts/scripts/magic/runebook.py,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** runebook.py 15 Jul 2004 01:50:41 -0000 1.4 --- runebook.py 15 Jul 2004 20:31:14 -0000 1.5 *************** *** 281,285 **** # recall to the rune char.say( "Kal Ort Por", 5 ) ! wolfpack.addtimer( 2000, "magic.runebook.recall0", [ char.serial, runes[ runenum ], runebook.serial, charges ] ) # set default button : 101 - 116 elif( button > 100 and button < 117 ): --- 281,285 ---- # recall to the rune char.say( "Kal Ort Por", 5 ) ! wolfpack.addtimer( 2000, "magic.runebook.recall0", [ char.serial, runes[ runenum ], item.serial, charges ] ) # set default button : 101 - 116 elif( button > 100 and button < 117 ): *************** *** 359,365 **** # cast spell if( char.mana < 11 ): ! char.socket.sysmessage( ) return 1 ! char.soundeffect( 0x1fd ) char.socket.sysmessage( "not implemented yet." ) return 1 --- 359,365 ---- # cast spell if( char.mana < 11 ): ! char.socket.sysmessage( "You lack the mana to recall." ) return 1 ! # Insert link to Recall Spell! char.socket.sysmessage( "not implemented yet." ) return 1 *************** *** 375,379 **** char.socket.sysmessage( "runebook script error." ) return 1 char.socket.sysmessage( "not implemented yet" ) return 1 - --- 375,379 ---- char.socket.sysmessage( "runebook script error." ) return 1 + # Insert link to Gate Travel Spell! char.socket.sysmessage( "not implemented yet" ) return 1 |