As the title says, I am looking for the code that will place a statue of an Ethereal Mount in the backpack of every new player who joins my Shard. I've been working the Character Creation script and tried a few variations of this: PackItem(new EtjerealMount(); but good.
 
As the title says, I am looking for the code that will place a statue of an Ethereal Mount in the backpack of every new player who joins my Shard. I've been working the Character Creation script and tried a few variations of this: PackItem(new EtjerealMount(); but good.
try adding the etheral like I did here
if (young)
{
NewPlayerTicket ticket = new NewPlayerTicket();
ticket.Owner = newChar;
newChar.BankBox.DropItem(ticket);

BagOfAllReagents bag = new BagOfAllReagents();
newChar.BankBox.DropItem(bag);

EtherealPolarBear mount = new EtherealPolarBear();
newChar.BankBox.DropItem(mount);
 
Back