Update of /cvsroot/wpdev/xmlscripts/scripts/skills
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23692/skills
Modified Files:
blacksmithing.py inscription.py tailoring.py
Log Message:
enhancing
Index: tailoring.py
===================================================================
RCS file: /cvsroot/wpdev/xmlscripts/scripts/skills/tailoring.py,v
retrieving revision 1.8
retrieving revision 1.9
diff -C2 -d -r1.8 -r1.9
*** tailoring.py 4 Sep 2004 16:44:49 -0000 1.8
--- tailoring.py 13 Oct 2004 18:45:42 -0000 1.9
***************
*** 141,145 ****
self.allowmark = 1
self.allowrepair = 1
! #self.allowenhance = 1
self.submaterials1 = LEATHERS
self.submaterial1missing = 1044463
--- 141,145 ----
self.allowmark = 1
self.allowrepair = 1
! self.allowenhance = True
self.submaterials1 = LEATHERS
self.submaterial1missing = 1044463
Index: blacksmithing.py
===================================================================
RCS file: /cvsroot/wpdev/xmlscripts/scripts/skills/blacksmithing.py,v
retrieving revision 1.24
retrieving revision 1.25
diff -C2 -d -r1.24 -r1.25
*** blacksmithing.py 12 Oct 2004 11:02:31 -0000 1.24
--- blacksmithing.py 13 Oct 2004 18:45:42 -0000 1.25
***************
*** 112,115 ****
--- 112,116 ----
else:
item.settag('remaining_uses', uses - 1)
+ item.resendtooltip()
return True
***************
*** 276,280 ****
return
! if target.item.container != player.getbackpack():
player.socket.clilocmessage(1044275)
return
--- 277,281 ----
return
! if not player.canreach(target.item, -1):
player.socket.clilocmessage(1044275)
return
Index: inscription.py
===================================================================
RCS file: /cvsroot/wpdev/xmlscripts/scripts/skills/inscription.py,v
retrieving revision 1.8
retrieving revision 1.9
diff -C2 -d -r1.8 -r1.9
*** inscription.py 21 Jul 2004 14:20:42 -0000 1.8
--- inscription.py 13 Oct 2004 18:45:42 -0000 1.9
***************
*** 190,194 ****
action.materials.append([['1f60'], 1, 1044446])
# 8 runes
! action.materials.append([['1f14'], 8, 1044447])
# bulk order book : TODO : not yet defined in xml
#actionid = 1028793
--- 190,194 ----
action.materials.append([['1f60'], 1, 1044446])
# 8 runes
! action.materials.append([['1f14', '1f15', '1f16', '1f17'], 8, 1044447])
# bulk order book : TODO : not yet defined in xml
#actionid = 1028793
|