Naviehs Member May 8, 2021 #1 I wanted to make a group/list for types, how would one do such a thing? So whenever I want a group of monsters I could do new Type(1, typeof(Ophidian)) and it would create a random ophidian, thank you!
I wanted to make a group/list for types, how would one do such a thing? So whenever I want a group of monsters I could do new Type(1, typeof(Ophidian)) and it would create a random ophidian, thank you!
zerodowned Moderator May 27, 2021 #2 List <Type> ophidian = new List <Type>(); ophidian.Add (typeof (Ophidian)); then you could write a script to call a command that selects a random entry from a list
List <Type> ophidian = new List <Type>(); ophidian.Add (typeof (Ophidian)); then you could write a script to call a command that selects a random entry from a list