8 lines
214 B
Plaintext
8 lines
214 B
Plaintext
|
void main()
|
||
|
{
|
||
|
//note, only one item at a time can be renamed.
|
||
|
object oItem = GetFirstItemInInventory(OBJECT_SELF);
|
||
|
string sName = GetLocalString(OBJECT_SELF,"vulc_newname");
|
||
|
SetName(oItem,sName);
|
||
|
}
|