13 lines
253 B
Plaintext
13 lines
253 B
Plaintext
|
#include "nw_i0_plot"
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
|
||
|
object oPC = GetPCSpeaker();
|
||
|
// Give the speaker the items
|
||
|
CreateItemOnObject("it_castlesupplies", oPC, 1);
|
||
|
CreateItemOnObject("it_tunnelkey", oPC, 1);
|
||
|
SetPLocalInt(oPC, "CastleSupplies", 1);
|
||
|
|
||
|
}
|