10 lines
235 B
Plaintext
10 lines
235 B
Plaintext
|
// Potion of Invisibility recipe
|
||
|
void main()
|
||
|
{
|
||
|
object oMe=OBJECT_SELF;
|
||
|
SetLocalInt(oMe,"nALCCost",12);
|
||
|
SetLocalInt(oMe,"nALCXP",1);
|
||
|
SetLocalString(oMe,"sALCRes","nw_it_mpotion008");
|
||
|
SetLocalString(oMe,"sALCCom","NA");
|
||
|
}
|