To add your item to the spawn menu, you have to use the Add() method like so:
Add()
public Dictionary<string, GameObject> TESTMOD;
TESTMOD = new Dictionary<string, GameObject>(); TESTMOD.Add("bikebar", GameObject.Find("bikebar")); MscSpawnMenu.Add(TESTMOD, MscSpawnMenu.Categories.Other);
TESTMOD = new Dictionary<string, GameObject>();
TESTMOD.Add("bikebar", GameObject.Find("bikebar"));
MscSpawnMenu.Add(TESTMOD, MscSpawnMenu.Categories.Other);
MscSpawnMenu.Add("bikebar", GameObject.Find("bikebar"), MscSpawnMenu.Categories.Other);
There was an error while loading. Please reload this page.