14 lines
373 B
Plaintext
14 lines
373 B
Plaintext
#include "x2_inc_itemprop"
|
|
void main()
|
|
{
|
|
object oPC = GetPCSpeaker();
|
|
object oItem = CreateItemOnObject("NW_WAMBO001", oPC);
|
|
SetLocalInt(oItem, "Prototype", TRUE);
|
|
SetLocalString(oItem, "Type", "Ammo");
|
|
SetItemCursedFlag(oItem, TRUE);
|
|
|
|
itemproperty ipAdd;
|
|
ipAdd = ItemPropertyLimitUseByRace(RACIAL_TYPE_OOZE);
|
|
IPSafeAddItemProperty(oItem, ipAdd);
|
|
}
|