Hi there, long time no see...
I need some help please, just noticed that the barber doesn't seem to be working properly. He only sells "Savage body paint" and I get this weird errors in my sphere console:
Code:
08:58:ERROR:(sphere_vendors.scp,898)Undefined symbol 'i_barber_haircut' ['i_barber_haircut,10']
08:58:ERROR:(sphere_vendors.scp,899)Undefined symbol 'i_barber_dye_beard' ['i_barber_dye_beard,10']
08:58:ERROR:(sphere_vendors.scp,900)Undefined symbol 'i_barber_dye_hair' ['i_barber_dye_hair,10']
Looked into, and just discovered that he doesn't even have a sell/buy template.
so I went ahead and created one:
Code:
[TEMPLATE VENDOR_B_BARBER_TEMPLATE]
CATEGORY=Vendor Templates
SUBSECTION=Buy Templates
DESCRIPTION=Barber
BUY=i_hair_dyes,10
BUY=i_barber_haircut,10
BUY=i_barber_dye_beard,10
BUY=i_barber_dye_hair,10
BUY=i_bodypaint,10
[TEMPLATE VENDOR_S_BARBER_TEMPLATE]
CATEGORY=Vendor Templates
SUBSECTION=Sell Templates
DESCRIPTION=Barber
SELL=i_hair_dyes,10
SELL=i_barber_haircut,10
SELL=i_barber_dye_beard,10
SELL=i_barber_dye_hair,10
SELL=i_bodypaint,10
But somehow this still doesn't work.
Looked into
sphere_item_profession_barber.scp and I've noticed:
Code:
[COMMENT sphere_item_profession_barber.scp]
This file contains:
* tools used by barbers
* decoration found in barbershops
* Items of type t_hair and t_beard for both human and gargoyle
[b]FIXME: Make enabling or disabling "hair growth" easier by moving the
implementation into a TYPEDEF so you can disable it in one place.[/b]
Is it related?
Can someone help me having my barber to cut hairs, please?