Update of /cvsroot/wpdev/xmlscripts/scripts/skills
In directory sc8-pr-cvs1:/tmp/cvs-serv20699
Modified Files:
anatomy.py animallore.py armslore.py itemid.py tasteid.py
Log Message:
OSI has the delays set to 1 second.
I'll check other skills later.
Index: anatomy.py
===================================================================
RCS file: /cvsroot/wpdev/xmlscripts/scripts/skills/anatomy.py,v
retrieving revision 1.9
retrieving revision 1.10
diff -C2 -d -r1.9 -r1.10
*** anatomy.py 6 Oct 2003 06:08:53 -0000 1.9
--- anatomy.py 6 Jan 2004 13:02:45 -0000 1.10
***************
*** 12,16 ****
from math import floor
! ANATOMY_DELAY = 5000
# Button for Anatomy pressed on skill gump
--- 12,16 ----
from math import floor
! ANATOMY_DELAY = 1000
# Button for Anatomy pressed on skill gump
Index: animallore.py
===================================================================
RCS file: /cvsroot/wpdev/xmlscripts/scripts/skills/animallore.py,v
retrieving revision 1.11
retrieving revision 1.12
diff -C2 -d -r1.11 -r1.12
*** animallore.py 23 Sep 2003 12:17:39 -0000 1.11
--- animallore.py 6 Jan 2004 13:02:45 -0000 1.12
***************
*** 12,16 ****
import skills
! ANIMALLORE_DELAY = 5000
def animallore( char, skill ):
--- 12,16 ----
import skills
! ANIMALLORE_DELAY = 1000
def animallore( char, skill ):
Index: armslore.py
===================================================================
RCS file: /cvsroot/wpdev/xmlscripts/scripts/skills/armslore.py,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -d -r1.7 -r1.8
*** armslore.py 23 Sep 2003 12:17:39 -0000 1.7
--- armslore.py 6 Jan 2004 13:02:45 -0000 1.8
***************
*** 12,16 ****
import skills
! ARMSLORE_DELAY = 5000
def armslore( char, skill ):
--- 12,16 ----
import skills
! ARMSLORE_DELAY = 1000
def armslore( char, skill ):
Index: itemid.py
===================================================================
RCS file: /cvsroot/wpdev/xmlscripts/scripts/skills/itemid.py,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** itemid.py 23 Sep 2003 12:17:39 -0000 1.5
--- itemid.py 6 Jan 2004 13:02:45 -0000 1.6
***************
*** 12,16 ****
import skills
! ITEMID_DELAY = 5000
def itemid( char, skill ):
--- 12,16 ----
import skills
! ITEMID_DELAY = 1000
def itemid( char, skill ):
***************
*** 71,73 ****
def onLoad():
skills.register( ITEMID, itemid )
!
\ No newline at end of file
--- 71,73 ----
def onLoad():
skills.register( ITEMID, itemid )
!
Index: tasteid.py
===================================================================
RCS file: /cvsroot/wpdev/xmlscripts/scripts/skills/tasteid.py,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** tasteid.py 23 Sep 2003 12:17:39 -0000 1.3
--- tasteid.py 6 Jan 2004 13:02:45 -0000 1.4
***************
*** 12,16 ****
import skills
! TASTEID_DELAY = 5000
TASTE_RANGE = 4
potion_keg = [ 0x0e7f, 0x1ad6, 0x1ad7 ]
--- 12,16 ----
import skills
! TASTEID_DELAY = 1000
TASTE_RANGE = 4
potion_keg = [ 0x0e7f, 0x1ad6, 0x1ad7 ]
***************
*** 93,95 ****
def onLoad():
skills.register( TASTEID, tasteid )
!
\ No newline at end of file
--- 93,95 ----
def onLoad():
skills.register( TASTEID, tasteid )
!
|