Update of /cvsroot/wpdev/xmlscripts/scripts/skills
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28213/skills
Modified Files:
anatomy.py evaluatingintel.py
Log Message:
0000297
Index: anatomy.py
===================================================================
RCS file: /cvsroot/wpdev/xmlscripts/scripts/skills/anatomy.py,v
retrieving revision 1.14
retrieving revision 1.15
diff -C2 -d -r1.14 -r1.15
*** anatomy.py 16 Jul 2004 07:09:27 -0000 1.14
--- anatomy.py 14 Sep 2004 03:36:07 -0000 1.15
***************
*** 67,72 ****
# Anatomy Messages start: 0xFD6DD
! strId = min( 10, floor( target.char.strength / 10 ) )
! dexId = min( 10, floor( target.char.dexterity / 10 ) )
msgId = int( 0xFD6DD + strId * 11 + dexId )
dexRatio = float( 100.0 / target.char.dexterity )
--- 67,72 ----
# Anatomy Messages start: 0xFD6DD
! strId = min( 10, int( target.char.strength / 10 ) )
! dexId = min( 10, int( target.char.dexterity / 10 ) )
msgId = int( 0xFD6DD + strId * 11 + dexId )
dexRatio = float( 100.0 / target.char.dexterity )
***************
*** 74,79 ****
msgId2 = int( 0xFD7DF + StamId )
! socket.clilocmessage( msgId, "", 0x3b2, 3, target.char )
! socket.clilocmessage( msgId2, "", 0x3b2, 3, target.char )
# Register as a global script
--- 74,81 ----
msgId2 = int( 0xFD7DF + StamId )
! socket.clilocmessage( msgId, "", 0x3b2, 3, target.char, "", True )
!
! if char.skill[ANATOMY] >= 650:
! socket.clilocmessage( msgId2, "", 0x3b2, 3, target.char, "", True )
# Register as a global script
Index: evaluatingintel.py
===================================================================
RCS file: /cvsroot/wpdev/xmlscripts/scripts/skills/evaluatingintel.py,v
retrieving revision 1.11
retrieving revision 1.12
diff -C2 -d -r1.11 -r1.12
*** evaluatingintel.py 16 Jul 2004 07:09:27 -0000 1.11
--- evaluatingintel.py 14 Sep 2004 03:36:07 -0000 1.12
***************
*** 51,55 ****
char.socket.settag( 'skill_delay', int( wolfpack.time.currenttime() + EVALINTDELAY ) )
! if not char.checkskill( EVALUATINGINTEL, 0, 1000 ):
char.socket.clilocmessage( 0xFD756, "", 0x3b2, 3, target.char )
return False
--- 51,55 ----
char.socket.settag( 'skill_delay', int( wolfpack.time.currenttime() + EVALINTDELAY ) )
! if not char.checkskill( EVALUATINGINTEL, 0, 1200 ):
char.socket.clilocmessage( 0xFD756, "", 0x3b2, 3, target.char )
return False
***************
*** 68,73 ****
msgId2 = int( 0xFD77A + ManaId )
! char.socket.clilocmessage( msgId, "", 0x3b2, 3, target.char )
! char.socket.clilocmessage( msgId2, "", 0x3b2, 3, target.char )
return True
--- 68,76 ----
msgId2 = int( 0xFD77A + ManaId )
! char.socket.clilocmessage( msgId, "", 0x3b2, 3, target.char, "", True )
!
! if char.skill[EVALUATINGINTEL] >= 760:
! char.socket.clilocmessage( msgId2, "", 0x3b2, 3, target.char, "", True )
!
return True
|