Fix wrong price of objects in help for IPO.

git-svn-id: svn://svn.code.sf.net/p/crossfire/code/maps/trunk@9136 282e977c-c81d-0410-88c4-b93c2d0d6712
master
anmaster 2008-05-22 21:26:18 +00:00
parent d09792c4c6
commit bded519fea
1 changed files with 2 additions and 2 deletions

View File

@ -63,9 +63,9 @@ text = string.split(Crossfire.WhatIsMessage())
if text[0] == 'help' or text[0] == 'yes':
# split the help message in two parts to prevent the server from truncating it.
whoami.Say('How can I help you?\nWe are proud to sell some interesting services.\nYou can buy:')
whoami.Say('- pen (%s platinum)\n- literacy scroll (%s platinum)'%(priceWritingPen*priceFactor,priceScrollOfLiteracy*priceFactor))
whoami.Say('- pen (%s platinum)\n- literacy scroll (%s platinum)'%(priceWritingPen,priceScrollOfLiteracy))
whoami.Say('You can send letters to friends:\n')
whoami.Say('- mailscroll <friend> (%s platinum)'%(priceMailScroll*priceFactor))
whoami.Say('- mailscroll <friend> (%s platinum)'%(priceMailScroll))
whoami.Say('You can also send items, here are our fees:')
for pack in packages.keys():
# weight is in grams, so need to convert.