Update of /cvsroot/wpdev/xmlscripts/scripts
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12232/scripts
Modified Files:
archery_butte.py
Log Message:
archery butte now allows yumi (samurai bow)
Index: archery_butte.py
===================================================================
RCS file: /cvsroot/wpdev/xmlscripts/scripts/archery_butte.py,v
retrieving revision 1.12
retrieving revision 1.13
diff -C2 -d -r1.12 -r1.13
*** archery_butte.py 27 Sep 2004 16:28:31 -0000 1.12
--- archery_butte.py 15 Oct 2004 15:01:16 -0000 1.13
***************
*** 165,169 ****
def ammoType( char ):
# Bows & Crossbows are on layer 1
! # Composite Bow and Repeating Crossbow on layer 2
item = char.getweapon()
--- 165,169 ----
def ammoType( char ):
# Bows & Crossbows are on layer 1
! # Yumi, Composite Bow and Repeating Crossbow on layer 2
item = char.getweapon()
***************
*** 190,193 ****
--- 190,197 ----
return 0x1bfb
+ # Yumi
+ if( item.id == 0x27a5 or item.id == 0x27f0 ):
+ return 0xf3f
+
# Unknown Weapon
return -1
|